# (Optional) File where logs should be stored.
# Defaults to $::os_service_default
#
+# [*watch_log_file*]
+# (Optional) Uses logging handler designed to watch file system (boolean value).
+# Defaults to $::os_service_default
+#
# [*logging_context_format_string*]
# (Optional) Format string to use for log messages with context.
# Defaults to $::os_service_default.
$log_facility = $::os_service_default,
$log_dir = '/var/log/ceilometer',
$log_file = $::os_service_default,
+ $watch_log_file = $::os_service_default,
$debug = $::os_service_default,
$logging_context_format_string = $::os_service_default,
$logging_default_format_string = $::os_service_default,
use_journal => $use_journal,
log_dir => $log_dir,
log_file => $log_file,
+ watch_log_file => $watch_log_file,
syslog_log_facility => $log_facility,
logging_context_format_string => $logging_context_format_string,
logging_default_format_string => $logging_default_format_string,
:log_facility => 'LOG_FOO',
:log_dir => '/var/log',
:log_file => '/var/log/ceilometer/ceilometer.log',
+ :watch_log_file => true,
:debug => true,
}
end
:syslog_log_facility => '<SERVICE DEFAULT>',
:log_dir => '/var/log/ceilometer',
:log_file => '<SERVICE DEFAULT>',
+ :watch_log_file => '<SERVICE DEFAULT>',
:debug => '<SERVICE DEFAULT>',
)
end
:syslog_log_facility => 'LOG_FOO',
:log_dir => '/var/log',
:log_file => '/var/log/ceilometer/ceilometer.log',
+ :watch_log_file => true,
:debug => true,
)
end