-
Notifications
You must be signed in to change notification settings - Fork 8.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
7.16 event loop delay value incorrect #116778
Comments
Pinging @elastic/kibana-core (Team:Core) |
After digging into this it looks like the "bug" is related to the units in which we store the data: Node's native
while Monitoring assumes it to be in milliseconds. We have a few options here:
Or OR convert data from We convert from @rudolf WDYT? |
Nanoseconds aren't human-friendly. It's hard to say whether |
Is there a list of default units Kibana uses somewhere? If not, maybe it might be a good idea to document that, both for development guidance and for end-users. |
I don't know to be honest, but I think there is no one-fits-all solution. The units are domain-specific: for performance metrics, we can use |
Can you test what happens on 7.15 or 7.14? I'm not sure when this regression was introduced, but it used to show the correct value. I would guess that we always used to store If this is the case, I think we should continue to store these values in |
@mshustov There is a comment in the
@rudolf I spun up a 7.14 deployment on cloud and the order of magnitudes comparison between Event loop Delay and Client Response Times shows that the delays are about 2 orders of magnitude less than the response times For details of how this bug was introduced, see #118447 |
An idle 7.16 cluster with monitoring shows an event loop delay of 3 hours (11005301 ms)! This cannot be accurate because response times are still at most 1000 ms.
This appears to be a bug in the event loop delay collector not the monitoring app because the same data is present in the
monitoring-*
indices.The text was updated successfully, but these errors were encountered: