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
|
#!/usr/bin/php -q
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004 Ian Berry |
| |
| 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: a php-based graphing solution |
+-------------------------------------------------------------------------+
| Most of this code has been designed, written and is maintained by |
| Ian Berry. See about.php for specific developer credit. Any questions |
| or comments regarding this code should be directed to: |
| - iberry@raxnet.net |
+-------------------------------------------------------------------------+
| - raXnet - http://www.raxnet.net/ |
+-------------------------------------------------------------------------+
*/
/* do NOT run this script through a web browser */
if (!isset($_SERVER["argv"][0])) {
die("<br><strong>This script is only meant to run at the command line.</strong>");
}
/* 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", 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_type") != "disabled") && (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
?>
|