瀏覽代碼

RC monitor ready for testing.

pull/10/merge
Ben Kurtovic 8 年之前
父節點
當前提交
bc16198c35
共有 1 個檔案被更改,包括 7 行新增1 行删除
  1. +7
    -1
      commands/rc_monitor.py

+ 7
- 1
commands/rc_monitor.py 查看文件

@@ -94,19 +94,25 @@ class RCMonitor(Command):
def _prepare_reports(self): def _prepare_reports(self):
"""Set up internal tables for storing report information.""" """Set up internal tables for storing report information."""
routine = 1 routine = 1
alert = 2
urgent = 3 urgent = 3


self._levels = { self._levels = {
routine: "routine", routine: "routine",
# ...
alert: "alert",
urgent: "URGENT"
} }
self._issues = { self._issues = {
"random": routine, "random": routine,
"random2": urgent, "random2": urgent,
# ... # ...
"g10": alert
} }
self._descriptions = { self._descriptions = {
"random": "common random test",
"random2": "rare random test",
# ... # ...
"g10": "CSD G10 nomination"
} }


def _evaluate(self, event): def _evaluate(self, event):


Loading…
取消
儲存