It seems the "tags" part of a query is completely ignored since the two following queries return the exact same data
SELECT sys.cpu{host=ironman} BETWEEN 1 AND 50000;SELECT sys.cpu BETWEEN 1 AND 50000;
It is even possible to put anything within the tags brackets:
SELECT sys.cpu{"anything goes"} BETWEEN 1 AND 50000;
It seems the "tags" part of a query is completely ignored since the two following queries return the exact same data
SELECT sys.cpu{host=ironman} BETWEEN 1 AND 50000;
SELECT sys.cpu BETWEEN 1 AND 50000;
It is even possible to put anything within the tags brackets:SELECT sys.cpu{"anything goes"} BETWEEN 1 AND 50000;