0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-15 10:04:15 +00:00
netdata_netdata/collectors/idlejitter.plugin
Chris Akritidis 415f57c5bf
Ga ()
* Added GA tags to markdowns

* Add GA tags to mds
2018-12-07 11:30:04 +01:00
..
Makefile.am modularized all source code () 2018-10-15 23:16:42 +03:00
plugin_idlejitter.c modularized all source code () 2018-10-15 23:16:42 +03:00
plugin_idlejitter.h modularized all source code () 2018-10-15 23:16:42 +03:00
README.md Ga () 2018-12-07 11:30:04 +01:00

idlejitter.plugin

It works like this:

A thread is spawned that requests to sleep for 20000 microseconds (20ms). When the system wakes it up, it measures how many microseconds have passed. The difference between the requested and the actual duration of the sleep, is the idle jitter. This is done at most 50 times per second, to ensure we have a good average.

This number is useful:

  1. in real-time environments, when the CPU jitter can affect the quality of the service (like VoIP media gateways).
  2. in cloud infrastructure, at can pause the VM or container for a small duration to perform operations at the host.

analytics