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
|
<?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/ |
+-------------------------------------------------------------------------+
*/
include('./include/auth.php');
include_once($config['base_path'] . '/lib/spikekill.php');
$debug = false;
if (isset_request_var('method')) {
switch(get_nfilter_request_var('method')) {
case 'stddev':
case 'float':
case 'variance':
case 'fill':
break;
default:
print __("FATAL: Spike Kill method '%s' is Invalid", html_escape(get_nfilter_request_var('method'))) . PHP_EOL;
exit(1);
break;
}
}
if (is_realm_allowed(1043)) {
$local_data_ids = db_fetch_assoc_prepared('SELECT DISTINCT data_template_rrd.local_data_id
FROM graph_templates_item
LEFT JOIN data_template_rrd
ON graph_templates_item.task_item_id=data_template_rrd.id
WHERE graph_templates_item.local_graph_id = ?',
array(get_filter_request_var('local_graph_id')));
$results = '';
if (cacti_sizeof($local_data_ids)) {
foreach($local_data_ids as $local_data_id) {
$data_source_path = get_data_source_path($local_data_id['local_data_id'], true);
if ($data_source_path != '') {
$html = true;
$dryrun = false;
$out_start = '';
$out_end = '';
$avgnan = '';
$method = '';
$rrdfile = $data_source_path;
if (isset_request_var('dryrun')) {
$dryrun = true;
}
if (isset_request_var('method')) {
$method = get_nfilter_request_var('method');
}
if (isset_request_var('avgnan')) {
$avgnan = get_nfilter_request_var('avgnan');
}
if (isset_request_var('outlier-start')) {
$out_start = get_nfilter_request_var('outlier-start');
}
if (isset_request_var('outlier-end')) {
$out_end = get_nfilter_request_var('outlier-end');
}
$spiker = new spikekill($rrdfile, $method, $avgnan, '', $out_start, $out_end);
$spiker->dryrun = $dryrun;
$spiker->html = $html;
$result = $spiker->remove_spikes();
if ($debug) {
if (!$result) {
cacti_log("ERROR: SpikeKill failed for $rrdfile. Message is " . $spiker->get_errors(), false, 'SPIKEKILL');
} else {
cacti_log("NOTICE: SpikeKill succeeded for $rrdfile. Message is " . $spiker->get_output(), false, 'SPIKEKILL');
}
} else {
if (!$result) {
$results = $spiker->get_errors();
} else {
$results = $spiker->get_output();
}
}
}
}
}
print json_encode(array('local_graph_id' => get_request_var('local_graph_id'), 'results' => $results));
} else {
print __("FATAL: Spike Kill Not Allowed") . PHP_EOL;
}
|