mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2025-12-06 07:42:03 +01:00
You can set the number of historical entries the filter will check and the time ignoring the id in case of a double alarm
28 lines
360 B
Python
28 lines
360 B
Python
#!/usr/bin/python
|
|
# -*- coding: cp1252 -*-
|
|
|
|
"""
|
|
Global variables
|
|
|
|
@author: Jens Herrmann
|
|
@author: Bastian Schroll
|
|
"""
|
|
|
|
# Global variables
|
|
config = 0
|
|
script_path = ""
|
|
log_path = ""
|
|
|
|
# double alarm
|
|
doubleList = []
|
|
|
|
# pluginLoader
|
|
pluginList = {}
|
|
|
|
# filter
|
|
filterList = []
|
|
|
|
# idDescribing
|
|
fmsDescribtionList = {}
|
|
zveiDescribtionList = {}
|
|
ricDescribtionList = {} |