-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php.default
81 lines (67 loc) · 1.49 KB
/
config.php.default
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
<?php
$config = array();
$config['checks'] = array();
$config['checks']['cpu'] = array(
'type' => 'CPU_Load',
'config' => array(
'maxCPU' => 3.0
),
'label' => 'CPU Load'
);
$config['checks']['disk'] = array(
'type' => 'Disk_Usage',
'config' => array(
'threshold' => '85%',
'volume' => '/'
),
'label' => 'Disk Usage'
);
$config['checks']['memory'] = array(
'type' => 'Memory',
'config' => array(
'threshold' => '25%'
),
'label' => 'Memory'
);
/*
$config['checks']['db'] = array(
'type' => 'MySQL',
'config' => array(
'method' => 'socket',
//'server' => 'localhost',
//'port' => '3306',
'username' => 'itsallgood',
'password' => 'YOUR_PASSWORD',
'database' => 'itsallgood'
),
'label' => 'MySQL'
);
*/
/*
$config['checks']['smtp'] = array(
'type' => 'SMTP_Ping',
'config' => array(
'hostname' => 'mail.yourdomain.com',
'port' => '25',
'timeout' => '15'
),
'label' => 'SMTP Server'
);
*/
/*
$config['checks']['https-yourdomain-com'] = array(
'type' => 'HTTP',
'config' => array(
'url' => 'https://www.yourdomain.com/',
'contains' => 'Test'
),
'label' => 'https for www.yourdomain.com'
);
*/
$config['showUptime'] = true;
$config['logFile'] = '/var/log/itsallgood/event_log';
// Your timezone, if not specified globally
if(!ini_get('date.timezone')){
date_default_timezone_set('America/New_York');
}
?>