Improved severity column, still subject to changes

This commit is contained in:
Thomas Gelf 2014-03-04 12:33:54 +00:00
parent 0f0e4883d1
commit 9cc3bb75ca
1 changed files with 11 additions and 7 deletions

View File

@ -276,12 +276,16 @@ class StatusQuery extends IdoQuery
ELSE 256 ELSE 256
END END
+ +
CASE WHEN hs.current_state > 0
THEN 1024
ELSE
CASE WHEN ss.problem_has_been_acknowledged = 1 CASE WHEN ss.problem_has_been_acknowledged = 1
THEN 2 THEN 512
ELSE ELSE
CASE WHEN ss.scheduled_downtime_depth > 0 CASE WHEN ss.scheduled_downtime_depth > 0
THEN 1 THEN 256
ELSE 4 ELSE 2048
END
END END
END END
END' END'