I’m using InfluxCloud 1.7 and the ‘SHOW TAG VALUES CARDINALITY’ command.
I’m adding a where clause to only count measurements that happen after a given date. But the time filter only seems to work when filtering for measurements happening before a given date.
SHOW TAG VALUES CARDINALITY FROM ... WHERE time > '2019-07-01T18:30:00Z'
will return no results whereas
SHOW TAG VALUES CARDINALITY FROM ... WHERE time < '2019-08-017T18:30:00Z'
returns results.
Is it expected?