Skip to content

Commit

Permalink
added documentation about cpu information
Browse files Browse the repository at this point in the history
  • Loading branch information
chaudum committed Aug 12, 2015
1 parent c5ea9a4 commit 4bf095c
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions docs/sql/system.txt
Original file line number Diff line number Diff line change
Expand Up @@ -407,10 +407,23 @@ os
| | of the OS probe. | |
+---------------------------+----------------------------------------------+-------------+

The cpu information values are cached for 1s. They might differ from the actual values
at query time. Use the probe timestamp to get the time of the collect. When analyzing the
cpu usage over time, always use ``os['probe_timestamp']`` to calculate the time difference
between 2 probes.
The cpu information values are cached for 1s. They might differ from the actual
values at query time. Use the probe timestamp to get the time of the collect.
When analyzing the cpu usage over time, always use ``os['probe_timestamp']`` to
calculate the time difference between 2 probes.

os_info
-------

+-------------------------------------+----------------------------------------------+-------------+
| Column Name | Description | Return Type |
+=====================================+==============================================+=============+
| ``os_info`` | Operating system information | ``Object`` |
+-------------------------------------+----------------------------------------------+-------------+
| ``os_info['available_processors']`` | Number of processors that are available in | ``Integer`` |
| | the JVM. This is usually equal to the number | |
| | of cores of the CPU. | |
+-------------------------------------+----------------------------------------------+-------------+

network
-------
Expand Down

0 comments on commit 4bf095c

Please sign in to comment.