Service Map¶
GET /api/v1/tracing/service_map_v2
Overview¶
Includes topology relationships and statistical data
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 | Service name filter |
|
filters | string | Tag filter, consistent with the search and ES querydata interface |
|
isServiceSub | boolean | Whether it is a service_sub |
|
serviceMapList | boolean | Whether to list the service topology call relationship list |
Additional Parameter Explanation¶
Example of filters:
{
"tags": [
{
"name": "__tags.__isError.keyword",
"value": [
"true"
],
"operation": "=",
"condition": "and"
},
{
"condition": "and",
"name": "__tags.__serviceName",
"operation": "=~",
"value": [
".*04.*"
]
}
]
}