-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlizard.py
110 lines (78 loc) · 3.04 KB
/
lizard.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import yaml, sys, stat, os, logging
import influxdb_client
from multiprocessing import Process, Queue
from importlib import import_module
def load_conf(conf='config.yaml'):
with open(conf) as f:
cfg = yaml.load(f, Loader=yaml.FullLoader)
return cfg
def get_clients(db_cfg):
clients = {}
url = db_cfg['url']
org = db_cfg['org']
for bucket, token in db_cfg['buckets'].items():
clients[bucket] = influxdb_client.InfluxDBClient(url=url, token=token, org=org)
return clients
def start_modules(q, cfg):
jobs = []
for name, m_cfg in cfg.items():
if m_cfg['active'] == False:
print(f'Module {name} is not active, moving on')
continue
print(f'Module {name} is being activated')
mod = None
# Import modules dynamically
try:
mod = import_module('modules.' + name)
except ModuleNotFoundError:
print(f'Module {name} not found in modules folder')
continue
if 'start' not in dir(mod):
print(f'Module {name} does not contain any start() function')
continue
p = Process(target=mod.start, args=(q, m_cfg))
jobs.append(p)
for j in jobs:
j.start()
return jobs
def main():
if len(sys.argv) < 2:
print("Error: No configuration file specified")
print(f"python {sys.argv[0]} <path to config file>")
return 1
logging.basicConfig(
filename='/var/log/lizard.log',
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(filename)s - %(message)s', datefmt='%Y-%m-%d %H:%M:%S')
q = Queue()
cfg = load_conf(sys.argv[1])
# Sanity check on modules folder
modules, _ = os.path.split(os.path.abspath(sys.argv[0]))
modules = os.path.join(modules, "modules")
if os.path.isdir(modules) == False:
print('Cannot locate \"modules\" folder, exiting')
return 1
m = os.lstat(modules).st_mode
if (stat.S_IWOTH & m) and cfg['config']['allow-writeable-modules'] == False:
print('Warning: \"modules\" folder is world-writeable, anyone could drop-in a script and execute code on this device.')
print('You should make the folder not world-writeable: \"chmod o-w modules\"')
print('If this is not possible, you can enable \"allow-writeable-modules\" in the configuration file')
return 1
clients = get_clients(cfg['influx'])
jobs = start_modules(q, cfg['modules'])
logging.info('Monitor Lizard Started')
while True:
name, bucket, record, precision = q.get()
if bucket not in clients:
print(f'Bucket {bucket} not found in configuration file for module {name}')
continue
client = clients[bucket]
with client.write_api() as write_api:
write_api.write(bucket, record=record, write_precision=precision)
# Wait on all processes
for j in jobs:
j.join()
print("All of Lizard's modules have terminated")
return 0
if __name__ == '__main__':
exit(main())