summaryrefslogtreecommitdiffstats
path: root/docs/quickstart.rst
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2024-04-24 19:47:57 +0200
committernicolargo <nicolas@nicolargo.com>2024-04-24 19:47:57 +0200
commit0df1371513ec4452e71d75a70f6fa7058f4277c0 (patch)
tree5c14cb3db1de1cbbdf0f1a4fc2dca8d397fdb7a0 /docs/quickstart.rst
parentc2fe2de35509ef7683204e3549bdcc983d5d934a (diff)
--stdout plugin.attr is not compliant with plugins returning list of dicts #2446
Diffstat (limited to 'docs/quickstart.rst')
-rw-r--r--docs/quickstart.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/quickstart.rst b/docs/quickstart.rst
index 70b047a9..9bdb5075 100644
--- a/docs/quickstart.rst
+++ b/docs/quickstart.rst
@@ -28,16 +28,18 @@ It is also possible to display RAW (Python) stats directly to stdout using:
.. code-block:: console
- $ glances --stdout cpu.user,mem.used,load
+ $ glances --stdout cpu.user,mem.used,load,network.wlp2s0.bytes_all
cpu.user: 30.7
mem.used: 3278204928
load: {'cpucore': 4, 'min1': 0.21, 'min5': 0.4, 'min15': 0.27}
+ network.wlp2s0.bytes_all: 13479
cpu.user: 3.4
mem.used: 3275251712
load: {'cpucore': 4, 'min1': 0.19, 'min5': 0.39, 'min15': 0.27}
+ network.wlp2s0.bytes_all: 12868
...
-or in a CSV format thanks to the stdout-csv option:
+or in a CSV format thanks to the stdout-csv option (key not supported in this mode):
.. code-block:: console