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
Users should be able to get histograms of values over time. Like this:
select histogram(value, 100) from response_times
group bytime(1h) wheretime> now() - 24h
That query would give you 24 different histograms for each hour where the bucket size of the histogram is 100 milliseconds (assuming that the value column is milliseconds). The response would look something like this:
Users should be able to get histograms of values over time. Like this:
That query would give you 24 different histograms for each hour where the bucket size of the histogram is 100 milliseconds (assuming that the value column is milliseconds). The response would look something like this:
So there are multiple points per 1 hour interval where each point represents a bucket in the histogram.
The text was updated successfully, but these errors were encountered: