mirror of https://github.com/ansible/ansible.git
renamed to syslog_json
parent
2779b9ac41
commit
100dd7f429
@ -1,82 +0,0 @@
|
||||
import os
|
||||
import json
|
||||
|
||||
import logging
|
||||
import logging.handlers
|
||||
|
||||
ansible_logger = logging.getLogger('ansible logger')
|
||||
ansible_logger.setLevel(logging.DEBUG)
|
||||
# change 'localhost' to you IP or add another handler to log locally and remotely
|
||||
handler = logging.handlers.SysLogHandler(address = ('locahost',514), facility=logging.handlers.SysLogHandler.LOG_USER)
|
||||
ansible_logger.addHandler(handler)
|
||||
|
||||
class CallbackModule(object):
|
||||
"""
|
||||
logs ansible-playbook and ansible runs to a syslog server in json format
|
||||
make sure you have in ansible.cfg:
|
||||
callback_plugins = <path_to_callback_plugins_folder>
|
||||
and put the plugin in <path_to_callback_plugins_folder>
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def on_any(self, *args, **kwargs):
|
||||
pass
|
||||
|
||||
def runner_on_failed(self, host, res, ignore_errors=False):
|
||||
ansible_logger.info('RUNNER_ON_FAILED ' + host + ' ' + json.dumps(res, sort_keys=True))
|
||||
|
||||
def runner_on_ok(self, host, res):
|
||||
ansible_logger.info('RUNNER_ON_OK ' + host + ' ' + json.dumps(res, sort_keys=True))
|
||||
|
||||
def runner_on_skipped(self, host, item=None):
|
||||
ansible_logger.info('RUNNER_ON_SKIPPED ' + host + ' ...')
|
||||
|
||||
def runner_on_unreachable(self, host, res):
|
||||
ansible_logger.info('RUNNER_UNREACHABLE ' + host + ' ' + json.dumps(res, sort_keys=True))
|
||||
|
||||
def runner_on_no_hosts(self):
|
||||
pass
|
||||
|
||||
def runner_on_async_poll(self, host, res):
|
||||
pass
|
||||
|
||||
def runner_on_async_ok(self, host, res):
|
||||
pass
|
||||
|
||||
def runner_on_async_failed(self, host, res):
|
||||
ansible_logger.info('RUNNER_SYNC_FAILED ' + host + ' ' + json.dumps(res, sort_keys=True))
|
||||
|
||||
def playbook_on_start(self):
|
||||
pass
|
||||
|
||||
def playbook_on_notify(self, host, handler):
|
||||
pass
|
||||
|
||||
def playbook_on_no_hosts_matched(self):
|
||||
pass
|
||||
|
||||
def playbook_on_no_hosts_remaining(self):
|
||||
pass
|
||||
|
||||
def playbook_on_task_start(self, name, is_conditional):
|
||||
pass
|
||||
|
||||
def playbook_on_vars_prompt(self, varname, private=True, prompt=None, encrypt=None, confirm=False, salt_size=None, salt=None, default=None):
|
||||
pass
|
||||
|
||||
def playbook_on_setup(self):
|
||||
pass
|
||||
|
||||
def playbook_on_import_for_host(self, host, imported_file):
|
||||
ansible_logger.info('PLAYBOOK_ON_IMPORTED ' + host + ' ' + json.dumps(res, sort_keys=True))
|
||||
|
||||
def playbook_on_not_import_for_host(self, host, missing_file):
|
||||
ansible_logger.info('PLAYBOOK_ON_NOTIMPORTED ' + host + ' ' + json.dumps(res, sort_keys=True))
|
||||
|
||||
def playbook_on_play_start(self, name):
|
||||
pass
|
||||
|
||||
def playbook_on_stats(self, stats):
|
||||
pass
|
Loading…
Reference in New Issue