Values.GetAppMonitorDataRequestSourceRetrieves the raw performance events that RUM has collected from your web application, so that you can do your own processing or analysis of this data.
type nonrec t = {name : AppMonitorName.t;The name of the app monitor that collected the data that you want to retrieve.
*)timeRange : TimeRange.t;A structure that defines the time range that you want to retrieve results from.
*)filters : QueryFilters.t option;An array of structures that you can use to filter the results to those that match one or more sets of key-value pairs that you specify.
*)maxResults : MaxQueryResults.t option;The maximum number of results to return in one operation.
*)nextToken : Token.t option;Use the token returned by the previous operation to request the next page of results.
*)}val make :
?filters:??? ->
?maxResults:??? ->
?nextToken:??? ->
name:AppMonitorName.t ->
timeRange:TimeRange.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of MaxQueryResults.t
| `List of
[> `Structure of
(string
* [> `List of [> `String of QueryFilterValue.t ] list
| `String of QueryFilterKey.t ])
list ]
list
| `String of AppMonitorName.t
| `Structure of (string * [> `Long of QueryTimestamp.t ]) list ])
list ]