-
Notifications
You must be signed in to change notification settings - Fork 465
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
IoT Hub Strange drops in Workbook #1761
Comments
@bqstony, at what frequency do you have the device set to emit metrics? The default is 5min. There was a recent fix for the graphs in the 'Host' tab to address the value always dropping to zero at the end. See #1753. For other situations where you may see the graph reporting zero... The Hub device details workbook uses a 5min interval by default in the underlying queries when chunking up the data to generate a time series for visualization (starting from the beginning of your selected time range). That value can be modified in the 'Settings' tab. If no data was reported within a given interval (5 min by default) then the graphs will report 0. That is likely what you're seeing. But to be sure you can query the InsightsMetrics table from the Logs section of your Hub to see if something was reported for a given metric during a given time period. |
@bqstony try this query. It should list the N largest time differences between successively recorded samples for CPU usage. This should help us highlight if there are gaps and when they occurred. let N = 5;
InsightsMetrics
| where TimeGenerated between (ago(2d) .. now())
and Name == "edgeAgent_used_cpu_percent"
and Tags has "host"
and Tags matches regex ".quantile.:.0.9[^9]"
| extend device = extractjson("$.edge_device", Tags, typeof(string))
| order by TimeGenerated, device
| extend diff = TimeGenerated - next(TimeGenerated)
| top-nested N of TimeGenerated by gap=max(diff), top-nested 1 of device by Ignored=max(1)
| project device, gap, TimeGenerated
| order by device, TimeGenerated, gap; |
@micahl here is the result for the time range we discused above |
Hi I see some stranges drops in Workbook of my IoT Hub
@micahl you told me of some new ux polish, i think since the update is this behavior?!?
See 31.01
When i Zoom in this range
I can see this drops on all charts, somethimes at the same thime, somthimes not 🤔
I am not shure, is this now the real behavior, because of missing data or is it now wrong.
The text was updated successfully, but these errors were encountered: