glances/conf/glances.conf

821 lines
24 KiB
Plaintext
Raw Normal View History

##############################################################################
# Globals Glances parameters
##############################################################################
[global]
# Stats refresh rate (default is a minimum of 2 seconds)
# Can be overwrite by the -t <sec> option
# It is also possible to overwrite it in each plugin sections
refresh=2
2016-12-22 14:00:44 +03:00
# Does Glances should check if a newer version is available on PyPI ?
check_update=true
2016-06-04 09:37:27 +03:00
# History size (maximum number of values)
2022-11-12 19:15:44 +03:00
# Default is 1200 values (~1h with the default refresh rate)
history_size=1200
2022-12-12 16:20:09 +03:00
# Set the way Glances should display the date (default is %Y-%m-%d %H:%M:%S %Z)
#strftime_format="%Y-%m-%d %H:%M:%S %Z"
# Define external directory for loading additional plugins
# The layout follows the glances standard for plugin definitions
#plugin_dir=/home/user/dev/plugins
##############################################################################
# User interface
##############################################################################
[outputs]
2024-06-01 11:38:40 +03:00
# Options for all UIs
#--------------------
# Separator in the Curses and WebUI interface (between top and others plugins)
separator=True
# Set the the Curses and WebUI interface left menu plugin list (comma-separated)
#left_menu=network,wifi,connections,ports,diskio,fs,irq,folders,raid,smart,sensors,now
# Limit the number of processes to display (in the WebUI)
2023-12-16 15:51:54 +03:00
max_processes_display=25
2024-06-01 11:38:40 +03:00
# Options for WebUI
#------------------
# Set URL prefix for the WebUI and the API
# Example: url_prefix=/glances/ => http://localhost/glances/
# Note: The final / is mandatory
# Default is no prefix (/)
#url_prefix=/glances/
# Set root path for WebUI statics files
# Why ? On Debian system, WebUI statics files are not provided.
# You can download it in a specific folder
# thanks to https://github.com/nicolargo/glances/issues/2021
# then configure this folder with the webui_root_path key
# Default is folder where glances_restfull_api.py is hosted
#webui_root_path=
2024-06-01 11:38:40 +03:00
# CORS options
# Comma separated list of origins that should be permitted to make cross-origin requests.
# Default is *
#cors_origins=*
# Indicate that cookies should be supported for cross-origin requests.
# Default is True
#cors_credentials=True
# Comma separated list of HTTP methods that should be allowed for cross-origin requests.
# Default is *
#cors_methods=*
# Comma separated list of HTTP request headers that should be supported for cross-origin requests.
# Default is *
#cors_headers=*
##############################################################################
2024-06-01 11:38:40 +03:00
# Plugins
##############################################################################
2015-02-03 19:07:16 +03:00
[quicklook]
# Set to true to disable a plugin
# Note: you can also disable it from the command line (see --disable-plugin <plugin_name>)
2019-10-07 14:01:18 +03:00
disable=False
# Stats list (default is cpu,mem,load)
# Available stats are: cpu,mem,load,swap
list=cpu,mem,load
# Graphical bar char used in the terminal user interface (default is |)
bar_char=|
2015-11-21 12:53:49 +03:00
# Define CPU, MEM and SWAP thresholds in %
2015-02-03 19:07:16 +03:00
cpu_careful=50
cpu_warning=70
cpu_critical=90
mem_careful=50
mem_warning=70
mem_critical=90
swap_careful=50
swap_warning=70
swap_critical=90
# Source: http://blog.scoutapp.com/articles/2009/07/31/understanding-load-averages
# With 1 CPU core, the load should be lower than 1.00 ~ 100%
load_careful=70
load_warning=100
load_critical=500
2015-02-03 19:07:16 +03:00
[system]
# This plugin display the first line in the Glances UI with:
# Hostname / Operating system name / Architecture information
# Set to true to disable a plugin
disable=False
# Default refresh rate is 60 seconds
#refresh=60
# System information to display (a string where {key} will be replaced by the value)
2024-03-09 18:37:19 +03:00
# Available information are: hostname, os_name, os_version, os_arch, linux_distro, platform
#system_info_msg= | My {os_name} system |
[cpu]
disable=False
# See https://scoutapm.com/blog/slow_server_flow_chart
#
# I/O wait percentage should be lower than 1/# (# = Logical CPU cores)
# Leave commented to just use the default config:
# Careful=1/#*100-20% / Warning=1/#*100-10% / Critical=1/#*100
#iowait_careful=30
#iowait_warning=40
#iowait_critical=50
#
# Total % is 100 - idle
total_careful=65
total_warning=75
total_critical=85
total_log=True
#
# Default values if not defined: 50/70/90 (except for iowait)
2014-02-27 00:31:36 +04:00
user_careful=50
user_warning=70
user_critical=90
user_log=False
#user_critical_action=echo {{user}} {{value}} {{max}} > /tmp/cpu.alert
#
2014-02-27 00:31:36 +04:00
system_careful=50
system_warning=70
system_critical=90
system_log=False
#
2014-02-27 00:31:36 +04:00
steal_careful=50
steal_warning=70
steal_critical=90
#steal_log=True
#
# Context switch limit (core / second)
# Leave commented to just use the default config critical is 50000*(Logical CPU cores)
#ctx_switches_careful=10000
#ctx_switches_warning=12000
#ctx_switches_critical=14000
2014-02-23 01:46:34 +04:00
[percpu]
disable=False
# Define the maximum number of CPU displayed at a time
# If the number of CPU is higher than the one configured in max_cpu_display then:
# - display top 'max_cpu_display' (sorted by CPU consumption)
# - a last line will be added with the mean of all other CPUs
max_cpu_display=4
2015-11-21 12:53:49 +03:00
# Define CPU thresholds in %
2014-01-04 16:17:00 +04:00
# Default values if not defined: 50/70/90
2014-02-27 00:31:36 +04:00
user_careful=50
user_warning=70
user_critical=90
iowait_careful=50
iowait_warning=70
iowait_critical=90
system_careful=50
system_warning=70
system_critical=90
[gpu]
disable=False
# Default processor values if not defined: 50/70/90
proc_careful=50
proc_warning=70
proc_critical=90
# Default memory values if not defined: 50/70/90
mem_careful=50
mem_warning=70
mem_critical=90
2024-04-07 16:32:24 +03:00
# Temperature
temperature_careful=60
temperature_warning=70
temperature_critical=80
2014-02-23 01:46:34 +04:00
[mem]
disable=False
2015-11-21 12:53:49 +03:00
# Define RAM thresholds in %
2014-01-04 16:17:00 +04:00
# Default values if not defined: 50/70/90
careful=50
#careful_action_repeat=echo {{percent}} >> /tmp/memory.alert
warning=70
critical=90
2014-02-23 01:46:34 +04:00
[memswap]
disable=False
2015-11-21 12:53:49 +03:00
# Define SWAP thresholds in %
2014-01-04 16:17:00 +04:00
# Default values if not defined: 50/70/90
careful=50
warning=70
critical=90
[load]
disable=False
# Define LOAD thresholds
# Value * number of cores
# Default values if not defined: 0.7/1.0/5.0 per number of cores
# Source: http://blog.scoutapp.com/articles/2009/07/31/understanding-load-averages
# http://www.linuxjournal.com/article/9001
careful=0.7
warning=1.0
critical=5.0
#log=False
[network]
disable=False
# Default bitrate thresholds in % of the network interface speed
# Default values if not defined: 70/80/90
rx_careful=70
rx_warning=80
rx_critical=90
tx_careful=70
tx_warning=80
tx_critical=90
# Define the list of hidden network interfaces (comma-separated regexp)
2024-02-10 19:19:24 +03:00
hide=docker.*,lo
# Define the list of wireless network interfaces to be show (comma-separated)
#show=docker.*
# Automatically hide interface not up (default is False)
#hide_no_up=True
# Automatically hide interface with no IP address (default is False)
#hide_no_ip=True
# It is possible to overwrite the bitrate thresholds per interface
# WLAN 0 Default limits (in bits per second aka bps) for interface bitrate
#wlan0_rx_careful=4000000
#wlan0_rx_warning=5000000
#wlan0_rx_critical=6000000
#wlan0_rx_log=True
#wlan0_tx_careful=700000
#wlan0_tx_warning=900000
#wlan0_tx_critical=1000000
#wlan0_tx_log=True
# Alias for network interface name
#alias=wlp2s0:WIFI
2014-02-23 01:46:34 +04:00
[ip]
# Disable display of private IP address
disable=False
# Configure the online service where public IP address information will be downloaded
# - public_disabled: Disable public IP address information (set to True for offline platform)
# - public_refresh_interval: Refresh interval between to calls to the online service
# - public_api: URL of the API (the API should return an JSON object)
# - public_username: Login for the online service (if needed)
# - public_password: Password for the online service (if needed)
# - public_field: Field name of the public IP address in onlibe service JSON message
# - public_template: Template to build the public message
#
# Example for IPLeak service:
# public_api=https://ipv4.ipleak.net/json/
# public_field=ip
# public_template={ip} {continent_name}/{country_name}/{city_name}
#
public_disabled=True
2022-08-07 18:43:11 +03:00
public_refresh_interval=300
public_api=https://ipv4.ipleak.net/json/
#public_username=<myname>
#public_password=<mysecret>
public_field=ip
public_template={continent_name}/{country_name}/{city_name}
[connections]
# Display additional information about TCP connections
# This plugin is disabled by default because it consumes lots of CPU
disable=True
2019-10-07 14:01:18 +03:00
# nf_conntrack thresholds in %
nf_conntrack_percent_careful=70
nf_conntrack_percent_warning=80
nf_conntrack_percent_critical=90
2016-10-21 18:06:03 +03:00
[wifi]
disable=False
2024-04-28 12:16:27 +03:00
# Define SIGNAL thresholds in dBm (lower is better...)
# Based on: http://serverfault.com/questions/501025/industry-standard-for-minimum-wifi-signal-strength
careful=-65
warning=-75
critical=-85
2016-10-21 12:15:02 +03:00
2017-04-17 15:41:48 +03:00
[diskio]
disable=False
# Define the list of hidden disks (comma-separated regexp)
#hide=sda2,sda5,loop.*
hide=loop.*,/dev/loop.*
# Define the list of disks to be show (comma-separated)
#show=sda.*
# Alias for sda1 and sdb1
#alias=sda1:SystemDisk,sdb1:DataDisk
2014-02-23 01:46:34 +04:00
[fs]
disable=False
# Define the list of file system to hide (comma-separated regexp)
2024-04-27 11:54:16 +03:00
hide=/boot.*,.*/snap.*
# Define the list of file system to show (comma-separated regexp)
#show=/,/srv
2015-11-21 12:53:49 +03:00
# Define filesystem space thresholds in %
2014-02-23 01:46:34 +04:00
# Default values if not defined: 50/70/90
2015-01-03 01:23:47 +03:00
# It is also possible to define per mount point value
# Example: /_careful=40
2014-02-23 01:46:34 +04:00
careful=50
warning=70
critical=90
# Allow additional file system types (comma-separated FS type)
2020-08-22 13:26:05 +03:00
#allow=shm
# Alias for root file system
2024-02-17 14:04:27 +03:00
#alias=/:Root
2014-02-23 01:46:34 +04:00
[irq]
# Documentation: https://glances.readthedocs.io/en/latest/aoa/irq.html
# This plugin is disabled by default
2023-10-07 11:18:39 +03:00
disable=True
[folders]
# Documentation: https://glances.readthedocs.io/en/latest/aoa/folders.html
disable=False
2015-11-21 12:53:49 +03:00
# Define a folder list to monitor
# The list is composed of items (list_#nb <= 10)
# An item is defined by:
# * path: absolute path
# * careful: optional careful threshold (in MB)
# * warning: optional warning threshold (in MB)
# * critical: optional critical threshold (in MB)
# * refresh: interval in second between two refreshes
#folder_1_path=/tmp
#folder_1_careful=2500
#folder_1_warning=3000
#folder_1_critical=3500
#folder_1_refresh=60
#folder_2_path=/home/nicolargo/Videos
#folder_2_warning=17000
#folder_2_critical=20000
#folder_3_path=/nonexisting
#folder_4_path=/root
2015-11-21 12:53:49 +03:00
[cloud]
# Documentation: https://glances.readthedocs.io/en/latest/aoa/cloud.html
# This plugin is disabled by default
disable=True
[raid]
# Documentation: https://glances.readthedocs.io/en/latest/aoa/raid.html
# This plugin is disabled by default
2024-05-18 11:58:39 +03:00
disable=True
[smart]
# Documentation: https://glances.readthedocs.io/en/latest/aoa/smart.html
# This plugin is disabled by default
disable=True
[hddtemp]
disable=False
# Define hddtemp server IP and port (default is 127.0.0.1 and 7634 (TCP))
host=127.0.0.1
port=7634
2014-05-26 14:56:40 +04:00
[sensors]
# Documentation: https://glances.readthedocs.io/en/latest/aoa/sensors.html
disable=False
# Set the refresh multiplicator for the sensors
# By default refresh every Glances refresh * 3 (increase to reduce CPU consumption)
#refresh=3
2024-04-27 17:28:38 +03:00
# Hide some sensors (comma separated list of regexp)
hide=unknown.*
# Show only the following sensors (comma separated list of regexp)
#show=CPU.*
2015-11-21 12:53:49 +03:00
# Sensors core thresholds (in Celsius...)
# Default values are grabbed from the system
2024-04-07 16:32:24 +03:00
#temperature_core_careful=45
#temperature_core_warning=65
#temperature_core_critical=80
2015-11-21 12:53:49 +03:00
# Temperatures threshold in °C for hddtemp
2014-01-04 16:17:00 +04:00
# Default values if not defined: 45/52/60
2014-05-26 14:56:40 +04:00
temperature_hdd_careful=45
temperature_hdd_warning=52
temperature_hdd_critical=60
2015-11-21 12:53:49 +03:00
# Battery threshold in %
battery_careful=80
battery_warning=90
battery_critical=95
# Fan speed threashold in RPM
#fan_speed_careful=100
# Sensors alias
#alias=core 0:CPU Core 0,core 1:CPU Core 1
[processcount]
disable=False
# If you want to change the refresh rate of the processing list, please uncomment:
#refresh=10
2014-02-23 01:46:34 +04:00
[processlist]
disable=False
# Sort key: if not defined, the sort is automatically done by Glances (recommended)
# Should be one of the following:
# cpu_percent, memory_percent, io_counters, name, cpu_times, username
#sort_key=memory_percent
2015-11-21 12:53:49 +03:00
# Define CPU/MEM (per process) thresholds in %
2014-01-04 16:17:00 +04:00
# Default values if not defined: 50/70/90
2013-01-10 19:11:21 +04:00
cpu_careful=50
cpu_warning=70
cpu_critical=90
mem_careful=50
mem_warning=70
mem_critical=90
#
# Nice priorities range from -20 to 19.
2023-12-10 22:10:34 +03:00
# Configure nice levels using a comma-separated list.
#
# Nice: Example 1, non-zero is warning (default behavior)
nice_warning=-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19
#
# Nice: Example 2, low priority processes escalate from careful to critical
#nice_careful=1,2,3,4,5,6,7,8,9
#nice_warning=10,11,12,13,14
#nice_critical=15,16,17,18,19
#
# Define the list of processes to export using:
2024-04-06 18:46:42 +03:00
# a comma-separated list of Glances filter
#export=.*firefox.*,pid:1234
[ports]
disable=False
# Interval in second between two scans
# Ports scanner plugin configuration
refresh=30
2016-12-22 14:00:44 +03:00
# Set the default timeout (in second) for a scan (can be overwritten in the scan list)
timeout=3
# If port_default_gateway is True, add the default gateway on top of the scan list
2016-06-18 19:49:25 +03:00
port_default_gateway=True
#
# Define the scan list (1 < x < 255)
# port_x_host (name or IP) is mandatory
# port_x_port (TCP port number) is optional (if not set, use ICMP)
# port_x_description is optional (if not set, define to host:port)
# port_x_timeout is optional and overwrite the default timeout value
# port_x_rtt_warning is optional and defines the warning threshold in ms
#
#port_1_host=192.168.0.1
#port_1_port=80
#port_1_description=Home Box
#port_1_timeout=1
#port_2_host=www.free.fr
#port_2_description=My ISP
#port_3_host=www.google.com
#port_3_description=Internet ICMP
#port_3_rtt_warning=1000
#port_4_description=Internet Web
#port_4_host=www.google.com
#port_4_port=80
#port_4_rtt_warning=1000
#
# Define Web (URL) monitoring list (1 < x < 255)
# web_x_url is the URL to monitor (example: http://my.site.com/folder)
# web_x_description is optional (if not set, define to URL)
# web_x_timeout is optional and overwrite the default timeout value
# web_x_rtt_warning is optional and defines the warning respond time in ms (approximately)
#
#web_1_url=https://blog.nicolargo.com
#web_1_description=My Blog
#web_1_rtt_warning=3000
#web_2_url=https://github.com
#web_3_url=http://www.google.fr
#web_3_description=Google Fr
#web_4_url=https://blog.nicolargo.com/nonexist
#web_4_description=Intranet
[containers]
disable=False
2023-12-10 22:10:34 +03:00
# Only show specific containers (comma-separated list of container name or regular expression)
2020-11-15 11:50:53 +03:00
# Comment this line to display all containers (default configuration)
; show=telegraf
2023-12-10 22:10:34 +03:00
# Hide some containers (comma-separated list of container name or regular expression)
2020-11-15 11:50:53 +03:00
# Comment this line to display all containers (default configuration)
; hide=telegraf
2020-09-12 12:01:48 +03:00
# Define the maximum docker size name (default is 20 chars)
max_name_size=20
; cpu_careful=50
# Thresholds for CPU and MEM (in %)
; cpu_warning=70
; cpu_critical=90
; mem_careful=20
; mem_warning=50
; mem_critical=70
#
# Per container thresholds
; containername_cpu_careful=10
; containername_cpu_warning=20
; containername_cpu_critical=30
#
# By default, Glances only display running containers
# Set the following key to True to display all containers
all=False
# Define Podman sock
; podman_sock=unix:///run/user/1000/podman/podman.sock
2021-06-05 10:06:10 +03:00
[amps]
# AMPs configuration are defined in the bottom of this file
disable=False
[alert]
2023-10-07 10:58:12 +03:00
disable=False
# Maximum number of events to display (default is 10 events)
;max_events=10
# Minimum duration for an event to be taken into account (default is 6 seconds)
;min_duration=6
# Minimum time between two events of the same type (default is 6 seconds)
# This is used to avoid too many alerts for the same event
# Events will be merged
;min_interval=6
##############################################################################
# Client/server
##############################################################################
2014-12-16 19:34:00 +03:00
2016-04-14 20:40:36 +03:00
[serverlist]
# Define the static servers list
2014-12-16 19:34:00 +03:00
#server_1_name=localhost
#server_1_alias=My local PC
#server_1_port=61209
#server_2_name=localhost
#server_2_port=61235
#server_3_name=192.168.0.17
#server_3_alias=Another PC on my network
#server_3_port=61209
#server_4_name=pasbon
#server_4_port=61237
2016-04-14 20:40:36 +03:00
[passwords]
# Define the passwords list related to the [serverlist] section
# Syntax: host=password
# Where: host is the hostname
# password is the clear password
# Additionally (and optionally) a default password could be defined
#localhost=abc
#default=defaultpassword
#
# Define the path of the local '.pwd' file (default is system one)
#local_password_path=~/.config/glances
##############################################################################
# Exports
##############################################################################
[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=0
# See following configuration keys definitions in the Pygal lib documentation
# http://pygal.org/en/stable/documentation/index.html
width=800
height=600
style=DarkStyle
[influxdb]
# !!!
# Will be DEPRECATED in future release.
# Please have a look on the new influxdb2 export module (compatible with InfluxDB 1.8.x and 2.x)
# !!!
# Configuration for the --export influxdb option
2015-11-21 12:53:49 +03:00
# https://influxdb.com/
host=localhost
port=8086
protocol=http
user=root
password=root
db=glances
# Prefix will be added for all measurement name
# Ex: prefix=foo
# => foo.cpu
# => foo.mem
# You can also use dynamic values
#prefix=foo
# Following tags will be added for all measurements
# You can also use dynamic values.
# Note: hostname and name (for process) are always added as a tag
#tags=foo:bar,spam:eggs,domain:`domainname`
[influxdb2]
# Configuration for the --export influxdb2 option
# https://influxdb.com/
host=localhost
port=8086
protocol=http
org=nicolargo
bucket=glances
token=EjFUTWe8U-MIseEAkaVIgVnej_TrnbdvEcRkaB1imstW7gapSqy6_6-8XD-yd51V0zUUpDy-kAdVD1purDLuxA==
# Set the interval between two exports (in seconds)
# If the interval is set to 0, the Glances refresh time is used (default behavor)
#interval=0
# Prefix will be added for all measurement name
# Ex: prefix=foo
# => foo.cpu
# => foo.mem
# You can also use dynamic values
#prefix=foo
# Following tags will be added for all measurements
# You can also use dynamic values.
# Note: hostname and name (for process) are always added as a tag
#tags=foo:bar,spam:eggs,domain:`domainname`
[cassandra]
# Configuration for the --export cassandra option
# Also works for the ScyllaDB
# https://influxdb.com/ or http://www.scylladb.com/
host=localhost
port=9042
protocol_version=3
keyspace=glances
replication_factor=2
# If not define, table name is set to host key
table=localhost
# If not define, username and password will not be used
#username=cassandra
#password=password
[opentsdb]
# Configuration for the --export opentsdb option
# http://opentsdb.net/
host=localhost
port=4242
#prefix=glances
#tags=foo:bar,spam:eggs
2014-12-31 00:33:54 +03:00
[statsd]
# Configuration for the --export statsd option
# https://github.com/etsy/statsd
2014-12-31 00:33:54 +03:00
host=localhost
port=8125
#prefix=glances
[elasticsearch]
# Configuration for the --export elasticsearch option
2021-02-06 14:01:31 +03:00
# Data are available via the ES RESTful API. ex: URL/<index>/cpu
# https://www.elastic.co
scheme=http
host=localhost
port=9200
index=glances
2016-03-26 00:08:30 +03:00
[riemann]
# Configuration for the --export riemann option
2016-03-26 00:08:30 +03:00
# http://riemann.io
host=localhost
port=5555
[rabbitmq]
# Configuration for the --export rabbitmq option
host=localhost
port=5672
user=guest
password=guest
queue=glances_queue
#protocol=amqps
2016-03-26 00:08:30 +03:00
[mqtt]
# Configuration for the --export mqtt option
host=localhost
# Overwrite device name in the topic
#devicename=localhost
port=8883
tls=false
user=guest
password=guest
topic=glances
2021-02-06 14:01:31 +03:00
topic_structure=per-metric
callback_api_version=2
2016-09-24 18:02:33 +03:00
[couchdb]
# Configuration for the --export couchdb option
2016-09-24 18:02:33 +03:00
# https://www.couchdb.org
host=localhost
port=5984
db=glances
user=admin
password=admin
2016-09-24 18:02:33 +03:00
[mongodb]
# Configuration for the --export mongodb option
# https://www.mongodb.com
host=localhost
port=27017
db=glances
user=root
password=example
2017-03-25 20:02:42 +03:00
[kafka]
# Configuration for the --export kafka option
2017-03-25 20:02:42 +03:00
# http://kafka.apache.org/
host=localhost
port=9092
topic=glances
#compression=gzip
# Tags will be added for all events
#tags=foo:bar,spam:eggs
# You can also use dynamic values
#tags=hostname:`hostname -f`
2017-03-25 20:02:42 +03:00
2016-10-15 16:24:01 +03:00
[zeromq]
# Configuration for the --export zeromq option
2016-10-15 16:24:01 +03:00
# http://www.zeromq.org
# Use * to bind on all interfaces
host=*
2016-10-15 16:24:01 +03:00
port=5678
# Glances envelopes the stats in a publish message with two frames:
# - First frame containing the following prefix (STRING)
# - Second frame with the Glances plugin name (STRING)
# - Third frame with the Glances plugin stats (JSON)
prefix=G
[prometheus]
# Configuration for the --export prometheus option
# https://prometheus.io
# Create a Prometheus exporter listening on localhost:9091 (default configuration)
# Metric are exporter using the following name:
# <prefix>_<plugin>_<stats>{labelkey:labelvalue}
# Note: You should add this exporter to your Prometheus server configuration:
# scrape_configs:
# - job_name: 'glances_exporter'
# scrape_interval: 5s
# static_configs:
# - targets: ['localhost:9091']
#
# Labels will be added for all measurements (default is src:glances)
# labels=foo:bar,spam:eggs
# You can also use dynamic values
# labels=system:`uname -s`
#
host=localhost
port=9091
#prefix=glances
labels=src:glances
[restful]
2019-10-13 12:18:00 +03:00
# Configuration for the --export restful option
# Example, export to http://localhost:6789/
host=localhost
port=6789
protocol=http
path=/
2021-05-09 19:17:14 +03:00
[graphite]
# Configuration for the --export graphite option
# https://graphiteapp.org/
host=localhost
2021-05-11 09:46:15 +03:00
port=2003
2021-05-09 19:17:14 +03:00
# Prefix will be added for all measurement name
prefix=glances
# System name added between the prefix and the stats
# By default, system_name = FQDN
#system_name=mycomputer
2021-05-09 19:17:14 +03:00
##############################################################################
2016-04-14 20:40:36 +03:00
# AMPS
2016-05-01 00:29:05 +03:00
# * enable: Enable (true) or disable (false) the AMP
# * regex: Regular expression to filter the process(es)
# * refresh: The AMP is executed every refresh seconds
# * one_line: (optional) Force (if true) the AMP to be displayed in one line
2016-12-22 14:00:44 +03:00
# * command: (optional) command to execute when the process is detected (thk to the regex)
2016-05-01 00:29:05 +03:00
# * 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
# * <foo>: Others variables can be defined and used in the AMP script
##############################################################################
2016-04-14 20:40:36 +03:00
[amp_dropbox]
2016-05-01 00:29:05 +03:00
# Use the default AMP (no dedicated AMP Python script)
# Check if the Dropbox daemon is running
# Every 3 seconds, display the 'dropbox status' command line
2016-05-02 11:32:46 +03:00
enable=false
regex=.*dropbox.*
refresh=3
one_line=false
command=dropbox status
countmin=1
2016-05-02 11:32:46 +03:00
[amp_python]
# Use the default AMP (no dedicated AMP Python script)
# Monitor all the Python scripts
# Alert if more than 20 Python scripts are running
2016-05-02 11:32:46 +03:00
enable=false
regex=.*python.*
2016-05-01 00:29:05 +03:00
refresh=3
countmax=20
2016-05-01 00:29:05 +03:00
2019-05-31 17:35:24 +03:00
[amp_conntrack]
# Use comma separated for multiple commands (no space around the comma)
# If the regex key is not defined, the AMP will be executed every refresh second
# and the process count will not be displayed (countmin and countmax will be ignore)
2019-05-31 17:35:24 +03:00
enable=false
refresh=30
one_line=false
command=sysctl net.netfilter.nf_conntrack_count;sysctl net.netfilter.nf_conntrack_max
2016-04-25 19:03:05 +03:00
[amp_nginx]
# Use the NGinx AMP
2016-04-14 20:40:36 +03:00
# Nginx status page should be enable (https://easyengine.io/tutorials/nginx/status-page/)
2017-03-28 23:44:28 +03:00
enable=false
2016-04-14 20:40:36 +03:00
regex=\/usr\/sbin\/nginx
refresh=60
2016-04-15 16:05:32 +03:00
one_line=false
2016-04-14 20:40:36 +03:00
status_url=http://localhost/nginx_status
2016-04-25 19:03:05 +03:00
[amp_systemd]
# Use the Systemd AMP
enable=false
2016-10-22 15:06:49 +03:00
regex=\/lib\/systemd\/systemd
refresh=30
2016-04-27 22:35:19 +03:00
one_line=true
2016-10-22 15:06:49 +03:00
systemctl_cmd=/bin/systemctl --plain
2016-04-27 22:35:19 +03:00
[amp_systemv]
# Use the Systemv AMP
enable=false
2016-04-27 22:35:19 +03:00
regex=\/sbin\/init
refresh=30
2016-04-25 19:03:05 +03:00
one_line=true
2016-04-27 22:35:19 +03:00
service_cmd=/usr/bin/service --status-all