#!/usr/bin/php -q This script is only meant to run at the command line."); } /* We are not talking to the browser */ $no_http_headers = true; /* Start Initialization Section */ include(dirname(__FILE__) . "/include/config.php"); include_once($config["base_path"] . "/lib/poller.php"); include_once($config["base_path"] . "/lib/data_query.php"); include_once($config["base_path"] . "/lib/graph_export.php"); include_once($config["base_path"] . "/lib/rrd.php"); /* Record Start Time */ list($micro,$seconds) = split(" ", microtime()); $start = $seconds + $micro; /* Get number of polling items from the database */ $polling_interval = read_config_option("poller_interval"); if (isset($polling_interval)) { $num_polling_items = db_fetch_cell("select count(*) from poller_item where rrd_next_step<=0"); define("MAX_POLLER_RUNTIME", ($polling_interval - 8)); }else{ $num_polling_items = db_fetch_cell("select count(*) from poller_item"); define("MAX_POLLER_RUNTIME", 292); } /* Let PHP only run 1 second longer than the max runtime */ ini_set("max_execution_time", MAX_POLLER_RUNTIME + 1); $polling_hosts = array_merge(array(0 => array("id" => "0")), db_fetch_assoc("select id from host where disabled = '' order by id")); /* Retreive the number of concurrent process settings */ $concurrent_processes = read_config_option("concurrent_processes"); /* Initialize counters for script file handling */ $host_count = 1; /* Initialize file creation flags */ $change_files = False; /* Initialize file and host count pointers */ $process_file_number = 0; $first_host = 0; $last_host = 0; /* Update web paths for the poller */ db_execute("replace into settings (name,value) values ('path_webroot','" . addslashes(($config["cacti_server_os"] == "win32") ? strtr(strtolower(substr(dirname(__FILE__), 0, 1)) . substr(dirname(__FILE__), 1),"\\", "/") : dirname(__FILE__)) . "')"); // Obtain some defaults from the database $poller = read_config_option("poller_type"); $max_threads = read_config_option("max_threads"); // Initialize poller_time and poller_output tables db_execute("truncate table poller_time"); // Enter Mainline Processing if (read_config_option("poller_enabled") == "on") { /* Determine the number of hosts to process per file */ $hosts_per_file = ceil(sizeof($polling_hosts) / $concurrent_processes ); /* Exit poller if cactid is selected and file does not exist */ if (($poller == "2") && (!file_exists(read_config_option("path_cactid")))) { cacti_log("ERROR: The path: " . read_config_option("path_cactid") . " is invalid. Can not continue\n", true, "POLLER"); exit; } /* Determine Command Name */ if (($config["cacti_server_os"] == "unix") and ($poller == "2")) { $command_string = read_config_option("path_cactid"); $extra_args = ""; $method = "cactid"; chdir(dirname(read_config_option("path_cactid"))); }else if ($config["cacti_server_os"] == "unix") { $command_string = read_config_option("path_php_binary"); $extra_args = "-q " . $config["base_path"] . "/cmd.php"; $method = "cmd.php"; }else if ($poller == "2") { $command_string = read_config_option("path_cactid"); $extra_args = ""; $method = "cactid"; chdir(dirname(read_config_option("path_cactid"))); }else{ $command_string = read_config_option("path_php_binary"); $extra_args = "-q " . strtolower($config["base_path"] . "/cmd.php"); $method = "cmd.php"; } /* Populate each execution file with appropriate information */ foreach ($polling_hosts as $item) { if ($host_count == 1) { $first_host = $item["id"]; } if ($host_count == $hosts_per_file) { $last_host = $item["id"]; $change_files = True; } $host_count ++; if ($change_files) { exec_background($command_string, "$extra_args $first_host $last_host"); sleep(1); $host_count = 1; $change_files = False; $process_file_number++; $first_host = 0; $last_host = 0; } /* End change_files */ } /* End For Each */ if ($host_count > 1) { $last_host = $item["id"]; exec_background($command_string, "$extra_args $first_host $last_host"); sleep(1); $process_file_number++; } /* insert the current date/time for graphs */ db_execute("replace into settings (name,value) values ('date',NOW())"); if ($poller == "1") { $max_threads = "N/A"; } /* open a pipe to rrdtool for writing */ $rrdtool_pipe = rrd_init(); $loop_count = 0; $rrds_processed = 0; while (1) { $polling_items = db_fetch_assoc("select poller_id,end_time from poller_time where poller_id = 0"); if (sizeof($polling_items) == $process_file_number) { $rrds_processed = $rrds_processed + process_poller_output($rrdtool_pipe); /* take time and log performance data */ list($micro,$seconds) = split(" ", microtime()); $end = $seconds + $micro; $cacti_stats = sprintf( "Time:%01.4f " . "Method:%s " . "Processes:%s " . "Threads:%s " . "Hosts:%s " . "HostsPerProcess:%s " . "DataSources:%s " . "RRDsProcessed:%s", round($end-$start,4), $method, $concurrent_processes, $max_threads, sizeof($polling_hosts), $hosts_per_file, $num_polling_items, $rrds_processed); cacti_log("STATS: " . $cacti_stats ,true,"SYSTEM"); /* insert poller stats into the settings table */ db_execute("replace into settings (name,value) values ('stats_poller','$cacti_stats')"); db_execute("truncate table poller_output"); break; }else { if (read_config_option("log_verbosity") >= POLLER_VERBOSITY_MEDIUM) { print "Waiting on " . ($process_file_number - sizeof($polling_items)) . "/$process_file_number pollers.\n"; } $rrds_processed = $rrds_processed + process_poller_output($rrdtool_pipe); /* end the process if the runtime exceeds MAX_POLLER_RUNTIME */ if (($start + MAX_POLLER_RUNTIME) < time()) { rrd_close($rrdtool_pipe); cacti_log("Maximum runtime of " . MAX_POLLER_RUNTIME . " seconds exceeded. Exiting.", true, "POLLER"); /* take time and log performance data */ list($micro,$seconds) = split(" ", microtime()); $end = $seconds + $micro; $cacti_stats = sprintf( "Time:%01.4f " . "Method:%s " . "Processes:%s " . "Threads:%s " . "Hosts:%s " . "HostsPerProcess:%s " . "DataSources:%s " . "RRDsProcessed:%s", round($end-$start,4), $method, $concurrent_processes, $max_threads, sizeof($polling_hosts), $hosts_per_file, $num_polling_items, $rrds_processed); cacti_log("STATS: " . $cacti_stats ,true,"SYSTEM"); /* insert poller stats into the settings table */ db_execute("replace into settings (name,value) values ('stats_poller','$cacti_stats')"); break; } sleep(1); $loop_count++; } } rrd_close($rrdtool_pipe); /* process poller commands */ if (db_fetch_cell("select count(*) from poller_command") > 0) { $command_string = read_config_option("path_php_binary"); $extra_args = "-q " . $config["base_path"] . "/poller_commands.php"; exec_background($command_string, "$extra_args"); } /* graph export */ if (read_config_option("export_timing") != "disabled") { $command_string = read_config_option("path_php_binary"); $extra_args = "-q " . $config["base_path"] . "/poller_export.php"; exec_background($command_string, "$extra_args"); } if ($method == "cactid") { chdir(read_config_option("path_webroot")); } }else{ print "There are no items in your poller cache or polling is disabled. Make sure you have at least one data source created. If you do, go to 'Utilities', and select 'Clear Poller Cache'.\n"; } // End Mainline Processing ?>