forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
poller_dsstats.php
218 lines (187 loc) · 8.39 KB
/
poller_dsstats.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#!/usr/bin/php -q
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2017 The Cacti Group |
| |
| This program is free software; you can redistribute it and/or |
| modify it under the terms of the GNU General Public License |
| as published by the Free Software Foundation; either version 2 |
| of the License, or (at your option) any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
/* tick use required as of PHP 4.3.0 to accomodate signal handling */
declare(ticks = 1);
/* we are not talking to the browser */
$no_http_headers = true;
/* display_version - displays version information */
function display_version() {
$version = get_cacti_version();
echo "Cacti Data Source Staitistcs Poller, Version $version " . COPYRIGHT_YEARS . "\n";
}
/* display_help - generic help screen for utilities
@returns - null */
function display_help () {
display_version();
echo "\nusage: poller_dsstats.php [--force] [--debug]\n\n";
echo "Cacti's Data Source Statics poller. This poller will periodically\n";
echo "calculate Data Source statistics for Cacti and works in conjunction\n";
echo "with Cacti's performance boosting popller as required.\n\n";
echo "Optional:\n";
echo " --force - Force the execution of a update process\n";
echo " --debug - Display verbose output during execution\n\n";
}
/* sig_handler - provides a generic means to catch exceptions to the Cacti log.
@arg $signo - (int) the signal that was thrown by the interface.
@returns - null */
function sig_handler($signo) {
switch ($signo) {
case SIGTERM:
case SIGINT:
cacti_log('WARNING: DSStats Poller terminated by user', false, 'dsstats');
/* tell the main poller that we are done */
db_execute("REPLACE INTO settings (name, value) VALUES ('dsstats_poller_status', 'terminated - end time:" . date('Y-m-d G:i:s') ."')");
exit;
break;
default:
/* ignore all other signals */
}
}
/* do NOT run this script through a web browser */
if (!isset($_SERVER['argv'][0]) || isset($_SERVER['REQUEST_METHOD']) || isset($_SERVER['REMOTE_ADDR'])) {
die('<br><strong>This script is only meant to run at the command line.</strong>');
}
/* include important functions */
include_once('./include/global.php');
include_once($config['base_path'] . '/lib/poller.php');
include_once($config['base_path'] . '/lib/rrd.php');
include_once($config['base_path'] . '/lib/dsstats.php');
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
$debug = false;
$forcerun = false;
$forcerun_maint = false;
if (sizeof($parms)) {
foreach($parms as $parameter) {
if (strpos($parameter, '=')) {
list($arg, $value) = explode('=', $parameter);
} else {
$arg = $parameter;
$value = '';
}
switch ($arg) {
case '-d':
case '--debug':
$debug = true;
break;
case '-f':
case '--force':
$forcerun = true;
break;
case '--version':
case '-v':
case '-V':
display_version();
exit;
case '--help':
case '-h':
case '-H':
display_help();
exit;
default:
echo 'ERROR: Invalid Parameter ' . $parameter . "\n\n";
display_help();
exit;
}
}
}
/* install signal handlers for UNIX only */
if (function_exists('pcntl_signal')) {
pcntl_signal(SIGTERM, 'sig_handler');
pcntl_signal(SIGINT, 'sig_handler');
}
/* take time and log performance data */
$start = microtime(true);
/* let's give this script lot of time to run for ever */
ini_set('max_execution_time', '0');
dsstats_memory_limit();
/* send a gentle message to the log and stdout */
dsstats_debug('Polling Starting');
/* only run if enabled, or forced */
if ((read_config_option('dsstats_enable') == 'on') || $forcerun) {
/* read some important settings relative to timing from the database */
$major_time = date('H:i:s', strtotime(read_config_option('dsstats_major_update_time')));
$daily_interval = read_config_option('dsstats_daily_interval');
$hourly_window = date('Y-m-d H:i:s', time() - (read_config_option('dsstats_hourly_duration') * 60));
/* check to see when the daily averages were updated last */
$last_run_daily = read_config_option('dsstats_last_daily_run_time');
$last_run_major = read_config_option('dsstats_last_major_run_time');
/* remove old records from the cache first */
if (db_fetch_cell_prepared('SELECT count(*) FROM data_source_stats_hourly_cache WHERE time < ?', array($hourly_window))) {
db_execute_prepared('DELETE FROM data_source_stats_hourly_cache WHERE time < ?', array($hourly_window));
}
/* store the current averages into the hourly table */
db_execute("INSERT INTO data_source_stats_hourly
(local_data_id, rrd_name, average, peak)
(SELECT local_data_id, rrd_name, AVG(`value`), MAX(`value`)
FROM (SELECT local_data_id, rrd_name, `value` FROM data_source_stats_hourly_cache WHERE `value` IS NOT NULL) AS sally
GROUP BY local_data_id, rrd_name)
ON DUPLICATE KEY UPDATE average=VALUES(average), peak=VALUES(peak)");
log_dsstats_statistics('HOURLY');
/* see if boost is active or not */
$boost_active = (db_fetch_cell("SELECT value FROM settings WHERE name='boost_rrd_update_enable'") == 'on');
/* next let's see if it's time to update the daily interval */
$current_time = time();
if ($boost_active) {
/* boost will spawn the collector */
} else {
if ($daily_interval == 'boost' || $boost_active) {
cacti_log("WARNING: Daily update interval set to 'boost' and Boost Plugin Not Enabled, reseting to default of 1 hour", false, 'DSSTATS');
db_execute("REPLACE INTO settings (name, value) VALUES('dsstats_daily_interval', '60')");
$daily_interval = 60;
}
/* determine if it's time to determine hourly averages */
if ($last_run_daily == '') {
/* since the poller has never run before, let's fake it out */
db_execute("REPLACE INTO settings (name, value) VALUES ('dsstats_last_daily_run_time', '" . date('Y-m-d G:i:s', $current_time) . "')");
}
/* if it's time to update daily statistics, do so now */
if ((($last_run_daily != '') && ((strtotime($last_run_daily) + ($daily_interval * 60)) < $current_time)) || ($forcerun)) {
/* run the daily stats */
dsstats_get_and_store_ds_avgpeak_values('daily');
log_dsstats_statistics('DAILY');
db_execute("REPLACE INTO settings (name, value) VALUES ('dsstats_last_daily_run_time', '" . date('Y-m-d G:i:s', $current_time) . "')");
}
}
/* lastly, let's see if it's time to run the major stats */
if ($last_run_major == '') {
/* since the poller has never run before, let's fake it out */
db_execute("REPLACE INTO settings (name, value) VALUES ('dsstats_last_major_run_time', '" . date('Y-m-d G:i:s', $current_time) . "')");
} else {
$last_major_day = date('Y-m-d', strtotime($last_run_major));
$next_major_day = strtotime($last_major_day . ' ' . $major_time) + 86400;
}
/* if its time to run major statistics, do so now */
if ((($last_run_major != '') && ($next_major_day < $current_time)) || ($forcerun)) {
/* run the major stats, log first to keep other processes from running */
db_execute("REPLACE INTO settings (name, value) VALUES ('dsstats_last_major_run_time', '" . date('Y-m-d G:i:s', $current_time) . "')");
dsstats_get_and_store_ds_avgpeak_values('weekly');
dsstats_get_and_store_ds_avgpeak_values('monthly');
dsstats_get_and_store_ds_avgpeak_values('yearly');
log_dsstats_statistics('MAJOR');
}
}
dsstats_debug('Polling Ending');