-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgather.cfg.in
53 lines (38 loc) · 1.1 KB
/
gather.cfg.in
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
# $Id$ -*-perl-*-
# verbose mode
$verbose = 0;
# map file
$mapfile = @MAPFILE@;
# directory where collected data will be stored
$datadir = @DATADIR@;
# how old data in days are considered to be expired
$expiration = 30;
# if compression is used
$compression = 1;
# compression filter.
$compress = 'gzip -c';
# decompression filter
$uncompress = 'zcat';
# suffix that will be added to compressed files
$compsuffix = '.gz';
# run commands in parallel
$concurrent = 0;
# filter that will be used before storing (and compressing if it is turned on) sysutils output
$filter = '';
# time granularity: hour, min, sec
$granularity = 'min';
# period to diplay collected data
$period = '$';
# time format used when outputting data
$timefmt = ($granularity eq 'sec') ? '%Y-%m-%d/%H/%M/%S:' : '%Y-%m-%d/%H/%M:';
# lockfile to prevent run of next gather when previous is still running
# (empty string means we don't want to use locking)
$lockfile = '';
# Gnuplot settings
%gnuplot = (
'cmd' => 'gnuplot -p',
'term' => 'x11',
'yrange' => ':',
'style' => 'linespoints',
'options' => '',
);