1
0
Fork 0
mirror of https://github.com/ThomasGsp/HyperProxmox.git synced 2025-03-09 15:40:18 +00:00

- Implement bulk writting log

This commit is contained in:
Tlams 2018-04-12 17:29:34 +01:00
parent 640334893d
commit f67a6463ad
3 changed files with 40 additions and 23 deletions

View file

@ -27,11 +27,17 @@ if __name__ == "__main__":
generalconf = {
"logger": {"debug": localconf['logger']['debug'], "logs_level": localconf['logger']['logs_level'],
"logs_dir": localconf['logger']['logs_dir']},
"logs_dir": localconf['logger']['logs_dir'], "bulk_write": localconf['logger']['bulk_write'],
"bulk_size": localconf['logger']['bulk_size']},
"analyst": {"walker": localconf['walker']['walker'], "walker_lock": localconf['walker']['walker_lock']},
"mongodb": {"ip": localconf['databases']['mongodb_ip'], 'port': localconf['databases']['mongodb_port']},
"redis": {"ip": localconf['databases']['redis_ip'], 'port': localconf['databases']['redis_port']},
"deploy": {'concurrencydeploy': localconf['deploy']['concurrencydeploy'], 'delayrounddeploy': localconf['deploy']['delayrounddeploy']}
"deploy": {'concurrencydeploy': localconf['deploy']['concurrencydeploy'],
'delayrounddeploy': localconf['deploy']['delayrounddeploy']}
}
""" Active logger"""