glances/docs/gw/graph.rst
2018-04-02 14:07:23 +02:00

35 lines
998 B
ReStructuredText

.. _graph:
Graph
======
You can generate dynamic graphs (SVG format) in a target folder. The generation
starts every time the 'g' key is pressed in the CLI interface.
.. code-block:: ini
[graph]
# Configuration for the --export graph option
# Set the path where the graph (.svg files) will be created
# Can be overwrite by the --graph-path command line option
path=/tmp
# It is possible to generate the graphs automatically by setting the
# generate_every to a non zero value corresponding to the seconds between
# two generation. Set it to 0 to disable graph auto generation.
generate_every=60
# See followings configuration keys definitions in the Pygal lib documentation
# http://pygal.org/en/stable/documentation/index.html
width=800
height=600
style=DarkStyle
and run Glances with:
.. code-block:: console
$ glances --export graph --export-graph-path /tmp
Example of output (load graph)
.. image:: ../_static/graph-load.svg