mirror of https://github.com/nicolargo/glances.git
Update doc and conf file
This commit is contained in:
parent
abf64ffde3
commit
1d11513af6
|
|
@ -510,7 +510,7 @@ port=9091
|
|||
labels=src:glances
|
||||
|
||||
[restful]
|
||||
# Configuration for the --export RESTful option
|
||||
# Configuration for the --export restful option
|
||||
# Example, export to http://localhost:6789/
|
||||
host=localhost
|
||||
port=6789
|
||||
|
|
|
|||
|
|
@ -12,6 +12,33 @@ the ``RAM``:
|
|||
|
||||
.. image:: ../_static/mem-wide.png
|
||||
|
||||
Stats description:
|
||||
|
||||
- **percent**: the percentage usage calculated as (total-available)/total*100.
|
||||
- **total**: total physical memory available.
|
||||
- **used**: memory used, calculated differently depending on the platform and
|
||||
designed for informational purposes only.
|
||||
- **free**: memory not being used at all (zeroed) that is readily available;
|
||||
note that this doesn’t reflect the actual memory available (use ‘available’
|
||||
instead).
|
||||
- **active**: (UNIX): memory currently in use or very recently used, and so it
|
||||
is in RAM.
|
||||
- **inactive**: (UNIX): memory that is marked as not used.
|
||||
- **buffers**: (Linux, BSD): cache for things like file system metadata.
|
||||
- **cached**: (Linux, BSD): cache for various things.
|
||||
|
||||
Additional stats available in through the API:
|
||||
|
||||
- **available**: the actual amount of available memory that can be given
|
||||
instantly to processes that request more memory in bytes; this is calculated
|
||||
by summing different memory values depending on the platform (e.g. free +
|
||||
buffers + cached on Linux) and it is supposed to be used to monitor actual
|
||||
memory usage in a cross platform fashion.
|
||||
- **wired**: (BSD, macOS): memory that is marked to always stay in RAM. It is
|
||||
never moved to disk.
|
||||
- **shared**: (BSD): memory that may be simultaneously accessed by multiple
|
||||
processes.
|
||||
|
||||
A character is also displayed just after the MEM header and shows the
|
||||
trend value:
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "GLANCES" "1" "Oct 12, 2019" "3.1.3" "Glances"
|
||||
.TH "GLANCES" "1" "Oct 13, 2019" "3.1.4_BETA" "Glances"
|
||||
.SH NAME
|
||||
glances \- An eye on your system
|
||||
.
|
||||
|
|
|
|||
Loading…
Reference in New Issue