Skip to content
Snippets Groups Projects
Commit 6adde7e8 authored by David Bühler's avatar David Bühler
Browse files

[server] kernel.properties array: new columns for alarms.

parent f27667dc
No related branches found
No related tags found
No related merge requests found
...@@ -215,6 +215,10 @@ end ...@@ -215,6 +215,10 @@ end
(* --- Property Model --- *) (* --- Property Model --- *)
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
let find_alarm = function
| Property.IPCodeAnnot annot -> Alarms.find annot.ica_ca
| _ -> None
let model = States.model () let model = States.model ()
let () = States.column ~model ~name:"descr" let () = States.column ~model ~name:"descr"
...@@ -250,6 +254,16 @@ let () = States.column ~model ~name:"source" ...@@ -250,6 +254,16 @@ let () = States.column ~model ~name:"source"
~data:(module LogSource) ~data:(module LogSource)
~get:(fun ip -> Property.location ip |> fst) () ~get:(fun ip -> Property.location ip |> fst) ()
let () = States.column ~model ~name:"alarm"
~descr:(Md.plain "Alarm name (if the property is an alarm)")
~data:(module Jstring.Joption)
~get:(fun ip -> Extlib.opt_map Alarms.get_short_name (find_alarm ip)) ()
let () = States.column ~model ~name:"alarm_descr"
~descr:(Md.plain "Alarm description (if the property is an alarm)")
~data:(module Jstring.Joption)
~get:(fun ip -> Extlib.opt_map Alarms.get_description (find_alarm ip)) ()
let is_relevant ip = let is_relevant ip =
match Property.get_kf ip with match Property.get_kf ip with
| None -> true | None -> true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment