-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
from-until selection discrepancy existing series vs generated series #2269
Comments
I can definitely check the code, all I'm asking is if there is a valid and known reason for this to be designed this way. |
I'm not aware of any reasoning, looks like it's just "because of historical reasons". |
Is this setting at all configurable? It seems to be the case that existing metric queries includes the until param but excludes the from param. I think that both ends of the from/until query should be inclusive, or at least configurable. |
Think this is a duplicate graphite-project/whisper#230 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Considering the following query using a generated timeWalk series with granularity 5 minutes from February 1st to Match 1st:
i get the following output:
in this case the first timestamp
1517464800
which is2018-02-01 00:00:00
.now let's consider an actual existing metric with granularity 5 minutes, same time range as above:
i get the following output:
The first timestamp is
1517465100
which is2018-02-01 00:05:00
is not what i thought I would get (2018-02-01 00:00:00).Is there a reason why the query doesn't include the midnight point in the first case?
The text was updated successfully, but these errors were encountered: