add missing comments
[bwmon.git] / notifications.sample.cfg
blobc01bf0c9b0a0151d891c32f7e214ef2bc266e05b
2 # bwmon - configuration file for bandwidth notifications
4 # Specify thresholds at which the aggregator will issue notifications
6 # [Application Name]
7 # process_filter=<regex>
8 # notification_threshold=<bandwidth in kB/s>
9 # interval=<average timestamp in s>
10 # notification_command=<cmd>
12 # process_filter          regular expressing for the commandline of the process
13 #                         that should be monitored
14 # (in|out)_threshold      bandwidth in kB/s that the process is allowed to
15 #                         use. Exceeding this threshold will trigger a
16 #                         notification
17 # interval                bandwidth usage is calculated as average within the
18 #                         given interval. If this average exceeds the
19 #                         threshold, a notification is triggered (default 1)
20 # notification_command    command that is executed when a notification is
21 #                         triggered. Additionally a message is written to
22 #                         stderr. This can be empty
25 [BitTorrent]
26 process_filter=transmission
27 in_threshold=50
28 out_threshold=0
30 [SSH]
31 process_filter=ssh
32 in_threshold=100
33 out_threshold=100
34 notification_command=mail -s "SSH exceeding bandwidth limit" root
37 [wget]
38 process_filter=wget
39 in_threshold=50
40 interval=5
41 notification_command=true