dropped
Creates, updates, deletes, gets or lists a dropped
resource.
Overview
Name | dropped |
Type | Resource |
Id | sumologic.fields.dropped |
Fields
The following fields are returned by SELECT
queries:
- listDroppedFields
List of dropped fields.
Name | Datatype | Description |
---|---|---|
fieldName | string | Field name. (example: hostIP) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
listDroppedFields | select | region | Dropped fields are fields sent to Sumo Logic, but are ignored since they are not defined in your Fields schema. In order to save these values a field must both exist and be enabled. |
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 |
---|---|---|
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
SELECT
examples
- listDroppedFields
Dropped fields are fields sent to Sumo Logic, but are ignored since they are not defined in your Fields schema. In order to save these values a field must both exist and be enabled.
SELECT
fieldName
FROM sumologic.fields.dropped
WHERE region = '{{ region }}' -- required
;