Explorar el Código

RC monitor ready for testing.

pull/10/merge
Ben Kurtovic hace 8 años
padre
commit
bc16198c35
Se han modificado 1 ficheros con 7 adiciones y 1 borrados
  1. +7
    -1
      commands/rc_monitor.py

+ 7
- 1
commands/rc_monitor.py Ver fichero

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

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

def _evaluate(self, event):


Cargando…
Cancelar
Guardar