Add use_journal option for logging configuration

This enables oslo.log to pass logging records to journald.

Change-Id: Iff58d247fe90fa8d81769599d7ce994077c032d9
This commit is contained in:
ZhongShengping 2018-01-15 15:50:08 +08:00
parent fd952e2a84
commit befa77c079
3 changed files with 19 additions and 5 deletions

View File

@ -16,6 +16,10 @@
# (Optional) Use json for logging.
# Defaults to $::os_service_default.
#
# [*use_journal*]
# (Optional) Use journal for logging.
# Defaults to $::os_service_default.
#
# [*use_stderr*]
# (optional) Use stderr for logging.
# Defaults to $::os_service_default.
@ -92,6 +96,7 @@
class heat::logging(
$use_syslog = $::os_service_default,
$use_json = $::os_service_default,
$use_journal = $::os_service_default,
$use_stderr = $::os_service_default,
$log_facility = $::os_service_default,
$log_dir = '/var/log/heat',
@ -130,6 +135,7 @@ class heat::logging(
log_dir => $log_dir_real,
use_syslog => $use_syslog_real,
use_json => $use_json,
use_journal => $use_journal,
syslog_log_facility => $log_facility_real,
use_stderr => $use_stderr_real,
logging_context_format_string => $logging_context_format_string,

View File

@ -0,0 +1,5 @@
---
features:
- |
Adds the use_journal option for configuring oslo.log. This will enable
passing the logs to journald.

View File

@ -25,6 +25,7 @@ describe 'heat::logging' do
:log_date_format => '%Y-%m-%d %H:%M:%S',
:use_syslog => true,
:use_json => true,
:use_journal => true,
:use_stderr => false,
:log_facility => 'LOG_FOO',
:log_dir => '/var/log',
@ -57,11 +58,12 @@ describe 'heat::logging' do
shared_examples 'basic default logging settings' do
it 'configures heat logging settings with default values' do
is_expected.to contain_oslo__log('heat_config').with(
:use_syslog => '<SERVICE DEFAULT>',
:use_json => '<SERVICE DEFAULT>',
:use_stderr => '<SERVICE DEFAULT>',
:log_dir => '/var/log/heat',
:debug => '<SERVICE DEFAULT>',
:use_syslog => '<SERVICE DEFAULT>',
:use_json => '<SERVICE DEFAULT>',
:use_journal => '<SERVICE DEFAULT>',
:use_stderr => '<SERVICE DEFAULT>',
:log_dir => '/var/log/heat',
:debug => '<SERVICE DEFAULT>',
)
end
end
@ -71,6 +73,7 @@ describe 'heat::logging' do
is_expected.to contain_oslo__log('heat_config').with(
:use_syslog => true,
:use_json => true,
:use_journal => true,
:use_stderr => false,
:syslog_log_facility => 'LOG_FOO',
:log_dir => '/var/log',