Module Values.GetAppMonitorDataRequestSource

Retrieves 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.

Sourcetype nonrec t = {
  1. name : AppMonitorName.t;
    (*

    The name of the app monitor that collected the data that you want to retrieve.

    *)
  2. timeRange : TimeRange.t;
    (*

    A structure that defines the time range that you want to retrieve results from.

    *)
  3. 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.

    *)
  4. maxResults : MaxQueryResults.t option;
    (*

    The maximum number of results to return in one operation.

    *)
  5. nextToken : Token.t option;
    (*

    Use the token returned by the previous operation to request the next page of results.

    *)
}
Sourceval context_ : string
Sourceval make : ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> name:AppMonitorName.t -> timeRange:TimeRange.t -> unit -> t
Sourceval 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 ]
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