summaryrefslogtreecommitdiffstats
path: root/docs/aoa/network.rst
blob: 2c5bd71937abc6777e7c55176170a28bbccbc4aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
.. _network:

Network
=======

.. image:: ../_static/network.png

Glances displays the network interface bit rate. The unit is adapted
dynamically (bit/s, kbit/s, Mbit/s, etc).

If the interface speed is detected (not on all systems), the defaults
thresholds are applied (70% for careful, 80% warning and 90% critical).
It is possible to define this percents thresholds from the configuration
file. It is also possible to define per interface bit rate thresholds.
In this case thresholds values are define in bps.

Additionally, you can define:

- a list of network interfaces to hide
- per-interface limit values
- aliases for interface name

The configuration should be done in the ``[network]`` section of the
Glances configuration file.

For example, if you want to hide the loopback interface (lo) and all the
virtual docker interface (docker0, docker1, ...):

.. code-block:: ini

    [network]
    # Default bitrate thresholds in % of the network interface speed
    # Default values if not defined: 70/80/90
    rx_careful=70
    rx_warning=80
    rx_critical=90
    tx_careful=70
    tx_warning=80
    tx_critical=90
    # Define the list of hidden network interfaces (comma-separated regexp)
    hide=docker.*,lo
    # WLAN 0 alias
    wlan0_alias=Wireless IF
    # It is possible to overwrite the bitrate thresholds per interface
    # WLAN 0 Default limits (in bits per second aka bps) for interface bitrate
    wlan0_rx_careful=4000000
    wlan0_rx_warning=5000000
    wlan0_rx_critical=6000000
    wlan0_rx_log=True
    wlan0_tx_careful=700000
    wlan0_tx_warning=900000
    wlan0_tx_critical=1000000
    wlan0_tx_log=True