Module Values.InsightHealthSource

Information about the number of open reactive and proactive insights that can be used to gauge the health of your system.

Sourcetype nonrec t = {
  1. openProactiveInsights : NumOpenProactiveInsights.t option;
    (*

    The number of open proactive insights.

    *)
  2. openReactiveInsights : NumOpenReactiveInsights.t option;
    (*

    The number of open reactive insights.

    *)
  3. meanTimeToRecoverInMilliseconds : MeanTimeToRecoverInMilliseconds.t option;
    (*

    The Meant Time to Recover (MTTR) for the insight.

    *)
}
Sourceval make : ?openProactiveInsights:??? -> ?openReactiveInsights:??? -> ?meanTimeToRecoverInMilliseconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NumOpenProactiveInsights.t | `Long of MeanTimeToRecoverInMilliseconds.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t