finally, minimal config is working :)
This commit is contained in:
parent
0bc9b658f4
commit
3bff0302a7
10 changed files with 14 additions and 11 deletions
|
|
@ -6,7 +6,7 @@ from lib.processors.processor import Processor
|
|||
|
||||
|
||||
class MariadbProcessor(Processor):
|
||||
def __init__(self):
|
||||
def __init__(self, **kwargs):
|
||||
pass
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ from lib.processors.processor import Processor
|
|||
|
||||
|
||||
class MongodbProcessor(Processor):
|
||||
def __init__(self):
|
||||
def __init__(self, **kwargs):
|
||||
pass
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -4,5 +4,5 @@ The processor class for postprocessing polled data.
|
|||
|
||||
|
||||
class Processor:
|
||||
def __init__(self):
|
||||
def __init__(self, **kwargs):
|
||||
pass
|
||||
|
|
@ -6,7 +6,7 @@ from lib.processors.processor import Processor
|
|||
|
||||
|
||||
class SyslogProcessor(Processor):
|
||||
def __init__(self):
|
||||
def __init__(self, **kwargs):
|
||||
pass
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue