mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-06 07:12:04 +01:00
improve statistics
This commit is contained in:
parent
37a348456e
commit
a79ddc49c6
|
|
@ -26,17 +26,17 @@ class Plugin:
|
||||||
_pluginsActive = 0
|
_pluginsActive = 0
|
||||||
|
|
||||||
def __init__(self, pluginName):
|
def __init__(self, pluginName):
|
||||||
"""!init preload some needed locals
|
"""!init preload some needed locals and then call onLoad() directly"""
|
||||||
and then call onLoad() directly"""
|
|
||||||
self._pluginName = pluginName
|
self._pluginName = pluginName
|
||||||
logging.debug("load %s", self._pluginName)
|
logging.debug("load %s", self._pluginName)
|
||||||
self._pluginsActive += 1
|
self._pluginsActive += 1
|
||||||
|
|
||||||
# for time counting
|
# for time counting
|
||||||
|
self._sumTime = 0
|
||||||
self._setupTime = 0
|
self._setupTime = 0
|
||||||
self._alarmTime = 0
|
self._alarmTime = 0
|
||||||
self._teardownTime = 0
|
self._teardownTime = 0
|
||||||
self._endTime = 0
|
self._tmpTime = 0
|
||||||
|
|
||||||
# for statistics
|
# for statistics
|
||||||
self._runCount = 0
|
self._runCount = 0
|
||||||
|
|
@ -58,11 +58,14 @@ class Plugin:
|
||||||
logging.debug("- alarm errors %d", self._alarmErrorCount)
|
logging.debug("- alarm errors %d", self._alarmErrorCount)
|
||||||
logging.debug("- teardown errors %d", self._teardownErrorCount)
|
logging.debug("- teardown errors %d", self._teardownErrorCount)
|
||||||
|
|
||||||
|
def _loadConfig(self):
|
||||||
|
pass
|
||||||
|
|
||||||
def _run(self, bwPacket):
|
def _run(self, bwPacket):
|
||||||
self._runCount += 1
|
self._runCount += 1
|
||||||
logging.debug("[%s] run #%s", self._pluginName, self._runCount)
|
logging.debug("[%s] run #%s", self._pluginName, self._runCount)
|
||||||
|
|
||||||
self._setupTime = time.time()
|
self._tmpTime = time.time()
|
||||||
try:
|
try:
|
||||||
logging.debug("[%s] setup", self._pluginName)
|
logging.debug("[%s] setup", self._pluginName)
|
||||||
self.setup()
|
self.setup()
|
||||||
|
|
@ -70,7 +73,8 @@ class Plugin:
|
||||||
self._setupErrorCount += 1
|
self._setupErrorCount += 1
|
||||||
logging.exception("[%s] error in setup", self._pluginName)
|
logging.exception("[%s] error in setup", self._pluginName)
|
||||||
|
|
||||||
self._alarmTime = time.time()
|
self._setupTime = time.time() - self._tmpTime
|
||||||
|
self._tmpTime = time.time()
|
||||||
try:
|
try:
|
||||||
logging.debug("[%s] alarm", self._pluginName)
|
logging.debug("[%s] alarm", self._pluginName)
|
||||||
self.alarm(bwPacket)
|
self.alarm(bwPacket)
|
||||||
|
|
@ -78,7 +82,8 @@ class Plugin:
|
||||||
self._alarmErrorCount += 1
|
self._alarmErrorCount += 1
|
||||||
logging.exception("[%s] error in alarm", self._pluginName)
|
logging.exception("[%s] error in alarm", self._pluginName)
|
||||||
|
|
||||||
self._teardownTime = time.time()
|
self._alarmTime = time.time() - self._tmpTime
|
||||||
|
self._tmpTime = time.time()
|
||||||
try:
|
try:
|
||||||
logging.debug("[%s] teardown", self._pluginName)
|
logging.debug("[%s] teardown", self._pluginName)
|
||||||
self.teardown()
|
self.teardown()
|
||||||
|
|
@ -86,11 +91,27 @@ class Plugin:
|
||||||
self._teardownErrorCount += 1
|
self._teardownErrorCount += 1
|
||||||
logging.exception("[%s] error in teardown", self._pluginName)
|
logging.exception("[%s] error in teardown", self._pluginName)
|
||||||
|
|
||||||
|
self._teardownTime = time.time() - self._tmpTime
|
||||||
|
self._sumTime = self._setupTime + self._alarmTime + self._teardownTime
|
||||||
|
|
||||||
self._endTime = time.time()
|
self._endTime = time.time()
|
||||||
logging.debug("[%s] took %0.2f seconds", self._pluginName, self._endTime - self._setupTime)
|
logging.debug("[%s] took %0.3f seconds", self._pluginName, self._sumTime)
|
||||||
logging.debug("- setup: %0.2f sec.", self._alarmTime - self._setupTime)
|
logging.debug("- setup: %0.2f sec.", self._setupTime)
|
||||||
logging.debug("- alarm: %0.2f sec.", self._teardownTime - self._alarmTime)
|
logging.debug("- alarm: %0.2f sec.", self._alarmTime)
|
||||||
logging.debug("- teardown: %0.2f sec.", self._endTime - self._teardownTime)
|
logging.debug("- teardown: %0.2f sec.", self._teardownTime)
|
||||||
|
|
||||||
|
def _getStatistics(self):
|
||||||
|
"""!Returns statistical information's from last plugin run
|
||||||
|
|
||||||
|
@return Count of runs complete
|
||||||
|
@return time of last complete run
|
||||||
|
@return time of last setup
|
||||||
|
@return time of last alarm
|
||||||
|
@return time of last teardown
|
||||||
|
@return count of setup errors complete
|
||||||
|
@return count of alarm errors complete
|
||||||
|
@return count of teardown errors complete"""
|
||||||
|
return self._runCount, self._sumTime, self._setupTime, self._alarmTime, self._teardownTime, self._setupErrorCount, self._alarmErrorCount, self._teardownErrorCount
|
||||||
|
|
||||||
def onLoad(self):
|
def onLoad(self):
|
||||||
"""!Called by import of the plugin
|
"""!Called by import of the plugin
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue