SaltStack retornando muitos detalhes

1

Sempre que eu executo salt '*' state.highstate , Salt gera cada módulo usando o seguinte formato:

service_|-zabbix_server_|-zabbix-server-mysql_|-running:
    ----------
    __run_num__:
        17
    changes:
        ----------
    comment:
        Service zabbix-server-mysql is already enabled, and is in the desired state
    name:
        zabbix-server-mysql
    result:
        True
    retcode:
        2

Acho que isso começou a acontecer depois que corri acidentalmente para o estado com e anexado ao final como salt '*' state.highstate e .

Alguma teoria sobre como voltar ao formato de saída normal?

    
por Soviero 14.10.2014 / 16:21

1 resposta

3

A formatação de saída do estado superior é configurada em / etc / salt / master ou /etc/salt/master.d/ por meio de várias opções. Tente configurá-los e reiniciar o mestre de sal.

22.8.4.6. state_verbose

Controls the verbosity of state runs. By default, the results of all states are returned, but setting this value to False will cause salt to only display output for states which either failed, or succeeded without making any changes to the minion.

state_verbose: True

e

22.8.4.7. state_output

The state_output setting changes if the output is the full multi line output for each changed state if set to 'full', but if set to 'terse' the output will be shortened to a single line. If set to 'mixed', the output will be terse unless a state failed, in which case that output will be full. If set to 'changes', the output will be full unless the state didn't change.

state_output: full

e

22.8.1.18. output

Set the default outputter used by the salt command.

output: nested

    
por 14.10.2014 / 16:48

Tags