forked from Cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
poller_dsstats.php
executable file
·228 lines (194 loc) · 8.16 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
#!/usr/bin/env php
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2021 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/ |
+-------------------------------------------------------------------------+
*/
/* tick use required as of PHP 4.3.0 to accomodate signal handling */
declare(ticks = 1);
require(__DIR__ . '/include/cli_check.php');
require_once($config['base_path'] . '/lib/poller.php');
require_once($config['base_path'] . '/lib/rrd.php');
require_once($config['base_path'] . '/lib/dsstats.php');
/* display_version - displays version information */
function display_version() {
$version = CACTI_VERSION_TEXT_CLI;
print "Cacti Data Source Staitistcs Poller, Version $version " . COPYRIGHT_YEARS . "\n";
}
/* display_help - generic help screen for utilities
@returns - null */
function display_help () {
display_version();
print "\nusage: poller_dsstats.php [--force] [--debug]\n\n";
print "Cacti's Data Source Statics poller. This poller will periodically\n";
print "calculate Data Source statistics for Cacti and works in conjunction\n";
print "with Cacti's performance boosting popller as required.\n\n";
print "Optional:\n";
print " --force - Force the execution of a update process\n";
print " --debug - Display verbose output during execution\n\n";
}
/* sig_handler - provides a generic means to catch exceptions to the Cacti log.
@arg $signo - (int) the signal that was thrown by the interface.
@returns - null */
function sig_handler($signo) {
switch ($signo) {
case SIGTERM:
case SIGINT:
cacti_log('WARNING: DSStats Poller terminated by user', false, 'dsstats');
/* tell the main poller that we are done */
set_config_option('dsstats_poller_status', 'terminated - end time:' . date('Y-m-d G:i:s'));
exit(1);
break;
default:
/* ignore all other signals */
}
}
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
$debug = false;
$forcerun = false;
$forcerun_maint = false;
global $total_system_time, $total_user_time, $total_real_time;
$total_system_time = 0;
$total_user_time = 0;
$total_real_time = 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':
$forcerun = true;
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 . "\n\n";
display_help();
exit(1);
}
}
}
/* 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 (!register_process_start('dsstats', 'master', $config['poller_id'], read_config_option('dsstats_timeout'))) {
exit(0);
}
/* only run if enabled, or forced */
if (read_config_option('dsstats_enable') == 'on' || $forcerun) {
/* 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');
$hourly_window = date('Y-m-d H:i:s', time() - (read_config_option('dsstats_hourly_duration') * 60));
/* 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');
/* 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));
}
/* 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)");
log_dsstats_statistics('HOURLY');
/* 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();
if ($boost_active == 'on') {
/* boost will spawn the collector */
} else {
if ($daily_interval == 'boost' || $boost_active == 'on') {
cacti_log("WARNING: Daily update interval set to 'boost' and Boost Plugin Not Enabled, reseting 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 ($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 (($last_run_daily != '' && ((strtotime($last_run_daily) + ($daily_interval * 60)) < $current_time)) || $forcerun) {
/* search for range errors */
dsstats_find_log_bad_maxvalues();
/* run the daily stats */
set_config_option('dsstats_last_daily_run_time', date('Y-m-d G:i:s', $current_time));
dsstats_get_and_store_ds_avgpeak_values('daily');
log_dsstats_statistics('DAILY');
}
}
/* lastly, let's see if it's time to run the major stats */
if ($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 (($last_run_major != '' && ($next_major_day < $current_time)) || $forcerun) {
/* 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));
dsstats_get_and_store_ds_avgpeak_values('weekly');
dsstats_get_and_store_ds_avgpeak_values('monthly');
dsstats_get_and_store_ds_avgpeak_values('yearly');
log_dsstats_statistics('MAJOR');
}
}
dsstats_debug('Polling Ending');
unregister_process('dsstats', 'master', $config['poller_id']);
exit(0);