Skip to main content

traces_critical_path_breakdown_service

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

Overview

Nametraces_critical_path_breakdown_service
TypeResource
Idsumologic.tracing.traces_critical_path_breakdown_service

Fields

The following fields are returned by SELECT queries:

List of elements representing the critical path service breakdown.

NameDatatypeDescription
elementsarrayList of elements representing the critical path service breakdown.
idleTimeinteger (int64)Overall time in nanoseconds when no particular operation was in progress.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getCriticalPathServiceBreakdownselecttraceId, regionGet a critical path breakdown by services of the spans contributing to the critical path of a trace with the given identifier.

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
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)
traceIdstringIdentifier of the trace.

SELECT examples

Get a critical path breakdown by services of the spans contributing to the critical path of a trace with the given identifier.

SELECT
elements,
idleTime
FROM sumologic.tracing.traces_critical_path_breakdown_service
WHERE traceId = '{{ traceId }}' -- required
AND region = '{{ region }}' -- required
;