2021-08-07 15:02:21 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2022-08-05 22:12:10 +02:00
|
|
|
# Copyright (c) 2017 Ansible Project
|
2022-08-05 12:28:29 +02:00
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
# Make coding more python3-ish
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
2020-09-28 21:21:51 +02:00
|
|
|
author: Unknown (!UNKNOWN)
|
2021-01-12 07:12:03 +01:00
|
|
|
name: syslog_json
|
2020-09-28 21:21:51 +02:00
|
|
|
type: notification
|
2020-03-09 10:11:07 +01:00
|
|
|
requirements:
|
|
|
|
- whitelist in configuration
|
|
|
|
short_description: sends JSON events to syslog
|
|
|
|
description:
|
2023-01-07 11:03:58 +01:00
|
|
|
- This plugin logs ansible-playbook and ansible runs to a syslog server in JSON format.
|
2020-03-09 10:11:07 +01:00
|
|
|
options:
|
|
|
|
server:
|
2023-01-07 11:03:58 +01:00
|
|
|
description: Syslog server that will receive the event.
|
2024-07-21 21:05:34 +02:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
env:
|
|
|
|
- name: SYSLOG_SERVER
|
|
|
|
default: localhost
|
|
|
|
ini:
|
|
|
|
- section: callback_syslog_json
|
|
|
|
key: syslog_server
|
|
|
|
port:
|
2023-01-07 11:03:58 +01:00
|
|
|
description: Port on which the syslog server is listening.
|
2024-07-21 21:05:34 +02:00
|
|
|
type: int
|
2020-03-09 10:11:07 +01:00
|
|
|
env:
|
|
|
|
- name: SYSLOG_PORT
|
|
|
|
default: 514
|
|
|
|
ini:
|
|
|
|
- section: callback_syslog_json
|
|
|
|
key: syslog_port
|
|
|
|
facility:
|
2023-01-07 11:03:58 +01:00
|
|
|
description: Syslog facility to log as.
|
2024-07-21 21:05:34 +02:00
|
|
|
type: str
|
2020-03-09 10:11:07 +01:00
|
|
|
env:
|
|
|
|
- name: SYSLOG_FACILITY
|
|
|
|
default: user
|
|
|
|
ini:
|
|
|
|
- section: callback_syslog_json
|
|
|
|
key: syslog_facility
|
2022-03-03 07:33:29 +01:00
|
|
|
setup:
|
|
|
|
description: Log setup tasks.
|
|
|
|
env:
|
|
|
|
- name: ANSIBLE_SYSLOG_SETUP
|
|
|
|
type: bool
|
|
|
|
default: true
|
|
|
|
ini:
|
|
|
|
- section: callback_syslog_json
|
|
|
|
key: syslog_setup
|
|
|
|
version_added: 4.5.0
|
2020-03-09 10:11:07 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import logging.handlers
|
|
|
|
|
|
|
|
import socket
|
|
|
|
|
|
|
|
from ansible.plugins.callback import CallbackBase
|
|
|
|
|
|
|
|
|
|
|
|
class CallbackModule(CallbackBase):
|
|
|
|
"""
|
|
|
|
logs ansible-playbook and ansible runs to a syslog server in json format
|
|
|
|
"""
|
|
|
|
|
|
|
|
CALLBACK_VERSION = 2.0
|
2023-01-04 22:06:57 +01:00
|
|
|
CALLBACK_TYPE = 'notification'
|
2020-03-09 10:11:07 +01:00
|
|
|
CALLBACK_NAME = 'community.general.syslog_json'
|
|
|
|
CALLBACK_NEEDS_WHITELIST = True
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
|
|
|
|
super(CallbackModule, self).__init__()
|
|
|
|
|
2020-05-25 07:47:01 +02:00
|
|
|
def set_options(self, task_keys=None, var_options=None, direct=None):
|
|
|
|
|
|
|
|
super(CallbackModule, self).set_options(task_keys=task_keys, var_options=var_options, direct=direct)
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
syslog_host = self.get_option("server")
|
|
|
|
syslog_port = int(self.get_option("port"))
|
|
|
|
syslog_facility = self.get_option("facility")
|
|
|
|
|
|
|
|
self.logger = logging.getLogger('ansible logger')
|
|
|
|
self.logger.setLevel(logging.DEBUG)
|
|
|
|
|
|
|
|
self.handler = logging.handlers.SysLogHandler(
|
|
|
|
address=(syslog_host, syslog_port),
|
|
|
|
facility=syslog_facility
|
|
|
|
)
|
|
|
|
self.logger.addHandler(self.handler)
|
|
|
|
self.hostname = socket.gethostname()
|
|
|
|
|
2022-03-03 07:33:29 +01:00
|
|
|
def v2_runner_on_failed(self, result, ignore_errors=False):
|
|
|
|
res = result._result
|
|
|
|
host = result._host.get_name()
|
2020-03-09 10:11:07 +01:00
|
|
|
self.logger.error('%s ansible-command: task execution FAILED; host: %s; message: %s', self.hostname, host, self._dump_results(res))
|
|
|
|
|
2022-03-03 07:33:29 +01:00
|
|
|
def v2_runner_on_ok(self, result):
|
|
|
|
res = result._result
|
|
|
|
host = result._host.get_name()
|
|
|
|
if result._task.action != "gather_facts" or self.get_option("setup"):
|
|
|
|
self.logger.info('%s ansible-command: task execution OK; host: %s; message: %s', self.hostname, host, self._dump_results(res))
|
2020-03-09 10:11:07 +01:00
|
|
|
|
2022-03-03 07:33:29 +01:00
|
|
|
def v2_runner_on_skipped(self, result):
|
|
|
|
host = result._host.get_name()
|
2020-03-09 10:11:07 +01:00
|
|
|
self.logger.info('%s ansible-command: task execution SKIPPED; host: %s; message: %s', self.hostname, host, 'skipped')
|
|
|
|
|
2022-03-03 07:33:29 +01:00
|
|
|
def v2_runner_on_unreachable(self, result):
|
|
|
|
res = result._result
|
|
|
|
host = result._host.get_name()
|
2020-03-09 10:11:07 +01:00
|
|
|
self.logger.error('%s ansible-command: task execution UNREACHABLE; host: %s; message: %s', self.hostname, host, self._dump_results(res))
|
|
|
|
|
2022-03-03 07:33:29 +01:00
|
|
|
def v2_runner_on_async_failed(self, result):
|
|
|
|
res = result._result
|
|
|
|
host = result._host.get_name()
|
|
|
|
jid = result._result.get('ansible_job_id')
|
2020-03-09 10:11:07 +01:00
|
|
|
self.logger.error('%s ansible-command: task execution FAILED; host: %s; message: %s', self.hostname, host, self._dump_results(res))
|
|
|
|
|
2022-03-03 07:33:29 +01:00
|
|
|
def v2_playbook_on_import_for_host(self, result, imported_file):
|
|
|
|
host = result._host.get_name()
|
2020-03-09 10:11:07 +01:00
|
|
|
self.logger.info('%s ansible-command: playbook IMPORTED; host: %s; message: imported file %s', self.hostname, host, imported_file)
|
|
|
|
|
2022-03-03 07:33:29 +01:00
|
|
|
def v2_playbook_on_not_import_for_host(self, result, missing_file):
|
|
|
|
host = result._host.get_name()
|
2020-03-09 10:11:07 +01:00
|
|
|
self.logger.info('%s ansible-command: playbook NOT IMPORTED; host: %s; message: missing file %s', self.hostname, host, missing_file)
|