mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2026-01-09 10:09:57 +01:00
little changes
This commit is contained in:
parent
34ed9c3d5b
commit
9c824ff862
|
|
@ -11,4 +11,5 @@ Beschreibung aus CSV File
|
|||
Konfigurationsdateien Modulweit teilbar über "Sharepoints"
|
||||
Alarm-Daten Übermittlung per definierten bwPacket-Paket
|
||||
Plugin Statistiken sowie Ausführungszeiten
|
||||
Plugin Priorisierung
|
||||
Funktionaler und dynamischer Pluginloader
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ class Plugin:
|
|||
"""!Returns statistical information's from last plugin run
|
||||
|
||||
@return Statistics as pyton dict"""
|
||||
stats = {"runCount": self._runCount, "sumTime": self._sumTime, "cumTime": self._runCount + self._sumTime,
|
||||
stats = {"runCount": self._runCount, "sumTime": self._sumTime, "cumTime": self._runCount * self._sumTime,
|
||||
"setupTime": self._setupTime, "alarmTime": self._alarmTime, "teardownTime": self._teardownTime,
|
||||
"setupErrorCount": self._setupErrorCount, "alarmErrorCount": self._alarmErrorCount, "teardownErrorCount": self._teardownErrorCount}
|
||||
return stats
|
||||
|
|
|
|||
Loading…
Reference in a new issue