获取自定义过滤器列表
接口描述
GET
/monitor/ts/data/v1/subscriptions/:subscription_name/resourceGroups/:resource_group_name/zones/:zone/telemetryStations/:telemetry_station_name/logStream/products/:product_name/customFilters
获取自定义过滤器列表
请求头(Request Header)
请求参数(Request Parameters)
名称 | 类型 | 必须 | 位置 | 默认值 | 取值范围 | 描述 |
---|---|---|---|---|---|---|
subscription_name | string | 是 | path | - | - | 订阅 |
resource_group_name | string | 是 | path | - | - | 资源组 |
zone | string | 是 | path | - | - | 可用区 |
telemetry_station_name | string | 是 | path | - | - | 监控空间 |
product_name | string | 是 | path | - | - | 产品名 |
请求体(Request Body)
请求示例(Request Example)
curl -XGET 'https://monitor.sensecoreapi.tech/monitor/ts/data/v1/subscriptions/224bae0c-a98f-41f5-b5d3-9f54aa98455f/resourceGroups/default/zones/cn-sh-01z/telemetryStations/ts-user-45a3a9e8-eae7-4b42-906b-27242d2c3ee4/logStream/products/product.lepton-acp-new/customFilters' \
-H 'Content-Type: application/json'
响应(Response)
名称 | 类型 | 描述 |
---|---|---|
custom_filters | []Filter | 筛选条件 |
其中,Filter
如下:
名称 | 类型 | 描述 |
---|---|---|
key | string | 筛选键,例如gpu |
values | []string | 筛选值,例如[0,1,2] |
响应示例(Response Example)
{
"custom_filters": [
{
"key": "Attributes.k8s.pod.name",
"value": "Secondary load"
},
{
"key": "Attributes.k8s.job.name",
"value": "Primary load"
},
{
"key": "Attributes.k8s.container.name",
"value": "Tertiary load"
}
]
}