events_raw
Creates, updates, deletes, gets or lists an events_raw resource.
Overview
| Name | events_raw |
| Type | Resource |
| Id | cloudflare.cloudforce_one.events_raw |
Fields
The following fields are returned by SELECT queries:
- get_by_account
Returns the raw event data.
| Name | Datatype | Description |
|---|---|---|
id | number | |
accountId | number | |
created | string | |
data | string | |
source | string | |
tlp | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_by_account | select | account_id, event_id, dataset_id | Retrieves the raw data associated with an event. Searches across all shards in the dataset. |
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 |
|---|---|---|
account_id | string | The Cloudflare account ID. |
dataset_id | string | The dataset ID. |
event_id | string | The event ID. |
SELECT examples
- get_by_account
Retrieves the raw data associated with an event. Searches across all shards in the dataset.
SELECT
id,
accountId,
created,
data,
source,
tlp
FROM cloudflare.cloudforce_one.events_raw
WHERE account_id = '{{ account_id }}' -- required
AND event_id = '{{ event_id }}' -- required
AND dataset_id = '{{ dataset_id }}' -- required
;