Update doc

pull/517/merge
Nicolargo 2015-01-30 22:18:21 +01:00
parent 928026c8c1
commit 7b41105c1a
1 changed files with 10 additions and 6 deletions

View File

@ -715,12 +715,16 @@ Glances can trigger actions on events.
By action, we mean all shell command line. For example, if you want to execute the foo.py script if the last 5 minutes load are critical then add the action line to the Glances configuration file: By action, we mean all shell command line. For example, if you want to execute the foo.py script if the last 5 minutes load are critical then add the action line to the Glances configuration file:
.. code-block::
[load] [load]
critical=5.0 critical=5.0
critical_action=python /path/to/foo.py critical_action=python /path/to/foo.py
All the stats are available in the command line through the use of the {{mustache}} syntax. Another example to create a log file containing used vs total disk space if a space trigger warning is reached: All the stats are available in the command line through the use of the {{mustache}} syntax. Another example to create a log file containing used vs total disk space if a space trigger warning is reached:
.. code-block::
[fs] [fs]
warning=70 warning=70
warning_action=echo {{mnt_point}} {{used}}/{{size}} > /tmp/fs.alert warning_action=echo {{mnt_point}} {{used}}/{{size}} > /tmp/fs.alert