-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1 ping per tick #12
Comments
I don't think we can consider this until post roll-ups. Without roll-ups, it seems it'd just make generating our current Dashboards take 10x as long |
maybe. keep in mind the amount of points due to increased granularity would be about the same as the decreased points due to no longer having min/max/avg/.. metrics. not sure how that translates into graphite performance. we would also have to rethink our ping graphs for this. and a histogram-style plot would probably make more sense. |
even on our default 3 hour dashboards, won't we still have to average datapoints together (and process every datapoint) in order to avail ourselves of maxdatapoints? at 1 second resolution anything more than say ~16 minutes (ie. about 1000 pixels), depending on your screen rez, of raw data is going to get consolidated. Every datapoint is going to get processed to do the consoliation, right? I guess I'm confused why we wouldn't have to average metrics. |
Also.. to clarify.. When you say histogram-style plot do you mean like a heatmap (where the x axis is still time?) Or, do you mean histogram as in showing the distribution of values over the time range, with the x axis being values and the y axis being the frequency of how often those values occur over the time range? ? |
yes i meant histogram-over-time aka heatmap. I think that's the ultimate best viz and the sweet spot of data resolution here is roughly about 5-10x more points than you have pixels, I think. (that way you can draw buckets of 10 pix wide that each represent 50 to 100 points) anyway, that is unfortunately quite a ways off, and yes your numbers seem right given our current graph widgets. i never said we wouldn't have to average (or aggregate metrics), not sure where you got that from, i said this makes it more elegant to compute the summary stats across arbitrary intervals (this includes graphite aggregations). the harder problem of course is how do you roll this data up so that you can still do accurate heatmaps on aggregated data. I think OmniTI may have mentioned somewhere how they do this, i'm sure there's some papers on this topic. anyway i was probably not clear enough in the original comment, i'm not suggesting implementing this straight away, but it is a thing that i thought had to be documented in the new repo so we don't forget about it. |
After your clarifications I guess I agree 100% with everything you're saying. |
at the summit in March we decided that instead of our current approach:
we can better just do:
this way we have more accurate, fine grained info, and we can still get min/max/.., in fact this makes it more elegant to compute the summary stats across arbitrary intervals.
The text was updated successfully, but these errors were encountered: