Add watch_log_file option

Add support for Using logging handler designed to watch file system.

Change-Id: Id59ae948e6e4703ee45c51dfaf6ba7295c8a0777
Closes-Bug: #1943212
This commit is contained in:
ZhongShengping
2021-09-14 16:02:08 +08:00
parent ba41671633
commit 448f4bd62b
3 changed files with 13 additions and 0 deletions

View File

@@ -37,6 +37,10 @@
# (Optional) File where logs should be stored. # (Optional) File where logs should be stored.
# Defaults to $::os_service_default # 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*] # [*logging_context_format_string*]
# (Optional) Format string to use for log messages with context. # (Optional) Format string to use for log messages with context.
# Defaults to $::os_service_default # Defaults to $::os_service_default
@@ -109,6 +113,7 @@ class cloudkitty::logging(
$syslog_log_facility = $::os_service_default, $syslog_log_facility = $::os_service_default,
$log_dir = '/var/log/cloudkitty', $log_dir = '/var/log/cloudkitty',
$log_file = $::os_service_default, $log_file = $::os_service_default,
$watch_log_file = $::os_service_default,
$debug = $::os_service_default, $debug = $::os_service_default,
$logging_context_format_string = $::os_service_default, $logging_context_format_string = $::os_service_default,
$logging_default_format_string = $::os_service_default, $logging_default_format_string = $::os_service_default,
@@ -132,6 +137,7 @@ class cloudkitty::logging(
use_journal => $use_journal, use_journal => $use_journal,
log_dir => $log_dir, log_dir => $log_dir,
log_file => $log_file, log_file => $log_file,
watch_log_file => $watch_log_file,
debug => $debug, debug => $debug,
logging_context_format_string => $logging_context_format_string, logging_context_format_string => $logging_context_format_string,
logging_default_format_string => $logging_default_format_string, logging_default_format_string => $logging_default_format_string,

View File

@@ -0,0 +1,4 @@
---
features:
- |
The new ``cloudkitty::logging::watch_log_file`` parameter has been added.

View File

@@ -30,6 +30,7 @@ describe 'cloudkitty::logging' do
:syslog_log_facility => 'LOG_FOO', :syslog_log_facility => 'LOG_FOO',
:log_dir => '/var/log', :log_dir => '/var/log',
:log_file => '/var/tmp/cloudkitty_random.log', :log_file => '/var/tmp/cloudkitty_random.log',
:watch_log_file => true,
:debug => true, :debug => true,
} }
end end
@@ -66,6 +67,7 @@ describe 'cloudkitty::logging' do
:syslog_log_facility => '<SERVICE DEFAULT>', :syslog_log_facility => '<SERVICE DEFAULT>',
:log_dir => '/var/log/cloudkitty', :log_dir => '/var/log/cloudkitty',
:log_file => '<SERVICE DEFAULT>', :log_file => '<SERVICE DEFAULT>',
:watch_log_file => '<SERVICE DEFAULT>',
:debug => '<SERVICE DEFAULT>', :debug => '<SERVICE DEFAULT>',
) )
end end
@@ -81,6 +83,7 @@ describe 'cloudkitty::logging' do
:syslog_log_facility => 'LOG_FOO', :syslog_log_facility => 'LOG_FOO',
:log_dir => '/var/log', :log_dir => '/var/log',
:log_file => '/var/tmp/cloudkitty_random.log', :log_file => '/var/tmp/cloudkitty_random.log',
:watch_log_file => true,
:debug => true, :debug => true,
) )
end end