spanquery_rows_facets
Creates, updates, deletes, gets or lists a spanquery_rows_facets
resource.
Overview
Name | spanquery_rows_facets |
Type | Resource |
Id | sumologic.tracing.spanquery_rows_facets |
Fields
The following fields are returned by SELECT
queries:
- getSpanQueryFacets
The list of facets from the executed query.
Name | Datatype | Description |
---|---|---|
facets | array | List of facets. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getSpanQueryFacets | select | queryId , rowId , region | Get a list of facets of a span analytics query with the specified id. |
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 |
---|---|---|
queryId | string | Identifier of the executed query. |
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
rowId | string | Identifier of the query row. |
SELECT
examples
- getSpanQueryFacets
Get a list of facets of a span analytics query with the specified id.
SELECT
facets
FROM sumologic.tracing.spanquery_rows_facets
WHERE queryId = '{{ queryId }}' -- required
AND rowId = '{{ rowId }}' -- required
AND region = '{{ region }}' -- required
;