Puppet Class: nova::reports

Defined in:
manifests/reports.pp

Overview

Class: nova::reports

Configure oslo_reports options

Parameters

log_dir

(Optional) Path to a log directory where to create a file Defaults to $facts

file_event_handler

(Optional) The path to a file to watch for changes to trigger the reports. Defaults to $facts

file_event_handler_interval

(Optional) How many seconds to wait between pools when file_event_handler is set. Defaults to $facts

Parameters:

  • log_dir (Any) (defaults to: $facts['os_service_default'])
  • file_event_handler (Any) (defaults to: $facts['os_service_default'])
  • file_event_handler_interval (Any) (defaults to: $facts['os_service_default'])


20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'manifests/reports.pp', line 20

class nova::reports(
  $log_dir                     = $facts['os_service_default'],
  $file_event_handler          = $facts['os_service_default'],
  $file_event_handler_interval = $facts['os_service_default'],
) {

  include nova::deps

  oslo::reports { 'nova_config':
    log_dir                     => $log_dir,
    file_event_handler          => $file_event_handler,
    file_event_handler_interval => $file_event_handler_interval,
  }
}