Bläddra i källkod

Merge "Add posibility to configure salt logging params:"

pull/73/head
Ondrej Smola 6 år sedan
förälder
incheckning
ef04394cb1
5 ändrade filer med 90 tillägg och 2 borttagningar
  1. +24
    -0
      README.rst
  2. +16
    -0
      salt/files/master.conf
  3. +17
    -2
      salt/files/minion.conf
  4. +24
    -0
      tests/pillar/master_logging.sls
  5. +9
    -0
      tests/pillar/minion_logging.sls

+ 24
- 0
README.rst Visa fil

@@ -139,6 +139,30 @@ Salt master with specified formula refs (for example for Gerrit review)
address: https://git.openstack.org/openstack/salt-formula-keystone
revision: refs/changes/56/123456/1

Salt master logging configuration

.. code-block:: yaml

salt:
master:
enabled: true
log:
level: warning
file: '/var/log/salt/master'
level_logfile: warning

Salt minion logging configuration

.. code-block:: yaml

salt:
minion:
enabled: true
log:
level: info
file: '/var/log/salt/minion'
level_logfile: warning

Salt master with logging handlers

.. code-block:: yaml

+ 16
- 0
salt/files/master.conf Visa fil

@@ -151,6 +151,22 @@ master_tops:
{%- endif %}
{%- endif %}

{%- if master.log is defined %}

{%- if master.log.level is defined %}
log_level: {{ master.log.level }}
{%- endif %}

{%- if master.log.file is defined %}
log_file: {{ master.log.file }}
{%- endif %}

{%- if master.log.level_logfile is defined %}
log_level_logfile: {{ master.log.level_logfile }}
{%- endif %}

{%- endif %}

{%- if pillar.salt.get('minion') %}
{%- for handler in pillar.salt.minion.get("handlers", []) %}
{%- if handler.engine == "udp"%}

+ 17
- 2
salt/files/minion.conf Visa fil

@@ -66,8 +66,23 @@ mine_interval: {{ minion.mine.get('interval', 30) }}

{%- endif %}

log_level: {{ minion.log.get('level', 'error') }}
state_output: {{ minion.log.get('state_output', 'changes') }}
{%- if minion.log is defined %}

{%- if minion.log.level is defined %}
log_level: {{ minion.log.level }}
{%- endif %}

{%- if minion.log.file is defined %}
log_file: {{ minion.log.file }}
{%- endif %}

{%- if minion.log.level_logfile is defined %}
log_level_logfile: {{ minion.log.level_logfile }}
{%- endif %}

{%- endif %}

state_output: {{ minion.get('log', {}).get('state_output', 'changes') }}

{%- if minion.get('proxy', {}).get('host', "") != "" %}
proxy_host: {{ minion.proxy.host }}

+ 24
- 0
tests/pillar/master_logging.sls Visa fil

@@ -0,0 +1,24 @@
git:
client:
enabled: true
linux:
system:
enabled: true
salt:
master:
command_timeout: 5
worker_threads: 2
enabled: true
source:
engine: pkg
pillar:
engine: salt
source:
engine: local
environment:
prd:
formula: {}
log:
level: warning
file: '/var/log/salt/master'
level_logfile: warning

+ 9
- 0
tests/pillar/minion_logging.sls Visa fil

@@ -0,0 +1,9 @@
salt:
minion:
enabled: true
master:
host: config01.dc01.domain.com
log:
level: info
file: '/var/log/salt/minion'
level_logfile: warning

Laddar…
Avbryt
Spara