forked from Cacti/plugin_thold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
poller_thold.php
322 lines (259 loc) · 9.97 KB
/
poller_thold.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
<?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/ |
+-------------------------------------------------------------------------+
*/
/* let PHP run just as long as it has to and to chew up memory too */
ini_set('max_execution_time', '0');
ini_set('memory_limit', '-1');
$dir = dirname(__FILE__);
chdir($dir);
if (strpos($dir, 'plugins') !== false) {
chdir('../../');
}
include('./include/cli_check.php');
include_once($config['base_path'] . '/plugins/thold/setup.php');
include_once($config['base_path'] . '/plugins/thold/thold_functions.php');
include_once($config['base_path'] . '/plugins/thold/includes/polling.php');
include_once($config['base_path'] . '/lib/rrd.php');
include_once($config['base_path'] . '/lib/poller.php');
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
$debug = false;
$force = false;
$start = microtime(true);
global $debug;
$poller_id = $config['poller_id'];
if (cacti_sizeof($parms)) {
foreach($parms as $parameter) {
if (strpos($parameter, '=')) {
list($arg, $value) = explode('=', $parameter);
} else {
$arg = $parameter;
$value = '';
}
switch ($arg) {
case '-f':
case '--force':
$force = true;
break;
case '-d':
case '--debug':
$debug = 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;
}
}
}
print "Starting the Thold Poller Process\n";
/* silently end if the registered process is still running, or process table missing */
if (!register_process_start('thold', 'master', $config['poller_id'], read_config_option('poller_interval'))) {
exit(0);
}
/* perform all key thold functions */
perform_thold_processes();
unregister_process('thold', 'master', $config['poller_id']);
function perform_thold_processes() {
global $config;
/* record the start time */
$start = microtime(true);
if (read_config_option('thold_empty_if_speed_default') == '') {
set_config_option('thold_empty_if_speed_default', '10000');
$empty_value = read_config_option('thold_empty_if_speed_default', true);
}
// Force upgrade the database if there is a problem
if (!db_column_exists('thold_data', 'name_cache')) {
thold_debug('Upgrading Thold database now.');
include_once($config['base_path'] . '/plugins/thold/includes/database.php');
thold_upgrade_database(true);
} else {
thold_debug('Not upgrading Thold database.');
}
/* handle changes in deadnotify */
thold_debug('Pruning stale dead host notifications.');
$deadnotify = (read_config_option('alert_deadnotify') == 'on');
if (!$deadnotify) {
db_execute('TRUNCATE plugin_thold_host_failed');
} else {
db_execute('DELETE FROM plugin_thold_host_failed WHERE host_id NOT IN (SELECT id FROM host)');
}
/* launch the notification background process if required */
$notification_queue = read_config_option('thold_notification_queue');
$notification_daemon = read_config_option('thold_notification_daemon');
if ($notification_queue == 'on' && $notification_daemon == '') {
thold_debug('Launching Thold notification process.');
$command_string = cacti_escapeshellcmd(read_config_option('path_php_binary'));
$file_path = $config['base_path'] . '/plugins/thold/thold_notify.php';
if (file_exists($file_path)) {
exec_background($command_string, $file_path);
}
}
if (read_config_option('thold_daemon_enable') == '') {
thold_debug('Thold daemon not enabled. Preparing to perform checks.');
/* perform all thold checks */
thold_debug('Thold checks started.');
$tholds = thold_check_all_thresholds();
thold_debug('Thold checks finished.');
thold_debug('Down device checks started.');
$nhosts = thold_update_host_status();
thold_debug('Down device checks finished.');
thold_debug('Thold Log Cleanup started.');
thold_cleanup_log();
thold_debug('Thold Log Cleanup finished.');
if (read_config_option('remote_storage_method') == 1) {
$total_hosts = db_fetch_cell_prepared('SELECT COUNT(*)
FROM host
WHERE disabled = ""
AND poller_id = ?',
array($config['poller_id']));
$down_hosts = db_fetch_cell_prepared('SELECT COUNT(*)
FROM host
WHERE status = 1
AND disabled = ""
AND poller_id = ?',
array($config['poller_id']));
} else {
$total_hosts = db_fetch_cell('SELECT COUNT(*)
FROM host
WHERE disabled = ""');
$down_hosts = db_fetch_cell('SELECT COUNT(*)
FROM host
WHERE status = 1
AND disabled = ""');
}
thold_debug('Prune old data started.');
thold_prune_old_data();
thold_debug('Prune old data finished.');
/* record the end time */
$end = microtime(true);
/* log statistics */
$thold_stats = sprintf('Time:%0.2f Tholds:%d TotalDevices:%d DownDevices:%d NewDownDevices:%d', $end - $start, $tholds, $total_hosts, $down_hosts, $nhosts);
cacti_log('THOLD STATS: ' . $thold_stats, false, 'SYSTEM');
set_config_option('stats_thold', $thold_stats);
} else {
/* collect some stats */
$now = microtime(true);
/* get the last update from the daemon */
$heartbeat = read_config_option('thold_daemon_heartbeat');
$poller_interval = read_config_option('poller_interval');
$curtime = time();
$frequency = read_config_option('thold_daemon_dead_notification');
if ($frequency > 0) {
if (empty($heartbeat)) {
$last_notification = read_config_option('thold_daemon_down_notify_time');
if ($curtime - $last_notification > $frequency) {
admin_email('Thold Daemon Not Started', 'WARNING: You have elected to use the Thold Daemon, but it appears not to be running. Please correct this right away');
set_config_option('thold_daemon_down_notify_time', $curtime);
}
} elseif ($now - $heartbeat > 3 * $poller_interval) {
$last_notification = read_config_option('thold_daemon_down_notify_time');
if ($curtime - $last_notification > $frequency) {
admin_email('Thold Daemon Down', 'WARNING: You have elected to use the Thold Daemon, but it appears have stopped running. Please correct this right away');
set_config_option('thold_daemon_down_notify_time', $curtime);
}
}
}
$threads = read_config_option('thold_max_concurrent_processes');
if (read_config_option('remote_storage_method') == 1) {
/* host_status processed by thold server */
$nhosts = thold_update_host_status();
thold_cleanup_log();
$total_hosts = db_fetch_cell_prepared('SELECT COUNT(*)
FROM host
WHERE disabled = ""
AND poller_id = ?',
array($config['poller_id']));
$down_hosts = db_fetch_cell_prepared('SELECT COUNT(*)
FROM host
WHERE status = 1
AND disabled = ""
AND poller_id = ?',
array($config['poller_id']));
$thresholds = db_fetch_cell_prepared('SELECT COUNT(*)
FROM thold_data
INNER JOIN host
ON host.id = thold_data.host_id
WHERE poller_id = ?
AND disabled = ""',
array($config['poller_id']));
} else {
/* host_status processed by thold server */
$nhosts = thold_update_host_status();
thold_cleanup_log();
$total_hosts = db_fetch_cell('SELECT COUNT(*)
FROM host
WHERE disabled=""');
$down_hosts = db_fetch_cell('SELECT COUNT(*)
FROM host
WHERE status = 1
AND disabled = ""');
$thresholds = db_fetch_cell('SELECT COUNT(*)
FROM thold_data
INNER JOIN host
ON host.id = thold_data.host_id
WHERE disabled = ""');
}
thold_prune_old_data();
/* record the end time */
$end = microtime(true);
/* log statistics */
$thold_stats = sprintf('Time:%0.2f TotalDevices:%u DownDevices:%u NewDownDevices:%u Threads:%u Thresholds:%u',
$end - $start, $total_hosts, $down_hosts, $nhosts, $threads, $thresholds);
cacti_log('THOLD POLLER STATS: ' . $thold_stats, false, 'SYSTEM');
set_config_option('stats_thold_' . $config['poller_id'], $thold_stats);
}
}
/**
* display_version - displays version information
*/
function display_version() {
global $config;
if (!function_exists('plugin_thold_version')) {
include_once($config['base_path'] . '/plugins/thold/setup.php');
}
$info = plugin_thold_version();
print "Cacti Thold Master Process, Version " . $info['version'] . ", " . COPYRIGHT_YEARS . "\n";
}
/**
* display_help - displays the usage of the function
*/
function display_help () {
display_version();
print "\nusage: poller_thold.php [--debug] [--force]\n\n";
print "This binary run various Threshold data collection and\n";
print "Management function.\n\n";
print "--force - Force all the service checks to run now\n";
print "--debug - Display verbose output during execution\n\n";
}