Handle end time on timeseries. (#7438) (#7466)

This commit is contained in:
Nicolò Maio 2023-05-29 15:20:11 +02:00 committed by GitHub
parent c09c3ab09c
commit fcb564b7c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 153 additions and 144 deletions

View file

@ -47,8 +47,9 @@ end
--! @param tags_filter a list of filter tags.
--! @param wildcard_tags the remaining tags of the schema which are considered wildcard.
--! @param start_time time filter. Only timeseries updated after start_time will be returned.
--! @param end_time time filter. Only timeseries updated before end_time will be returned.
--! @return a (possibly empty) list of tags values for the matching timeseries on success, nil for non-existing series.
function driver:listSeries(schema, tags_filter, wildcard_tags, start_time)
function driver:listSeries(schema, tags_filter, wildcard_tags, start_time, end_time)
end
--! @brief Get top k items information.