ListFastQuery
更新时间:2024-09-11
描述
获取用户保存的快速查询列表。
请求
- 请求语法
GET /v1/fastquery HTTP/1.1
Host: <Endpoint>
Authorization: <Authorization String>
- 请求头域
除公共请求头域外,无其它特殊头域。
- 请求参数
参数名称 | 类型 | 是否必须 | 参数位置 | 描述 |
---|---|---|---|---|
project | String | No | Query | 指定日志组名称 |
logStoreName | String | No | Query | 指定日志集名称 |
namePattern | String | No | Query | 指定筛选名称的关键字 |
order | String | No | Query | 排序规则,desc为降序,asc为升序,默认为 desc |
orderBy | String | No | Query | 排序字段,默认为创建时间 |
pageNo | Int | No | Query | 起始页码,默认为 1 |
pageSize | Int | No | Query | 每页显示数据大小,默认为 10 |
响应
- 响应头域
除公共响应头域外,无其它特殊头域。
- 响应参数
参数名称 | 类型 | 描述 |
---|---|---|
order | String | 排序规则,desc为降序,asc为升序 |
orderBy | String | 排序字段 |
pageNo | Int | 起始页码 |
pageSize | Int | 每页显示数据大小 |
totalCount | Int | 总数目 |
result | List<FastQuery> | 返回的结果集 |
上表中的 result 数组中的每个 FastQuery 元素结构如下:
字段名称 | 类型 | 描述 |
---|---|---|
creationDateTime | DateTime | 快速查询创建的日期时间 |
lastModifiedTime | DateTime | 最后修改的日期时间 |
fastQueryName | String | 快速查询名称 |
logStoreName | String | 日志集名称 |
logStreamName | String | 日志流名称 |
query | String | 快速查询语句 |
description | String | 信息描述 |
错误码
除了通用的错误码,无其他特殊错误码返回。
示例
- 请求示例
GET /v1/fastquery?namePattern=demo&order=asc&orderBy=creationDateTime&pageNo=1&pageSize=10 HTTP/1.1
Host: bls-log.bj.baidubce.com
Authorization:bce-auth-v1/18717522d39411e9b721df098b0b908c/2019-09-10T07:00:20Z/1800/content-type;host;x-bce-date;x-bce-request-id/6a7cb6c9ac7ec156c805e55e7d0bcfc443b47feee97cf099c1c0d93a0b4c8304
- 响应示例
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"order": "asc",
"orderBy": "creationDateTime",
"pageNo": 1,
"pageSize": 10,
"result": [
{
"creationDateTime": "2019-09-10T15:30:20Z",
"lastModifiedTime": "2019-09-10T15:30:20Z",
"fastQueryName": "demo1",
"description": "fetch all result",
"query": "select * where @timestamp >= 1573104162010",
"project": "default",
"logStoreName": "test1",
"logStreamName": "my-stream1"
},
{
"creationDateTime": "2019-09-10T15:30:20Z",
"lastModifiedTime": "2019-09-10T15:30:20Z",
"fastQueryName": "demo2",
"description": "this is my first fast query demo",
"query": "select * where @timestamp >= 1573104162010",
"project": "default",
"logStoreName": "test2",
"logStreamName": "my-stream2"
}
],
"totalCount": 2
}