[Trace Service Map] (with topology relationship and statistics)¶
GET /api/v1/tracing/service_map_v2
Overview¶
Query Request Parameters¶
Parameter Name | Type | Required | Description |
---|---|---|---|
workspaceUUID | string | Y | Workspace ID |
start | integer | Y | Start time, in ms |
end | integer | Y | End time, in ms |
search | string | Filter by service name |
|
filters | string | Tag filter, consistent with the ES querydata interface |
|
isServiceSub | boolean | Whether it is a service_sub |
|
serviceMapList | boolean | Whether to list the service topology call relationship |
Additional Parameter Explanation¶
Example of filters:
{
"tags": [
{
"name": "__tags.__isError.keyword",
"value": [
"true"
],
"operation": "=",
"condition": "and"
},
{
"condition": "and",
"name": "__tags.__serviceName",
"operation": "=~",
"value": [
".*04.*"
]
}
]
}