2016-03-02 15:29:19 +03:00
|
|
|
.. _fs:
|
|
|
|
|
|
|
|
File System
|
|
|
|
===========
|
|
|
|
|
|
|
|
.. image:: ../_static/fs.png
|
|
|
|
|
|
|
|
Glances displays the used and total file system disk space. The unit is
|
|
|
|
adapted dynamically.
|
|
|
|
|
2020-06-18 20:25:36 +03:00
|
|
|
Alerts are set for `user disk space usage <https://psutil.readthedocs.io/en/latest/index.html?highlight=disk%20usage#psutil.disk_usage>`_.
|
2016-03-02 15:29:19 +03:00
|
|
|
|
|
|
|
Legend:
|
|
|
|
|
2020-06-18 20:25:36 +03:00
|
|
|
===================== ============
|
|
|
|
User disk space usage Status
|
|
|
|
===================== ============
|
|
|
|
``<50%`` ``OK``
|
|
|
|
``>50%`` ``CAREFUL``
|
|
|
|
``>70%`` ``WARNING``
|
|
|
|
``>90%`` ``CRITICAL``
|
|
|
|
===================== ============
|
2016-03-02 15:29:19 +03:00
|
|
|
|
|
|
|
.. note::
|
|
|
|
Limit values can be overwritten in the configuration file under
|
|
|
|
the ``[filesystem]`` section.
|
|
|
|
|
|
|
|
By default, the plugin only displays physical devices (hard disks, USB
|
|
|
|
keys). To allow other file system types, you have to enable them in the
|
2020-08-22 13:26:05 +03:00
|
|
|
configuration file. For example, if you want to allow the ``shm`` file
|
2016-03-02 15:29:19 +03:00
|
|
|
system:
|
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
[fs]
|
2020-08-22 13:26:05 +03:00
|
|
|
allow=shm
|
2016-03-02 15:29:19 +03:00
|
|
|
|
|
|
|
Also, you can hide mount points as well (in the following ``/boot``):
|
|
|
|
|
2020-02-27 15:56:06 +03:00
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
2020-06-07 18:14:51 +03:00
|
|
|
[fs]
|
|
|
|
hide=/boot.*
|
|
|
|
|
2020-02-27 15:56:06 +03:00
|
|
|
Filtering can also be done on device name (Glances 3.1.4 or higher):
|
|
|
|
|
2016-03-02 15:29:19 +03:00
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
[fs]
|
2020-02-27 15:56:06 +03:00
|
|
|
hide=/dev/sdb2
|
2016-03-02 15:29:19 +03:00
|
|
|
|
|
|
|
RAID
|
|
|
|
----
|
|
|
|
|
|
|
|
*Availability: Linux*
|
|
|
|
|
|
|
|
Thanks to the `pymdstat`_ library, if a ``RAID`` controller is detected
|
2018-07-07 19:45:42 +03:00
|
|
|
on your system, its status will be displayed as well:
|
2016-03-02 15:29:19 +03:00
|
|
|
|
|
|
|
.. image:: ../_static/raid.png
|
|
|
|
|
|
|
|
.. _pymdstat: https://github.com/nicolargo/pymdstat
|