-
-
Notifications
You must be signed in to change notification settings - Fork 405
/
poller_dsstats.php
482 lines (381 loc) · 15.2 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
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
#!/usr/bin/env php
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 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/ |
+-------------------------------------------------------------------------+
*/
if (function_exists('pcntl_async_signals')) {
pcntl_async_signals(true);
} else {
declare(ticks = 100);
}
ini_set('output_buffering', 'Off');
require(__DIR__ . '/include/cli_check.php');
require_once(CACTI_PATH_LIBRARY . '/poller.php');
require_once(CACTI_PATH_LIBRARY . '/rrd.php');
require_once(CACTI_PATH_LIBRARY . '/graph_variables.php');
require_once(CACTI_PATH_LIBRARY . '/dsstats.php');
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
$debug = false;
$force = false;
$fpartition = false; // Only to be used for QA
$type = 'pmaster';
$thread_id = 0;
global $rrd_files, $total_system, $total_user, $total_real, $total_dsses;
global $user_time, $system_time, $real_time;
(double) $total_system = 0;
(double) $total_user = 0;
(double) $total_real = 0;
$total_dsses = 0;
$system_time = 0;
$user_time = 0;
$real_time = 0;
$rrd_files = 0;
if (cacti_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':
$force = true;
break;
case '-p':
case '--partition':
$fpartition = true;
case '--type':
$type = $value;
break;
case '--child':
$thread_id = $value;
break;
case '--version':
case '-v':
case '-V':
display_version();
exit(0);
case '--help':
case '-h':
case '-H':
display_help();
exit(0);
default:
print 'ERROR: Invalid Parameter ' . $parameter . PHP_EOL . PHP_EOL;
display_help();
exit(1);
}
}
}
/**
* Types include
*
* pmaster - the main process launched from the Cacti main poller and will launch child processes
* pchild - a child of the master process from the 'master'
*
* bmaster - a boost master process, will perform launch bchild processes
* bchild - a child of the boost master process, will launch boost collection
*
* dmaster - a daily master process, will perform launch bchild processes
* dchild - a child of the daily master process, will launch boost collection
*
*/
/* 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');
/* silently end if the registered process is still running */
if (!$force) {
if (!register_process_start('dsstats', $type, $thread_id, read_config_option('dsstats_timeout'))) {
exit(0);
}
}
// Collect data as determined by the type
switch ($type) {
case 'pmaster':
if (read_config_option('dsstats_enable') == 'on' || $force) {
dsstats_master_handler($type, $force, $fpartition);
}
break;
case 'bmaster': // Launched at the end of boost
case 'dmaster': // Launched inside this script for daily processing
/* run the daily stats */
dsstats_launch_children($type);
/* Wait for all processes to continue */
while ($running = dsstats_processes_running($type)) {
dsstats_debug(sprintf('%s Processes Running, Sleeping for 2 seconds.', $running));
sleep(2);
}
break;
case 'child': // Launched by the master process
case 'bchild': // Launched by the boost process
$child_start = microtime(true);
dsstats_get_and_store_ds_avgpeak_values('daily', $type, $thread_id);
$total_time = microtime(true) - $child_start;
dsstats_log_child_stats($type, $thread_id, $total_time);
break;
case 'dchild': // Launched by the daily master process
$child_start = microtime(true);
dsstats_debug(sprintf('Daily Stats Master Child %s Executing', $thread_id));
dsstats_get_and_store_ds_avgpeak_values('weekly', $type, $thread_id);
dsstats_get_and_store_ds_avgpeak_values('monthly', $type, $thread_id);
dsstats_get_and_store_ds_avgpeak_values('yearly', $type, $thread_id);
$total_time = microtime(true) - $child_start;
dsstats_log_child_stats($type, $thread_id, $total_time);
break;
}
dsstats_debug('Polling Ending');
if (!$force) {
unregister_process('dsstats', $type, $thread_id);
}
exit(0);
function dsstats_purge_hourly_cache() {
$hourly_window = date('Y-m-d H:i:s', time() - (read_config_option('dsstats_hourly_duration') * 60));
/* 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));
}
}
function dsstats_insert_hourly_data_into_cache() {
/* 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 data_source_stats_hourly_cache
WHERE `value` IS NOT NULL
GROUP BY local_data_id, rrd_name
ON DUPLICATE KEY UPDATE average=VALUES(average), peak=VALUES(peak)');
}
function dsstats_master_handler($type, $force, $fpartition) {
/* 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');
/* 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');
if (!empty($last_run_major)) {
$last_major_time = strtotime($last_run_major);
} else {
$last_major_time = time();
}
// Purge the cache
dsstats_purge_hourly_cache();
// Insert new rows into cache
dsstats_insert_hourly_data_into_cache();
dsstats_log_statistics('HOURLY', $type);
/* see if boost is active or not */
$boost_active = read_config_option('boost_rrd_update_enable');
/* next let's see if it's time to update the daily interval */
$current_time = time();
/* handle partition creation and pruning before we start */
if (read_config_option('dsstats_gdg_enable') == 'on') {
if (date('z', $last_major_time) != date('z', $current_time) || $fpartition) {
dsstats_create_partitions($last_major_time, $current_time, $fpartition);
dsstats_remove_old_partitions($current_time, $fpartition);
}
}
if ($boost_active == 'on') {
/* boost will spawn the collector */
dsstats_debug('Skipping Periodic Rollup - Boost will handle the Periodic Roll-up Cycle');
} else {
if ($daily_interval == 'boost') {
cacti_log("WARNING: Daily update interval set to 'boost' and boost not enabled, resetting to default of 1 hour", false, 'DSSTATS');
set_config_option('dsstats_daily_interval', 60);
$daily_interval = 60;
}
/* determine if it's time to determine hourly averages */
if (empty($last_run_daily)) {
/* since the poller has never run before, let's fake it out */
set_config_option('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 ((!empty($last_run_daily) && ((strtotime($last_run_daily) + ($daily_interval * 60)) < $current_time)) || $force) {
set_config_option('dsstats_last_daily_run_time', date('Y-m-d G:i:s', $current_time));
/* run the daily stats */
dsstats_launch_children($type);
/* Wait for all processes to continue */
while ($running = dsstats_processes_running($type)) {
dsstats_debug(sprintf('%s Processes Running, Sleeping for 2 seconds.', $running));
sleep(2);
}
dsstats_log_statistics('DAILY', $type);
}
}
/* lastly, let's see if it's time to run the major stats */
if (empty($last_run_major)) {
/* since the poller has never run before, let's fake it out */
set_config_option('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 ((!empty($last_run_major) && ($next_major_day < $current_time)) || $force) {
/* run the major stats, log first to keep other processes from running */
set_config_option('dsstats_last_major_run_time', date('Y-m-d G:i:s', $current_time));
/* run the daily stats */
dsstats_launch_children('dmaster');
/* Wait for all processes to continue */
while ($running = dsstats_processes_running('dmaster')) {
dsstats_debug(sprintf('%s Processes Running, Sleeping for 2 seconds.', $running));
sleep(2);
}
dsstats_log_statistics('MAJOR');
}
}
function dsstats_create_partitions($last_major_time, $current_time, $fpartition = false) {
$last_day = date('z', $last_major_time);
$last_week = date('W', $last_major_time);
$last_month = date('n', $last_major_time);
$last_year = date('Y', $last_major_time);
// Create partition for daily numbers
if ($last_day != date('z', $current_time) || $fpartition) {
$last_day = substr('00' . $last_day, -3);
dsstats_create_partition_from_table('data_source_stats_daily', '_v' . "$last_year$last_day");
}
// Create partition for weekly numbers
if ($last_week != date('W', $current_time) || $fpartition) {
$last_week = substr('00' . $last_week, -3);
dsstats_create_partition_from_table('data_source_stats_weekly', '_v' . "$last_year$last_week");
}
// Create partition for monthly numbers
if ($last_month != date('n', $current_time) || $fpartition) {
$last_month = substr('00' . $last_month, -3);
dsstats_create_partition_from_table('data_source_stats_monthly', '_v' . "$last_year$last_month");
}
// Create partition for yearly numbers
if ($last_year != date('Y', $current_time) || $fpartition) {
dsstats_create_partition_from_table('data_source_stats_yearly', '_v' . "$last_year");
}
}
function dsstats_remove_old_partitions($current_time, $fpartition = false) {
$daily_retention = read_config_option('dsstats_daily_retention');
$weekly_retention = read_config_option('dsstats_weekly_retention');
$monthly_retention = read_config_option('dsstats_monthly_retention');
$yearly_retention = read_config_option('dsstats_yearly_retention');
dsstats_prune_partitions('data_source_stats_daily', $daily_retention);
dsstats_prune_partitions('data_source_stats_weekly', $weekly_retention);
dsstats_prune_partitions('data_source_stats_monthly', $monthly_retention);
dsstats_prune_partitions('data_source_stats_yearly', $yearly_retention);
}
function dsstats_prune_partitions($table_name, $partitions_to_keep) {
global $database_default;
$tables = db_fetch_assoc_prepared("SELECT TABLE_NAME
FROM information_schema.TABLES
WHERE TABLE_NAME LIKE '{$table_name}_v%' AND TABLE_SCHEMA = ?",
array($database_default));
if (cacti_sizeof($tables) > $partitions_to_keep) {
$partitions_to_delete = cacti_sizeof($tables) - $partitions_to_keep;
$partitions = array();
foreach($tables as $table) {
$tname = $table['TABLE_NAME'];
$parts = explode('_v', $tname);
$partitions[] = $parts[1];
}
sort($partitions);
$i = 0;
while($i < $partitions_to_delete) {
$remove_table = $table_name . '_v' . $partitions[$i];
if (db_table_exists($remove_table)) {
cacti_log("NOTE: Dropping old partition $table_name", false, 'DSSTATS');
db_execute("DROP TABLE $remove_table");
}
$i++;
}
}
}
function dsstats_create_partition_from_table($table_name, $suffix) {
if (db_table_exists($table_name)) {
cacti_log("NOTE: Creating new partition $table_name", false, 'DSSTATS');
if (db_table_exists('dsstats_temp_table')) {
db_execute('DROP TABLE dsstats_temp_table');
}
db_execute("CREATE TABLE dsstats_temp_table LIKE $table_name;
RENAME TABLE $table_name TO $table_name$suffix, dsstats_temp_table TO $table_name");
}
}
/**
* display_version - displays version information
*/
function display_version() {
$version = get_cacti_cli_version();
print "Cacti Data Source Statistics Poller, Version $version " . COPYRIGHT_YEARS . PHP_EOL;
}
/**
* display_help - generic help screen for utilities
*/
function display_help() {
display_version();
print PHP_EOL . 'usage: poller_dsstats.php [--force] [--debug]' . PHP_EOL . PHP_EOL;
print 'Cacti\'s Data Source Statics poller. This poller will periodically' . PHP_EOL;
print 'to calculate Data Source statistics for Cacti and works in conjunction' . PHP_EOL;
print 'with Cacti\'s performance boosting poller as required.' . PHP_EOL . PHP_EOL;
print 'System Controlled:' . PHP_EOL;
print ' --type - The type and subtype of the dsstats process' . PHP_EOL;
print ' --child - The thread id of the child process' . PHP_EOL . PHP_EOL;
print 'Optional:' . PHP_EOL;
print ' --force - Force the execution of a update process' . PHP_EOL;
print ' --debug - Display verbose output during execution' . PHP_EOL . PHP_EOL;
}
/**
* sig_handler - provides a generic means to catch exceptions to the Cacti log.
*
* @param $signo - (int) the signal that was thrown by the interface.
*
* @return - null
*/
function sig_handler($signo) {
global $type, $thread_id;
switch ($signo) {
case SIGTERM:
case SIGINT:
cacti_log('WARNING: DSStats Poller terminated by user', false, 'dsstats');
/* tell the main poller that we are done */
if ($type == 'master') {
set_config_option('dsstats_poller_status', 'terminated - end time:' . date('Y-m-d G:i:s'));
}
if (strpos($type, 'master') !== false) {
dsstats_kill_running_processes();
}
unregister_process('dsstats', $type, $thread_id, getmypid());
exit(1);
break;
default:
/* ignore all other signals */
}
}