-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.ini
More file actions
65 lines (52 loc) · 2.29 KB
/
Copy pathconfig.example.ini
File metadata and controls
65 lines (52 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
; Navdoon sample configuration
;
; Configurations is standard INI format, and the navdoon section is applicable.
;
; Configuration directives are the same as the arguments passed to
; program, without the dashes.
; If a directive is passed as arguments, overrides the one in the config
; file.
[navdoon]
; set log level: DEBUG | INFO | WARN | ERROR | FATAL | CRITICAL
; log-level = WARN
; file path to save log messages
; log-file = /var/log/navdoon.log
; send logs to standard error, so it can be piped to another program
; log-stderr = true
; send logs syslog server
; log-syslog = true
; specify where syslog is receving logs. A path to a UNIX socket, or
; host:port to send syslog UDP requests
; syslog-socket = /tmp/syslog.sock | localhost:514
; interval (in seconds) between flushing metrics to backends
; flush-interval = 1
; If should flush metrics to standard output, so it can be piped to another
; program.
; flush-stdout = true
; Comma separated list of addresses to flush to Graphite (Carbon format).
; Each address can be a host (to use default port) or host:port
; flush-graphite = localhost:2003, 10.10.10.1:4000, carbon.localdomain
;
; Pipe separated list of files to flush to (in Carbon format).
; flush-file = file1.txt|/tmp/stats.txt
; Pipe separated list of files to flush to (in CSV format).
; flush-file-csv = file1.csv|/tmp/stats.csv
;
; List of local addresses (interface:ports) to receive metrics over UDP
; If host is not specified, by default 127.0.0.1 is assumed, if port is
; not specified by default 8125 is assumed.
; collect-udp = 0.0.0.0:8125, 10.10.10.234, :7777
; List of local addresses (interface:ports) to receive metrics over TCP
; If host is not specified, by default 127.0.0.1 is assumed, if port is
; not specified by default 8125 is assumed.
; collect-tcp = 0.0.0.0:8125, 10.10.10.234, :7777
; Number of threads started by each collector to receive data.
; If this amount is not enough (there are more concurrent connections
; than this value, new threads are automatically started to handle
; each new connection. when the load drops, extra threads will exit.
; Note: Applies to TCP collectors only
; collector-threads = 4
; Maximum number of threads allowed to run concurrently by each collector
; to receive data.
; Note: Applies to TCP collectors only
; --collector-threads-limit = 128