rum_events
Creates, updates, deletes, gets or lists a rum_events resource.
Overview
| Name | rum_events |
| Type | Resource |
| Id | aws.rum.rum_events |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
put_rum_events | replace | id, region, BatchId, AppMonitorDetails, UserDetails, RumEvents | Sends telemetry events about your application performance and user behavior to CloudWatch RUM. The code snippet that RUM generates for you to add to your application includes PutRumEvents operations to send this data to RUM. Each PutRumEvents operation can send a batch of events from one user session. |
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 |
|---|---|---|
id | string | The ID of the app monitor that is sending this data. |
region | string | AWS region (default: us-east-1) |
REPLACE examples
- put_rum_events
Sends telemetry events about your application performance and user behavior to CloudWatch RUM. The code snippet that RUM generates for you to add to your application includes PutRumEvents operations to send this data to RUM. Each PutRumEvents operation can send a batch of events from one user session.
REPLACE aws.rum.rum_events
SET
BatchId = '{{ BatchId }}',
AppMonitorDetails = '{{ AppMonitorDetails }}',
UserDetails = '{{ UserDetails }}',
RumEvents = '{{ RumEvents }}',
Alias = '{{ Alias }}'
WHERE
id = '{{ id }}' --required
AND region = '{{ region }}' --required
AND BatchId = '{{ BatchId }}' --required
AND AppMonitorDetails = '{{ AppMonitorDetails }}' --required
AND UserDetails = '{{ UserDetails }}' --required
AND RumEvents = '{{ RumEvents }}' --required;