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
|
#!/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__ . '/../site/include/cli_check.php');
require_once($config['base_path'] . '/lib/utility.php');
require_once($config['base_path'] . '/lib/api_data_source.php');
require_once($config['base_path'] . '/lib/poller.php');
/* switch to main database for cli's */
if ($config['poller_id'] > 1) {
db_switch_remote_to_main();
}
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
/* system controlled parameters */
$type = 'rmaster';
$thread_id = 0;
/* mandatory parameters */
$start_time = false;
$end_time = false;
/* optional parameters for host selection */
$debug = false;
$host_id = false;
$host_template_id = false;
$data_template_id = false;
/* optional for threading and verbose display */
$threads = 5;
/* optional for force handing and resume */
$forcerun = false;
foreach ($parms as $parameter) {
if (strpos($parameter, '=')) {
list($arg, $value) = explode('=', $parameter, 2);
} else {
$arg = $parameter;
$value = '';
}
switch ($arg) {
case '--host-id':
$host_id = trim($value);
if (!is_numeric($host_id)) {
print 'ERROR: You must supply a valid Device Id to run this script!' . PHP_EOL;
exit(1);
}
break;
case '--host-template-id':
$host_template_id = trim($value);
if (!is_numeric($host_template_id)) {
print 'ERROR: You must supply a valid Device Template Id to run this script!' . PHP_EOL;
exit(1);
}
break;
case '--data-template-id':
$data_template_id = trim($value);
if (!is_numeric($data_template_id)) {
print 'ERROR: You must supply a valid Data Template Id to run this script!' . PHP_EOL;
exit(1);
}
break;
case '--type':
$type = $value;
break;
case '--threads':
if (!is_numeric(trim($value))) {
print 'ERROR: You must supply a valid Number of Treads or skip this parametr for default value (' . $threads . ')' . PHP_EOL;
exit(1);
}
$threads = $value;
break;
case '--child':
$thread_id = $value;
break;
case '--force':
$forcerun = true;
break;
case '-d':
case '--debug':
$debug = true;
break;
case '-h':
case '-H':
case '--help':
display_help();
exit;
case '-v':
case '-V':
case '--version':
display_version();
exit;
default:
print 'ERROR: Invalid Parameter ' . $parameter . PHP_EOL . PHP_EOL;
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);
/* set new timeout and memory settings */
ini_set('max_execution_time', '0');
ini_set('memory_limit', '-1');
$sql_where = '';
$params = array();
if ($host_id > 0) {
$sql_where = ' AND h.id = ?';
$params[] = $host_id;
}
if ($host_template_id > 0) {
$sql_where .= ' AND h.host_template_id = ?';
$params[] = $host_template_id;
}
/* issue warnings and start message if applicable */
print 'WARNING: Do not interrupt this script. Rebuilding Poller Cache can take quite some time' . PHP_EOL;
/* send a gentle message to the log and stdout */
pushout_debug('Rebuild poller cache starting');
/* silently end if the registered process is still running */
if (!$forcerun) {
if (!register_process_start('pushout', $type, $thread_id, 86400)) {
exit(0);
}
}
/* Collect data as determined by the type */
switch ($type) {
case 'rmaster':
pushout_master_handler($forcerun, $host_id, $host_template_id, $data_template_id, $threads);
unregister_process('pushout', 'rmaster', 0);
break;
case 'child': /* Launched by the rmaster process */
$child_start = microtime(true);
$sql_where = '';
$sql_params = array();
if ($host_id !== false) {
$sql_where .= 'AND id = ?';
$sql_params[] = $host_id;
}
if ($host_template_id !== false) {
$sql_where .= 'AND host_template_id = ?';
$sql_params[] = $host_template_id;
}
$rows = db_fetch_cell_prepared("SELECT count(id) FROM host WHERE disabled='' " . $sql_where, $sql_params);
$hosts_per_process = ceil($rows/$threads);
$sql_where .= ' GROUP BY h.id ORDER BY h.id LIMIT ' . (($thread_id-1)*$hosts_per_process) . ',' . $hosts_per_process;
$rows = db_fetch_assoc_prepared("SELECT h.id AS id, COUNT(dl.id) AS dl_count
FROM host AS h
LEFT JOIN data_local AS dl
ON h.id=dl.host_id
WHERE h.disabled='' " . $sql_where,
$sql_params);
cacti_log(sprintf('Child Started Process %s with %d hosts, from: %d', $thread_id, $hosts_per_process, ($thread_id-1)*$hosts_per_process), true, 'PUSHOUT');
foreach ($rows as $row) {
if (!$debug) {
print '.';
}
if ($row['dl_count'] > 0) {
push_out_host($row['id'], 0, $data_template_id);
} else {
db_execute_prepared('DELETE FROM poller_item WHERE host_id = ?', array($row['id']));
}
}
$total_time = microtime(true) - $child_start;
unregister_process('pushout', 'child', $thread_id);
break;
}
pushout_debug('Polling Ending');
exit(0);
function pushout_master_handler($forcerun, $host_id, $host_template_id, $data_template_id, $threads) {
global $type;
$sql_where = '';
$sql_params = array();
if ($host_id !== false) {
$sql_where .= 'AND id = ?';
$sql_params[] = $host_id;
}
if ($host_template_id !== false) {
$sql_where .= 'AND host_template_id = ?';
$sql_params[] = $host_template_id;
}
$rows = db_fetch_cell_prepared("SELECT COUNT(id)
FROM host
WHERE disabled = '' " . $sql_where, $sql_params);
if ($rows == 0) {
print 'WARNING: There are no hosts to process' . PHP_EOL;;
return false;
}
$hosts_per_process = ceil($rows/$threads);
print "There are $rows hosts, $threads threads and $hosts_per_process hosts to process per thread" . PHP_EOL;
$h_done = 0;
for ($thread_id = 1; $h_done < $rows; $thread_id++) {
pushout_debug("Launching Process ID $thread_id");
pushout_launch_child($thread_id, $threads);
$h_done += $hosts_per_process;
}
$starting = true;
while (true) {
if ($starting) {
sleep(5);
$starting = false;
}
$running = pushout_processes_running();
if ($running > 0) {
pushout_debug(sprintf('%s Processes Running, keeping for 2 seconds.', $running));
sleep(2);
} else {
break;
}
}
return true;
}
/**
* pushout_launch_child - this function will launch collector children based upon
* the maximum number of threads and the process type
*
* @param $thread_id (int) The Thread id to launch
*
* @return - NULL
*/
function pushout_launch_child($thread_id, $threads) {
global $config, $debug, $host_template_id, $data_template_id;
$php_binary = read_config_option('path_php_binary');
pushout_debug(sprintf('Launching Rebuild poller cache Process Number %s for Type %s', $thread_id, 'child'));
cacti_log(sprintf('NOTE: Launching Push out hosts Number %s for Type %s', $thread_id, 'child'), true, 'PUSHOUT', POLLER_VERBOSITY_MEDIUM);
exec_background($php_binary, $config['base_path'] . "/cli/push_out_hosts.php --type=child --threads=$threads --child=$thread_id " . ($debug ? " --debug":"") . ($host_template_id ? " --host-template-id=$host_template_id":"") . ($data_template_id ? " --data-template-id=$data_template_id":""));
}
/**
* pushout_processes_running - given a type, determine the number
* of sub-type or children that are currently running
*
* @return - (int) The number of running processes
*/
function pushout_processes_running() {
$running = db_fetch_cell('SELECT COUNT(*)
FROM processes
WHERE tasktype = "pushout"
AND taskname = "child"');
if ($running == 0) {
return 0;
}
return $running;
}
/**
* pushout_debug - this simple routine prints a standard message to the console
* when running in debug mode.
*
* @param $message - (string) The message to display
*
* @return - NULL
*/
function pushout_debug($message) {
global $debug;
if ($debug) {
print 'PUSHOUT: ' . $message . PHP_EOL;
}
}
/**
* display_version - displays version information
*/
function display_version() {
print 'Cacti Rebuild poller cache Tool, Version ' . CACTI_VERSION . ' ' . COPYRIGHT_YEARS . PHP_EOL;
}
/**
* display_help - generic help screen for utilities
*/
function display_help() {
display_version();
print PHP_EOL . 'usage: rebuild_poller_cache.php [--host-id=N] [--host-template-id=N] [--data-template-id=N] [--debug]' . PHP_EOL . PHP_EOL;
print 'Cacti\'s repopulate poller cache tool. This CLI script will ' . PHP_EOL;
print 'repopulate poller cache for all or specified hosts.' . PHP_EOL . PHP_EOL;
print 'This utility will run in parallel with the given number of threads,' . PHP_EOL;
print 'Optional:' . PHP_EOL;
print ' --threads=N - The number of threads to use to repopulate, default = 5' . PHP_EOL;
print ' --host-id=N - Run for a specific Device' . PHP_EOL;
print ' --host-template-id=N - Run for a specific Device Template' . PHP_EOL;
print ' --data-template-id=N - Run for a specific Data Template' . PHP_EOL;
print ' --debug - Display verbose output during execution' . PHP_EOL . PHP_EOL;
print 'System Controlled:' . PHP_EOL;
print ' --type - The type and subtype of the rebuild poller cache process' . PHP_EOL;
print ' --child - The thread id of the child process' . 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: Rebuild poller cache terminated by user', false, 'PUSHOUT');
if (strpos($type, 'rmaster') !== false) {
pushout_kill_running_processes();
}
unregister_process('pushout', 'rmaster', $thread_id, getmypid());
exit(1);
break;
default:
/* ignore all other signals */
}
}
/**
* pushout_kill_running_processes - this function is part of an interrupt
* handler to kill children processes when the parent is killed
*
* @return - NULL
*/
function pushout_kill_running_processes() {
global $type;
$processes = db_fetch_assoc_prepared('SELECT *
FROM processes
WHERE tasktype = "pushout"
AND taskname IN ("child")
AND pid != ?',
array(getmypid()));
if (cacti_sizeof($processes)) {
foreach ($processes as $p) {
cacti_log(sprintf('WARNING: Killing Cleanup %s PID %d due to another due to signal or overrun.', ucfirst($p['taskname']), $p['pid']), false, 'PUSHOUT');
posix_kill($p['pid'], SIGTERM);
unregister_process($p['tasktype'], $p['taskname'], $p['taskid'], $p['pid']);
}
}
}
|