2016-03-02 15:29:19 +03:00
|
|
|
.. _quicklook:
|
|
|
|
|
|
|
|
Quick Look
|
|
|
|
==========
|
|
|
|
|
|
|
|
The ``quicklook`` plugin is only displayed on wide screen and proposes a
|
2024-01-28 12:42:20 +03:00
|
|
|
bar view for cpu, memory, swap and load (this list is configurable).
|
2016-03-02 15:29:19 +03:00
|
|
|
|
2019-11-24 19:40:02 +03:00
|
|
|
In the terminal interface, click on ``3`` to enable/disable it.
|
|
|
|
|
2016-03-02 15:29:19 +03:00
|
|
|
.. image:: ../_static/quicklook.png
|
|
|
|
|
|
|
|
If the per CPU mode is on (by clicking the ``1`` key):
|
|
|
|
|
|
|
|
.. image:: ../_static/quicklook-percpu.png
|
|
|
|
|
2019-04-08 15:39:18 +03:00
|
|
|
In the Curses/terminal interface, it is also possible to switch from bar to
|
2021-05-20 14:19:26 +03:00
|
|
|
sparkline using 'S' hot key or --sparkline command line option (need the
|
2019-04-18 10:34:02 +03:00
|
|
|
sparklines Python lib on your system). Please be aware that sparklines use
|
2021-06-19 09:03:37 +03:00
|
|
|
the Glances history and will not be available if the history is disabled
|
|
|
|
from the command line. For the moment sparkline is not available in
|
2022-10-03 16:53:24 +03:00
|
|
|
client/server mode (see issue ).
|
2019-04-08 15:39:18 +03:00
|
|
|
|
2019-04-18 10:34:02 +03:00
|
|
|
.. image:: ../_static/sparkline.png
|
2019-04-08 15:39:18 +03:00
|
|
|
|
2016-03-02 15:29:19 +03:00
|
|
|
.. note::
|
|
|
|
Limit values can be overwritten in the configuration file under
|
|
|
|
the ``[quicklook]`` section.
|
2019-08-12 11:09:19 +03:00
|
|
|
|
2024-01-28 12:42:20 +03:00
|
|
|
You can also configure the stats list and the bat character used in the
|
|
|
|
user interface.
|
2019-08-12 11:09:19 +03:00
|
|
|
|
|
|
|
.. code-block:: ini
|
|
|
|
|
|
|
|
[quicklook]
|
2024-01-28 12:42:20 +03:00
|
|
|
# Stats list (default is cpu,mem,load)
|
|
|
|
# Available stats are: cpu,mem,load,swap
|
|
|
|
list=cpu,mem,load
|
2019-08-12 11:09:19 +03:00
|
|
|
# Graphical percentage char used in the terminal user interface (default is |)
|
2024-01-28 12:42:20 +03:00
|
|
|
bar_char=|
|