-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.php
106 lines (92 loc) · 1.74 KB
/
config.php
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php # vim: set filetype=php fdm=marker sw=4 ts=4 et :
/*
*
* Copy me to config.php and edit me.
*
*/
/* Database configuration */
#$db_config = array(
# "servername"=> "localhost",
# "username" => "root",
# "password" => "",
# "database" => "perfwatcher"
#);
/**
*
* Directory where Collectd write RRD file
*
*/
$rrds_path = "/var/lib/collectd";
/**
*
* Directory where Collectd write notification through notify_file plugin
*
*/
# $notification_path = "/var/lib/collectd/_notification";
/**
*
* Path to rrdtool binary
*
*/
# $rrdtool = '/usr/bin/rrdtool';
/**
*
* rrdcached socket (if used)
*
*/
# $rrdcached = "/var/run/rrdcached/rrdcached.sock";
/**
*
* Path to Collectd unix socket (see unixsock plugin)
*
*/
# $collectd_socket = '/var/run/collectd-unixsock';
/**
*
* Hostname used by aggregator. If not set, hostname from posix_uname() is used
*
*/
# $aggregator_hostname = 'my_custom_hostname';
/**
*
* Custom widget.
* Have a look at the wiki to sea how to create custom widget
*
*/
# $widgets[] = 'custom_widget';
/**
*
* Peuplator plugin.
* Have a look at the wiki to see how to create plugin to fill folder with you CMDB content
*
*/
# $peuplator_plugins[] = 'folder_filling_my_cmdb';
/**
*
* Extra javascript file
* Add here all javascript you want to add to the web interface
*
*/
# $extra_jsfile[] = 'js/custom_plugin_view.js';
/**
*
* Top jsonRPC server
* Default value http://127.0.0.1:8080/
*
*/
# $jsonrpc_topps_path = '/var/lib/collectd/top';
/**
*
* Top jsonRPC server
* Default value http://127.0.0.1:8080/
*
*/
# $jsonrpc_topps_server = 'http://127.0.0.1:8080/';
/**
*
* Top jsonRPC http proxy
* Default value null
*
*/
# $jsonrpc_topps_httpproxy = 'http://10.0.0.1:3128/';
?>