Added Splunk task and some more interesting libraries to requirements.txt.
This commit is contained in:
parent
4da46438cc
commit
c7b276056c
4 changed files with 38 additions and 10 deletions
|
|
@ -8,7 +8,7 @@ interval = 60
|
||||||
notifications = email
|
notifications = email
|
||||||
email_receivers = admin@example.com,fallback@example.com
|
email_receivers = admin@example.com,fallback@example.com
|
||||||
sms_receivers = +number1,+number2
|
sms_receivers = +number1,+number2
|
||||||
tasks = mariadb,filelogger
|
tasks = mariadb,file
|
||||||
user = USERNAME
|
user = USERNAME
|
||||||
password = PASSWORD
|
password = PASSWORD
|
||||||
hostgroups = group1
|
hostgroups = group1
|
||||||
|
|
@ -29,6 +29,10 @@ logger = getLogger('linspector')
|
||||||
# next 3rd party library in the core (need to discover features because i want log rotating):
|
# next 3rd party library in the core (need to discover features because i want log rotating):
|
||||||
# https://pypi.org/project/loguru/
|
# https://pypi.org/project/loguru/
|
||||||
# maybe subclass it from logging.Logger...?
|
# maybe subclass it from logging.Logger...?
|
||||||
|
# TODO: Make the logging format using key=value pairs to make it easy to evaluate log data using
|
||||||
|
# Splunk.
|
||||||
|
# TODO: Make logging possible to syslog! Maybe not implement it here and just use the syslog task
|
||||||
|
# with a format optimized for Splunk or create a Splunk task for this.
|
||||||
class Log:
|
class Log:
|
||||||
def __init__(self, configuration, stdout, verbose):
|
def __init__(self, configuration, stdout, verbose):
|
||||||
self.__configuration = configuration
|
self.__configuration = configuration
|
||||||
|
|
|
||||||
19
linspector/tasks/splunk.py
Normal file
19
linspector/tasks/splunk.py
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
"""
|
||||||
|
This file is part of Linspector (https://linspector.org/)
|
||||||
|
Copyright (c) 2023 Johannes Findeisen <you@hanez.org>. All Rights Reserved.
|
||||||
|
See LICENSE (MIT license)
|
||||||
|
"""
|
||||||
|
from linspector.core.task import Task
|
||||||
|
|
||||||
|
|
||||||
|
def create(configuration, environment, log):
|
||||||
|
return SplunkTask(configuration, environment, log)
|
||||||
|
|
||||||
|
|
||||||
|
# TODO: check for all required configuration options and set defaults if needed.
|
||||||
|
class SplunkTask(Task):
|
||||||
|
def __init__(self, configuration, environment, log):
|
||||||
|
super().__init__(configuration, environment, log)
|
||||||
|
self.__configuration = configuration
|
||||||
|
self.__environment = environment
|
||||||
|
self.__log = log
|
||||||
|
|
@ -1,9 +1,14 @@
|
||||||
APScheduler~=3.9.1
|
APScheduler==3.10.0
|
||||||
CherryPy~=18.8.0
|
CherryPy==18.8.0
|
||||||
fritzconnection~=1.10.3
|
fastapi==0.89.1
|
||||||
loguru~=0.6.0
|
fritzconnection==1.11.0
|
||||||
python-gammu~=3.2.4
|
loguru==0.6.0
|
||||||
paramiko~=2.11.0
|
pydantic==1.10.4
|
||||||
pysnmp~=4.4.12
|
python-gammu==3.2.4
|
||||||
requests~=2.28.1
|
paramiko==3.0.0
|
||||||
xmpp2~=0.4
|
pysnmp==4.4.12
|
||||||
|
requests==2.28.2
|
||||||
|
rich==13.3.1
|
||||||
|
textual==0.10.1
|
||||||
|
typer==0.7.0
|
||||||
|
xmpp2==0.4
|
||||||
Loading…
Add table
Add a link
Reference in a new issue