Skip to main content
Monitoring & Collection/Profiling
POSTProfilingSince 1.0SynchronousAuth Required

GetGoroutineFlameDiff

Compare two goroutine flame graphs and return the differential result.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

Body Fields

  • baseIdStringRequired

    Session ID to use as the base goroutine flame graph.

    Example: sess-base001

  • compareIdStringRequired

    Session ID to compare against the base goroutine flame graph.

    Example: sess-cmp002

Responses

200 OK

On success, this API returns the following response structure.

  • dataString

    Differential goroutine flame graph data.

    Example: aGVsbG8=

Endpoint

POST/api/v1/profiling/goroutine-flame/diff

/api/v1/profiling/goroutine-flame/diff

Operation ID

GetGoroutineFlameDiff

Permalink

Request Example

curl -X POST '{host}/api/v1/profiling/goroutine-flame/diff' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"baseId":"sess-base001","compareId":"sess-cmp002"}'

Response Example

200
{
  "data": "example"
}

Change History

This API has no change history records yet.

View all change history