Values.RecommendationSourceA potential improvement that was found from analyzing the profiling data.
type nonrec t = {allMatchesCount : Integer.t option;How many different places in the profile graph triggered a match.
*)allMatchesSum : Double.t option;How much of the total sample count is potentially affected.
*)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.
*)pattern : Pattern.t option;The pattern that analysis recognized in the profile to make this recommendation.
*)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.
*)topMatches : Matches.t option;List of the matches with most impact.
*)}val 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 ]