service map¶
GET /api/v1/tracing/service_map_v2
概要¶
トポロジ関係と統計データを含む
Query リクエストパラメータ¶
| パラメータ名 | 型 | 必須 | 説明 |
|---|---|---|---|
| workspaceUUID | string | Y | ワークスペースUUID |
| start | integer | Y | 開始時間(単位: ms) |
| end | integer | Y | 終了時間(単位: ms) |
| search | string | サービス名フィルタ |
|
| filters | string | タグフィルタ(検索および ES querydata インターフェースと同様) |
|
| isServiceSub | boolean | service_sub かどうか |
|
| serviceMapList | boolean | サービストポロジ呼び出し関係リストを表示するかどうか |
|
| showOnlyMatches | boolean | 現在の検索またはフィルタ条件に一致するサービスのみを表示するかどうか |
パラメータ補足説明¶
filters の例:
{
"tags": [
{
"name": "__tags.__isError.keyword",
"value": [
"true"
],
"operation": "=",
"condition": "and"
},
{
"condition": "and",
"name": "__tags.__serviceName",
"operation": "=~",
"value": [
".*04.*"
]
}
]
}