-
Notifications
You must be signed in to change notification settings - Fork 22
I cannot verify the data for shift_2_days Vs shift_1_days in Influxdb #17
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
Comments
Hard to tell from the small Grafana image, but it looks like the time intervals being graphed aren't on whole hour increments like your manual query. Like that point selected looks like it's at 1:30am (?), perhaps that's the issue. |
Hi, |
Well, what I'm saying is that your graph seems to be taking the max over different time periods than your query. The graph has max info for periods like 11:30-1:30, 1:30-3:30, etc. Where you raw query for comparison has periods like 10:00-12:00, 12:00-2:00, etc. So you can't really compare the data as they aren't pulling the max values over the same periods. |
Yeah, i do not know why it is taking the max over different time periods, when essentially the queries are same. |
Hi,
Cannot find Data values i see in Grafana in Influxdb.
I see following values in Grafana:
Max CPU Time shift_2_days: 57
Max CPU Time shift_1_days: 29
Below snip for Grafana shows Max Percent_Processor_Time for shift_2_days Vs shift_1_days.
Querying in Influxdb:
SELECT max("Percent_Processor_Time") FROM "cpu" WHERE time > now() - 1d group by time(2h)
SELECT max("Percent_Processor_Time") FROM "cpu" WHERE time > now() - 2d group by time(2h)
It must be something simple i am missing.
Thanks
The text was updated successfully, but these errors were encountered: