Skip to main content

app_monitor_datas

Creates, updates, deletes, gets or lists an app_monitor_datas resource.

Overview

Nameapp_monitor_datas
TypeResource
Idaws.rum.app_monitor_datas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
eventstringThe events that RUM collected that match your request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_app_monitor_dataselectname, regionRetrieves 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
namestringThe name of the app monitor that collected the data that you want to retrieve.
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
event
FROM aws.rum.app_monitor_datas
WHERE name = '{{ name }}' -- required
AND region = '{{ region }}' -- required
;