Skip to main content

tracequery_rows_traces

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

Overview

Nametracequery_rows_traces
TypeResource
Idsumologic.tracing.tracequery_rows_traces

Fields

The following fields are returned by SELECT queries:

Details about the given span query.

NameDatatypeDescription
nextstringNext continuation token. (example: 10001)
resultsarrayList of traces matching the query.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getTraceQueryResultselectqueryId, rowId, regionlimit, tokenGet a list of traces matching a query with the specified id. The response is paginated with a default limit of 100 traces per page.

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.
limitinteger (int32)Limit of the number of traces returned in the response.
tokenstringContinuation token to get the next page of results. A page object with the next continuation token is returned in the response body. Subsequent GET requests should specify the continuation token to get the next page of results. token is set to null when no more pages are left.

SELECT examples

Get a list of traces matching a query with the specified id. The response is paginated with a default limit of 100 traces per page.

SELECT
next,
results
FROM sumologic.tracing.tracequery_rows_traces
WHERE queryId = '{{ queryId }}' -- required
AND rowId = '{{ rowId }}' -- required
AND region = '{{ region }}' -- required
AND limit = '{{ limit }}'
AND token = '{{ token }}'
;