-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
support fill(null) #713
Comments
I don't think there's a way to represent this in the JSON result. The null is really just the absence of a timestamped value. It's up to you charting library to represent that instead of just drawing a line between two other points. The best thing to do is to use bars or stacked bars and you'll see what you're expecting. There are other reasons stacked bars are superior: http://www.leancrew.com/all-this/2011/11/i-hate-stacked-area-charts/ I don't think there's anything actionable for us so I'm closing this out, but let me know if you have a use case I'm not thinking of. |
You could just send Given a query like
The points at 1404378390, 1404378400 and 1404378410 are missing. If I add
What I want is to use
This is what Graphite does for missing buckets, and it makes it so that the client doesn't have to do missing-value detection on its own. You're already supporting |
I guess you're right :) |
+1 this will also be nice for the graphite-influxdb backend. Presumably influx can fill gaps faster than a retroactive (python) loop. + no need to reimplement the same thing in multiple clients. Thanks! |
It would be useful if
fill
could also support takingnull
as a value, so that a client would know that data is missing.The text was updated successfully, but these errors were encountered: