Module Values.TimeSeriesServiceStatisticsSource

A list of TimeSeriesStatistic structures.

Sourcetype nonrec t = {
  1. timestamp : Timestamp.t option;
    (*

    Timestamp of the window for which statistics are aggregated.

    *)
  2. edgeSummaryStatistics : EdgeStatistics.t option;
  3. serviceSummaryStatistics : ServiceStatistics.t option;
  4. serviceForecastStatistics : ForecastStatistics.t option;
    (*

    The forecasted high and low fault count values.

    *)
  5. responseTimeHistogram : Histogram.t option;
    (*

    The response time histogram for the selected entities.

    *)
}
Sourceval make : ?timestamp:??? -> ?edgeSummaryStatistics:??? -> ?serviceSummaryStatistics:??? -> ?serviceForecastStatistics:??? -> ?responseTimeHistogram:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t ]) list ] list | `Structure of (string * [> `Double of NullableDouble.t | `Long of NullableLong.t | `Structure of (string * [> `Long of NullableLong.t ]) list ]) list | `Timestamp of Timestamp.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