forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
poller_recovery.php
317 lines (262 loc) · 8.8 KB
/
poller_recovery.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
#!/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();
print "Cacti Boost RRD Update Poller, Version $version " . COPYRIGHT_YEARS . "\n";
}
/* display_help - displays the usage of the function */
function display_help () {
display_version();
print "\nusage: poller_recovery.php [--verbose] [--force] [--debug]\n\n";
print "Cacti's Remote Poller Recovery Script. This poller will transfer all offline boost records\n";
print "to the Main Cacti Pollers boost table\n";
print "Optional:\n";
print " --verbose - Show details logs at the command line\n";
print " --force - Force the execution of a update process\n";
print " --debug - Display verbose output during execution\n\n";
}
function sig_handler($signo) {
switch ($signo) {
case SIGTERM:
case SIGINT:
cacti_log('WARNING: Boost Poller terminated by user', false, 'BOOST');
/* tell the main poller that we are done */
db_execute("REPLACE INTO settings (name, value) VALUES ('boost_poller_status', 'terminated - end time:" . date('Y-m-d G:i:s') ."')");
exit;
break;
default:
/* ignore all other signals */
}
}
function debug($string) {
global $debug;
if ($debug) {
print trim($string) . "\n";
}
}
/* 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>');
}
$dir = dirname(__FILE__);
chdir($dir);
if (strpos($dir, 'boost') !== false) {
chdir('../../');
}
/* include important functions */
include_once('./include/global.php');
include_once($config['base_path'] . '/lib/poller.php');
include_once($config['base_path'] . '/lib/boost.php');
include_once($config['base_path'] . '/lib/dsstats.php');
global $local_db_cnn_id, $remote_db_cnn_id;
$recovery_pid = db_fetch_cell("SELECT value FROM settings WHERE name='recovery_pid'", true, $local_db_cnn_id);
$packet_data = db_fetch_row("SHOW GLOBAL VARIABLES LIKE 'max_allowed_packet'", true, $remote_db_cnn_id);
if (isset($packet_data['Value'])) {
$max_allowed_packet = $packet_data['Value'];
} else {
$max_allowed_packet = 1E6;
}
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
$debug = false;
$forcerun = false;
$verbose = false;
$poller_id = $config['poller_id'];
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 '--verbose':
$verbose = true;
break;
case '--version':
case '-V':
case '-v':
display_version();
exit;
case '--help':
case '-H':
case '-h':
display_help();
exit;
default:
print 'ERROR: Invalid Parameter ' . $parameter . "\n\n";
display_help();
exit;
}
}
}
/* check for an invalid run locaiton */
if ($poller_id == 1) {
print "ERROR: This command is only to be run on remote Cacti Data Collectors\n";
exit(1);
}
/* 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);
$record_limit = 10000;
$inserted = 0;
$sleep_time = 3;
debug('About to start recovery processing');
if (!empty($recovery_pid)) {
$pid = posix_kill($recovery_pid, 0);
if ($pid === false) {
$run = true;
} else {
$run = false;
}
} else {
$run = true;
}
if ($run) {
debug('No pid exists, starting recovery process!');
db_execute("DELETE FROM settings WHERE name='recovery_pid'", true, $local_db_cnn_id);
$end_count = 0;
/* let the console know you are in recovery mode */
db_execute_prepared('UPDATE poller
SET status="5"
WHERE id= ?', array($poller_id), true, $remote_db_cnn_id);
while (true) {
$time_records = db_fetch_assoc('SELECT time, count(*) AS entries
FROM poller_output_boost
GROUP BY time', true, $local_db_cnn_id);
debug('There are ' . sizeof($time_records) . ' in the recovery database');
$total_records = db_affected_rows();
$found = 0;
if (!sizeof($time_records)) {
// This should happen, but only after purging at least some records
break;
} else {
$i = 0;
$purge_time = 0;
/* traverse through the records getting the totals
* continue doing this till you get to the end
* or hit the record limit */
foreach ($time_records as $record) {
$time = $record['time'];
$found += $record['entries'];
$i++;
if ($found > $record_limit) {
if ($i == $total_records) {
if ($end_count > 1) {
$operator = '<=';
} else {
$operator = '<';
}
$end_count++;
$sleep_time = 3;
} else {
$operator = '<=';
$sleep_time = 0;
}
$purge_time = $time;
break;
} elseif ($i == $total_records) {
if ($end_count > 1) {
$operator = '<=';
} else {
$operator = '<';
}
$end_count++;
$purge_time = $time;
}
}
if ($purge_time == 0) {
$rows = db_fetch_assoc("SELECT *
FROM poller_output_boost
ORDER BY time ASC", true, $local_db_cnn_id);
} else {
$rows = db_fetch_assoc("SELECT *
FROM poller_output_boost
WHERE time $operator '$purge_time'
ORDER BY time ASC", true, $local_db_cnn_id);
}
if (sizeof($rows)) {
$count = 0;
$sql_array = array();
foreach($rows as $r) {
$sql = '(' . $r['local_data_id'] . ',' . db_qstr($r['rrd_name']) . ',' . db_qstr($r['time']) . ',' . db_qstr($r['output']) . ')';
$count += strlen($sql);
if ($count >= $max_allowed_packet) {
db_execute('INSERT IGNORE INTO poller_output_boost
(local_data_id, rrd_name, time, output)
VALUES ' . implode(',', $sql_array), true, $remote_db_cnn_id);
$inserted += sizeof($sql_array);
$sql_array = array();
$count = 0;
}
$sql_array[] = $sql;
}
if ($count > 0) {
db_execute("INSERT IGNORE INTO poller_output_boost
(local_data_id, rrd_name, time, output)
VALUES " . implode(',', $sql_array), true, $remote_db_cnn_id);
$inserted += $count;
}
/* remove the recovery records */
if ($purge_time == 0) {
db_execute("DELETE FROM poller_output_boost", true, $local_db_cnn_id);
} else {
db_execute("DELETE FROM poller_output_boost WHERE time $operator '$purge_time'", true, $local_db_cnn_id);
}
}
sleep($sleep_time);
}
}
/* let the console know you are in online mode */
db_execute_prepared('UPDATE poller
SET status="2"
WHERE id= ?', array($poller_id), false, $remote_db_cnn_id);
} else {
debug('Recovery process still running, exiting');
cacti_log('Recovery process still running for Poller ' . $poller_id . '. PID is ' . $recovery_pid);
exit(1);
}
$end = microtime(true);
cacti_log('RECOVERY STATS: Time:' . round($end - $start, 2) . ' Records:' . $inserted, false, 'SYSTEM');
exit(0);