added some args stuff, added dummy shell parser, renamed classes in processors...
This commit is contained in:
parent
65fa8e0871
commit
ae6206c750
33 changed files with 28 additions and 2956 deletions
14
lib/processors/mariadb.py
Normal file
14
lib/processors/mariadb.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
"""
|
||||
The MariaDB processor
|
||||
"""
|
||||
|
||||
from processor import Processor
|
||||
|
||||
|
||||
class MariadbProcessor(Processor):
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
|
||||
def create(kwargs):
|
||||
return MariadbProcessor(**kwargs)
|
||||
|
|
@ -5,10 +5,10 @@ The MongoDB processor
|
|||
from processor import Processor
|
||||
|
||||
|
||||
class Mongodb(Processor):
|
||||
class MongodbProcessor(Processor):
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
|
||||
def create(kwargs):
|
||||
return Mongodb(**kwargs)
|
||||
return MongodbProcessor(**kwargs)
|
||||
|
|
@ -5,10 +5,10 @@ The syslog processor
|
|||
from processor import Processor
|
||||
|
||||
|
||||
class Syslog(Processor):
|
||||
class SyslogProcessor(Processor):
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
|
||||
def create(kwargs):
|
||||
return Syslog(**kwargs)
|
||||
return SyslogProcessor(**kwargs)
|
||||
Loading…
Add table
Add a link
Reference in a new issue