Module Values.CanaryRunTimelineSource

This structure contains the start and end times of a single canary run.

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

    The start time of the run.

    *)
  2. completed : Timestamp.t option;
    (*

    The end time of the run.

    *)
  3. metricTimestampForRunAndRetries : Timestamp.t option;
    (*

    The time at which the metrics will be generated for this run or retries.

    *)
}
Sourceval make : ?started:??? -> ?completed:??? -> ?metricTimestampForRunAndRetries:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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