Module Values.RecommendationSource

A potential improvement that was found from analyzing the profiling data.

Sourcetype nonrec t = {
  1. allMatchesCount : Integer.t option;
    (*

    How many different places in the profile graph triggered a match.

    *)
  2. allMatchesSum : Double.t option;
    (*

    How much of the total sample count is potentially affected.

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

    End time of the profile that was used by this analysis. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.

    *)
  4. pattern : Pattern.t option;
    (*

    The pattern that analysis recognized in the profile to make this recommendation.

    *)
  5. startTime : Timestamp.t option;
    (*

    The start time of the profile that was used by this analysis. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.

    *)
  6. topMatches : Matches.t option;
    (*

    List of the matches with most impact.

    *)
}
Sourceval make : ?allMatchesCount:??? -> ?allMatchesSum:??? -> ?endTime:??? -> ?pattern:??? -> ?startTime:??? -> ?topMatches:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `String of String_.t ]) list ] list | `Structure of (string * [> `Double of Percentage.t | `List of [> `List of [> `String of String_.t ] list | `String of String_.t ] list | `String of String_.t ]) 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