mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/storage: do not take into account series from the next day when match[]
filter is passed to /api/v1/status/tsdb
This commit is contained in:
parent
11f91532c5
commit
bac75ea8a2
1 changed files with 1 additions and 1 deletions
|
@ -1345,7 +1345,7 @@ func (is *indexSearch) getTSDBStatusWithFiltersForDate(tfss []*TagFilters, date
|
|||
if len(tfss) > 0 {
|
||||
tr := TimeRange{
|
||||
MinTimestamp: int64(date) * msecPerDay,
|
||||
MaxTimestamp: int64(date+1) * msecPerDay,
|
||||
MaxTimestamp: int64(date+1) * msecPerDay - 1,
|
||||
}
|
||||
metricIDs, err := is.searchMetricIDsInternal(tfss, tr, maxMetrics)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue