app_monitor_datas
Creates, updates, deletes, gets or lists an app_monitor_datas resource.
Overview
| Name | app_monitor_datas |
| Type | Resource |
| Id | aws.rum.app_monitor_datas |
Fields
The following fields are returned by SELECT queries:
- get_app_monitor_data
| Name | Datatype | Description |
|---|---|---|
event | string | The events that RUM collected that match your request. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_app_monitor_data | select | name, region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the app monitor that collected the data that you want to retrieve. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_app_monitor_data
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
;