You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Will return a single series with 5 data points containing the time, the value, and the host.
If you do a query like this:
select bottom(value), time, host from cpu
wheretime> now() - 24h
group bytime(1h)
You'd get a single series with 24 total data points. That's 1 data point in each time bucket (but it would have the point original timestamps), the value, and the host.
If you want to do a query where you get the bottom N series, look at issue #1819
The text was updated successfully, but these errors were encountered:
Users should be able to do a query like this:
Will return a single series with 5 data points containing the time, the value, and the host.
If you do a query like this:
You'd get a single series with 24 total data points. That's 1 data point in each time bucket (but it would have the point original timestamps), the value, and the host.
If you want to do a query where you get the bottom N series, look at issue #1819
The text was updated successfully, but these errors were encountered: