调用QueryTimeseriesMeta接口检索时间线元数据。
请求消息结构
message QueryTimeseriesMetaRequest {
required string table_name = 1;
optional MetaQueryCondition condition = 2;
optional bool get_total_hit = 3;
optional bytes token = 4;
optional int32 limit = 5;
}
名称 | 类型 | 是否必选 | 描述 |
table_name | string | 是 | 时序表名。 |
condition | 否 | 时间线检索条件。 | |
get_total_hit | bool | 否 | 是否获取符合条件总行数。 |
token | bytes | 否 | 用于继续获取剩余数据的标识。 |
limit | int32 | 否 | 最多返回的行数限制。 |
响应消息结构
message QueryTimeseriesMetaResponse {
repeated TimeseriesMeta timeseries_metas = 1;
optional int64 total_hit = 2;
optional bytes next_token = 3;
}
名称 | 类型 | 描述 |
timeseries_metas | 时间线元数据列表。 | |
total_hit | int64 | 符合条件总行数。 |
next_token | bytes | 用于获取剩余数据的标识。 |
使用SDK
您可以使用如下语言的SDK检索时间线。