查询日志实时流过滤器
接口描述
GET
/monitor/ts/data/v1/subscriptions/:subscription_name/resourceGroups/:resource_group_name/zones/:zone/telemetryStations/:telemetry_station_name/logLivestream/filters
查询日志实时流过滤器
请求头(Request Header)
请求参数(Request Parameters)
名称 | 类型 | 必须 | 位置 | 默认值 | 取值范围 | 描述 |
---|---|---|---|---|---|---|
subscription_name | string | 是 | path | - | - | 订阅 |
resource_group_name | string | 是 | path | - | - | 资源组 |
zone | string | 是 | path | - | - | 可用区 |
telemetry_station_name | string | 是 | path | - | - | 监控空间 |
请求体(Request Body)
名称 | 类型 | 描述 |
---|---|---|
resource_type | string | 资源类型 |
resource_id | string | 资源ID |
filters | []Filter | 过滤器 |
其中,Filter
如下:
名称 | 类型 | 描述 |
---|---|---|
key | string | 筛选键,例如gpu |
values | []string | 筛选值,例如[0,1,2] |
请求示例(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-a95a77a3-961f-43fa-9577-d5c8a2cb0149/logLivestream/filters' \
-H 'Content-Type: application/json'
响应(Response)
名称 | 类型 | 描述 |
---|---|---|
filters | []Filter | 筛选条件 |
其中,Filter
如下:
名称 | 类型 | 描述 |
---|---|---|
key | string | 筛选键,例如gpu |
values | []string | 筛选值,例如[0,1,2] |
响应示例(Response Example)
{
"filters": [
{
"key": "label_acp_lepton_sensetime_com_job_name",
"values": []
},
{
"key": "gpu",
"values": []
},
{
"key": "GPU_I_ID",
"values": []
},
{
"key": "label_acp_lepton_sensetime_com_cci_name",
"values": []
},
{
"key": "exported_pod",
"values": []
}
]
}