Module Values.ForecastStatisticsSource

The predicted high and low fault count. This is used to determine if a service has become anomalous and if an insight should be created.

Sourcetype nonrec t = {
  1. faultCountHigh : NullableLong.t option;
    (*

    The upper limit of fault counts for a service.

    *)
  2. faultCountLow : NullableLong.t option;
    (*

    The lower limit of fault counts for a service.

    *)
}
Sourceval make : ?faultCountHigh:??? -> ?faultCountLow:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of NullableLong.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