I have this query that works.
select count(method) from root.org.logs.ags.ABC.device01 where method <> 'job' group by ([now()-1W,now()),1H) However if I introduce a wildcard all the results are zero. There is no error but all values are zero. Is this expected? If so is there any way to filter across all timeseries? select count(method) from root.org.logs.ags.*.device01 where method <> 'job' group by ([now()-1W,now()),1H) Thanks Trevor
