Skip to main content

spanquery_rows_facets

Creates, updates, deletes, gets or lists a spanquery_rows_facets resource.

Overview

Namespanquery_rows_facets
TypeResource
Idsumologic.tracing.spanquery_rows_facets

Fields

The following fields are returned by SELECT queries:

The list of facets from the executed query.

NameDatatypeDescription
facetsarrayList of facets.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getSpanQueryFacetsselectqueryId, rowId, regionGet 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.

NameDatatypeDescription
queryIdstringIdentifier of the executed query.
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)
rowIdstringIdentifier of the query row.

SELECT examples

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
;