]> arthur.barton.de Git - netdata.git/blob - conf.d/apps_groups.conf
Merge pull request #1756 from ktsaou/master
[netdata.git] / conf.d / apps_groups.conf
1 #
2 # apps.plugin process grouping
3 #
4 # The apps.plugin displays charts with information about the processes running.
5 # This config allows grouping processes together, so that several processes
6 # will be reported as one.
7 #
8 # Only groups in this file are reported. All other processes will be reported
9 # as 'other'.
10 #
11 # For each process given, its whole process tree will be grouped, not just
12 # the process matched. The plugin will include both parents and childs.
13 #
14 # The format is:
15 #
16 #       group: process1 process2 process3 ...
17 #
18 # Each group can be given multiple times, to add more processes to it.
19 #
20 # The process names are the ones returned by:
21 #
22 #  -  ps -e or /proc/PID/stat
23 #  -  in case of substring mode (see below): /proc/PID/cmdline
24 #
25 # To add process names with spaces, enclose them in quotes (single or double)
26 # example: 'Plex Media Serv' "my other process".
27 #
28 # Wildcard support:
29 # You can add an asterisk (*) at the beginning and/or the end of a process:
30 #
31 #  *name    suffix mode: will search for processes ending with 'name'
32 #           (/proc/PID/stat)
33 #
34 #   name*   prefix mode: will search for processes beginning with 'name'
35 #           (/proc/PID/stat)
36 #
37 #  *name*   substring mode: will search for 'name' in the whole command line
38 #           (/proc/PID/cmdline)
39 #
40 # If you enter even just one *name* (substring), apps.plugin will process
41 # /proc/PID/cmdline for all processes, just once (when they are first seen).
42 #
43 # To add processes with single quotes, enclose them in double quotes
44 # example: "process with this ' single quote"
45 #
46 # To add processes with double quotes, enclose them in single quotes:
47 # example: 'process with this " double quote'
48 #
49 # If a group or process name starts with a -, the dimension will be hidden
50 # (cpu chart only).
51 #
52 # If a process starts with a +, debugging will be enabled for it
53 # (debugging produces a lot of output - do not enable it in production systems)
54 #
55 # You can add any number of groups you like. Only the ones found running will
56 # affect the charts generated. However, producing charts with hundreds of
57 # dimensions may slow down your web browser.
58 #
59 # The order of the entries in this list is important: the first that matches
60 # a process is used, so put important ones at the top. Processes not matched
61 # by any row, will inherit it from their parents or children.
62 #
63 # The order also controls the order of the dimensions on the generated charts
64 # (although applications started after apps.plugin is started, will be appended
65 # to the existing list of dimensions the netdata daemon maintains).
66
67 # -----------------------------------------------------------------------------
68 # NETDATA processes accounting
69
70 # netdata main process
71 netdata: netdata
72
73 # netdata known plugins
74 # plugins not defined here will be accumulated in netdata, above
75 apps.plugin: apps.plugin
76 charts.d.plugin: *charts.d.plugin*
77 node.d.plugin: *node.d.plugin*
78 python.d.plugin: *python.d.plugin*
79 tc-qos-helper: *tc-qos-helper.sh*
80
81 # -----------------------------------------------------------------------------
82 # authentication/authorization related servers
83
84 auth: radius* openldap* ldap*
85 fail2ban: fail2ban*
86
87 # -----------------------------------------------------------------------------
88 # web/ftp servers
89
90 httpd: apache* httpd nginx* lighttpd
91 proxy: squid* c-icap squidGuard varnish*
92 php: php*
93 ftpd: proftpd in.tftpd vsftpd
94 uwsgi: uwsgi
95 unicorn: *unicorn*
96
97 # -----------------------------------------------------------------------------
98 # database servers
99
100 sql: mysqld* mariad* postgres* oracle_* ora_*
101 nosql: mongod redis* memcached
102
103 # -----------------------------------------------------------------------------
104 # email servers
105
106 email: dovecot imapd pop3d amavis* master zmstat* zmmailboxdmgr qmgr oqmgr
107
108 # -----------------------------------------------------------------------------
109 # network, routing, VPN
110
111 ppp: ppp*
112 vpn: openvpn pptp* cjdroute
113 wifi: hostapd wpa_supplicant
114 routing: ospfd* ospf6d* bgpd isisd ripd ripngd pimd ldpd zebra vtysh bird*
115
116 # -----------------------------------------------------------------------------
117 # high availability and balancers
118
119 camo: *camo*
120 balancer: ipvs_* haproxy
121 ha: corosync hs_logd ha_logd stonithd pacemakerd lrmd crmd
122
123 # -----------------------------------------------------------------------------
124 # telephony
125
126 pbx: asterisk safe_asterisk *vicidial*
127 sip: opensips* stund
128
129 # -----------------------------------------------------------------------------
130 # chat
131
132 chat: irssi *vines* *prosody* murmurd
133
134 # -----------------------------------------------------------------------------
135 # monitoring
136
137 logs: ulogd* syslog* rsyslog* logrotate systemd-journald
138 nms: snmpd vnstatd smokeping zabbix* monit munin* mon openhpid watchdog tailon nrpe
139 splunk: splunkd
140 azure: mdsd *waagent* *omiserver* *omiagent* hv_kvp_daemon hv_vss_daemon
141
142 # -----------------------------------------------------------------------------
143 # file systems and file servers
144
145 samba: smbd nmbd winbindd
146 nfs: rpcbind rpc.* nfs*
147 zfs: spl_* z_* txg_* zil_* arc_* l2arc*
148 btrfs: btrfs*
149 iscsi: iscsid iscsi_eh
150
151 # -----------------------------------------------------------------------------
152 # containers & virtual machines
153
154 containers: lxc* docker*
155 VMs: vbox* VBox* qemu*
156
157 # -----------------------------------------------------------------------------
158 # ssh servers and clients
159
160 ssh: ssh* scp
161
162 # -----------------------------------------------------------------------------
163 # print servers and clients
164
165 print: cups* lpd lpq
166
167 # -----------------------------------------------------------------------------
168 # time servers and clients
169
170 time: ntp* systemd-timesyncd
171
172 # -----------------------------------------------------------------------------
173 # dhcp servers and clients
174
175 dhcp: *dhcp*
176
177 # -----------------------------------------------------------------------------
178 # name servers and clients
179
180 named: named rncd dig
181
182 # -----------------------------------------------------------------------------
183 # installation / compilation / debugging
184
185 build: cc1 cc1plus as gcc* cppcheck ld make cmake automake autoconf autoreconf 
186 build: git gdb valgrind*
187
188 # -----------------------------------------------------------------------------
189 # antivirus
190
191 antivirus: clam* *clam
192
193 # -----------------------------------------------------------------------------
194 # torrent clients
195
196 torrents: *deluge* transmission* *SickBeard* *CouchPotato* *rtorrent*
197
198 # -----------------------------------------------------------------------------
199 # backup servers and clients
200
201 backup: rsync bacula*
202
203 # -----------------------------------------------------------------------------
204 # cron
205
206 cron: cron* atd anacron systemd-cron*
207
208 # -----------------------------------------------------------------------------
209 # UPS
210
211 ups: upsmon upsd */nut/*
212
213 # -----------------------------------------------------------------------------
214 # media players, servers, clients
215
216 media: mplayer vlc xine mediatomb omxplayer* kodi* xbmc* mediacenter eventlircd
217 media: mpd minidlnad mt-daapd avahi* Plex*
218
219 # -----------------------------------------------------------------------------
220 # X
221
222 X: X Xorg xinit lightdm xdm pulseaudio gkrellm xfwm4 xfdesktop xfce* Thunar
223 X: xfsettingsd xfconfd gnome-* gdm gconf* dconf* xfconf* *gvfs gvfs* kdm slim
224 X: evolution-* firefox chromium opera epiphany WebKit*
225
226 # -----------------------------------------------------------------------------
227 # Kernel / System
228
229 ksmd: ksmd
230
231 system: systemd* udisks* udevd* *udevd connmand ipv6_addrconf dbus-* rtkit*
232 system: inetd xinetd mdadm polkitd acpid uuidd packagekitd upowerd colord
233 system: accounts-daemon rngd haveged
234
235 kernel: kthreadd kauditd lockd khelper kdevtmpfs khungtaskd rpciod
236 kernel: fsnotify_mark kthrotld deferwq scsi_*
237
238 # -----------------------------------------------------------------------------
239 # other application servers
240
241 crsproxy: crsproxy
242 sidekiq: *sidekiq*
243 java: java
244 ipfs: ipfs