提交 d12a7305 编写于 作者: N Nicolas Hennion

Merge pull request #267 from nicolargo/processfilter

Add monitored processes list
......@@ -6,7 +6,7 @@ This manual describes *Glances* version 1.7.
Copyright © 2012-2013 Nicolas Hennion <nicolas@nicolargo.com>
April 2013
August 2013
.. contents:: Table of Contents
......@@ -68,7 +68,7 @@ Default binding address is ``0.0.0.0`` (Glances will listen on all the network i
In client/server mode, limits are set by the server side.
The version 1.6 introduces a optional password to access to the server ``-P password``.
You can also set a password to access to the server ``-P password``.
Command reference
=================
......@@ -76,9 +76,9 @@ Command reference
Command-line options
--------------------
-b Display network rate in Byte per second
-B IP Bind server to the given IP or hostname
-c IP Connect to a Glances server
-b Display network rate in Bytes per second (default: Bits per second)
-B IP Bind server to the given IP or hostname (IPv4 or IPv6)
-c IP Connect to a Glances server by IP or hostname (IPv4 or IPv6)
-C file Path to the configuration file (default: {/usr/local,}/etc/glances/glances.conf)
-d Disable disk I/O module
-e Enable the sensors module (Linux-only)
......@@ -89,9 +89,9 @@ Command-line options
-o output Define additional output (available: HTML or CSV)
-p PORT Define the client or server TCP port (default: 61209)
-P password Define a client/server password
-r Do not list processes
-r Do not list processes (for low CPU consumption)
-s Run Glances in server mode
-t sec Set the refresh time in seconds (default: 3)
-t sec Set the refresh time in seconds (default: 3 seconds)
-v Display the version and exit
-y Enable the hddtemp module (needs running hddtemp daemon)
-z Do not use the bold color attribute
......@@ -99,7 +99,7 @@ Command-line options
Interactive commands
--------------------
The following commands are supported while in Glances:
The following commands (key pressed) are supported while in Glances:
``a``
......@@ -146,9 +146,9 @@ The following commands are supported while in Glances:
Configuration
=============
No configuration is needed to use Glances.
No configuration file is mandatory to use Glances.
Furthermore, starting from release 1.6, it has been introduced a configuration file for setup limits.
Furthermore a configuration file is needed for setup limits and monitored processes list.
By default, the configuration file is under:
......
......@@ -74,3 +74,26 @@ cpu_critical=90
mem_careful=50
mem_warning=70
mem_critical=90
[monitor]
# Define the list of processes to monitor
# *** This section is optionnal ***
# The list is composed of item (list_#nb <= 10)
# An item is defined:
# * description: Description of the processes (max 16 chars)
# * regex: regular expression of the processes to monitor
# * command: (optional) full path to shell command/script for extended stat
# Use with caution. Should return a single line string.
# * countmin: (optional) minimal number of processes
# A warning will be displayed if number of process < count
# * countmax: (optional) maximum number of processes
# A warning will be displayed if number of process > count
#list_1_description=Redis server
#list_1_regex=.*redis-server.*
#list_1_command=echo "Additional stats"
#list_2_description=Python programs
#list_2_regex=.*python.*
#list_2_countmin=1
#list_2_countmax=8
#list_3_description=Famous Xeyes
#list_3_regex=.*xeyes.*
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册