列出可用于查询操作日志的操作过滤器
接口描述
GET
/monitor/ts/data/v1/subscriptions/:subscription_name/resourceGroups/:resource_group_name/zones/:zone/telemetryStations/:telemetry_station_name/operationLog/products/:product_name/operationFilters
列出可用于查询操作日志的操作过滤器
请求头(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/operationLog/products/product.quark-acs/operationFilters' \
-H 'Content-Type: application/json'
响应(Response)
名称 | 类型 | 描述 |
---|---|---|
operation_filters | []Filter | 筛选条件 |
其中,Filter
如下:
名称 | 类型 | 描述 |
---|---|---|
key | string | 筛选键,例如gpu |
values | []string | 筛选值,例如[0,1,2] |
响应示例(Response Example)
{
"operation_filters": [
{
"key": "Attributes.action.request.user.id",
"value": "操作人ID"
},
{
"key": "Attributes.action.desc",
"value": "操作名称"
}
]
}