traces_critical_path_breakdown_service
Creates, updates, deletes, gets or lists a traces_critical_path_breakdown_service
resource.
Overview
Name | traces_critical_path_breakdown_service |
Type | Resource |
Id | sumologic.tracing.traces_critical_path_breakdown_service |
Fields
The following fields are returned by SELECT
queries:
- getCriticalPathServiceBreakdown
List of elements representing the critical path service breakdown.
Name | Datatype | Description |
---|---|---|
elements | array | List of elements representing the critical path service breakdown. |
idleTime | integer (int64) | Overall time in nanoseconds when no particular operation was in progress. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
getCriticalPathServiceBreakdown | select | traceId , region | Get 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.
Name | Datatype | Description |
---|---|---|
region | string | SumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2) |
traceId | string | Identifier of the trace. |
SELECT
examples
- getCriticalPathServiceBreakdown
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
;