v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
traces

Get a critical path service breakdown of a trace.

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

get/v1/tracing/traces/{traceId}/criticalPath/breakdown/service

Path parameters

traceIdstring required

Identifier of the trace.

Response

List of elements representing the critical path service breakdown.

idleTimeinteger required

Overall time in nanoseconds when no particular operation was in progress.

Example response

{
  "elements": [
    {
      "service": "user-service",
      "serviceColor": "#fa41c6",
      "duration": 12957153,
      "numSpans": 12957153,
      "longestSegmentDuration": 12957153
    }
  ],
  "idleTime": 60000000
}