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
|
#!/usr/bin/env php
<?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/ |
+-------------------------------------------------------------------------+
*/
require(__DIR__ . '/../site/include/cli_check.php');
require_once($config['base_path'] . '/lib/snmp.php');
require_once($config['base_path'] . '/lib/data_query.php');
ini_set('max_execution_time', '0');
if ($config['poller_id'] > 1) {
print "FATAL: This utility is designed for the main Data Collector only" . PHP_EOL;
exit(1);
}
/* process calling arguments */
$parms = $_SERVER['argv'];
array_shift($parms);
$debug = false;
$host_id = 'all';
$host_descr = '';
if (cacti_sizeof($parms)) {
foreach($parms as $parameter) {
if (strpos($parameter, '=')) {
list($arg, $value) = explode('=', $parameter, 2);
} else {
$arg = $parameter;
$value = '';
}
switch ($arg) {
case '-id':
case '--id':
case '--host-id':
$host_id = $value;
break;
case '-qid':
case '--qid':
$query_id = $value;
break;
case '-d':
case '--debug':
$debug = 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);
}
}
} else {
print "ERROR: You must supply input parameters\n\n";
display_help();
exit(1);
}
$sql_where = "WHERE data_input_fields.type_code='output_type'";
/* determine the hosts to reindex */
if (strtolower($host_id) == 'all') {
/* NOP */
}else if (is_numeric($host_id)) {
$sql_where .= ($sql_where != '' ? ' AND ' : ' WHERE ' ) . 'data_local.host_id = ' . $host_id;
} else {
print "ERROR: You must specify either a host_id or 'all' to proceed.\n";
display_help();
exit;
}
/* determine data queries to rerun */
if (is_numeric($query_id)) {
$sql_where .= ($sql_where != '' ? ' AND ' : ' WHERE ' ) . 'data_local.snmp_query_id= ' . $query_id;
} else {
print "ERROR: You must specify either a query_id or 'all' to proceed.\n";
display_help();
exit;
}
/* get all object that have to be scanned */
$data_queries = db_fetch_assoc("SELECT data_local.host_id, data_local.snmp_query_id,
data_local.snmp_index, data_template_data.local_data_id, data_template_data.data_input_id,
data_input_data.data_template_data_id, data_input_data.data_input_field_id, data_input_data.value
FROM data_local
LEFT JOIN data_template_data
ON data_local.id=data_template_data.local_data_id
LEFT JOIN data_input_fields
ON data_template_data.data_input_id = data_input_fields.data_input_id
LEFT JOIN data_input_data
ON data_template_data.id = data_input_data.data_template_data_id
AND data_input_fields.id = data_input_data.data_input_field_id
$sql_where");
/* issue warnings and start message if applicable */
print "WARNING: Do not interrupt this script. Reordering can take quite some time\n";
debug("There are '" . cacti_sizeof($data_queries) . "' data query index items to run");
$i = 1;
if (cacti_sizeof($data_queries)) {
foreach ($data_queries as $data_query) {
if (!$debug) print '.';
/* fetch current index_order from data_query XML definition and put it into host_snmp_query */
update_data_query_sort_cache($data_query['host_id'], $data_query['snmp_query_id']);
/* build array required for function call */
$data_query['snmp_index_on'] = get_best_data_query_index_type($data_query['host_id'], $data_query['snmp_query_id']);
/* as we request the output_type, 'value' gives the snmp_query_graph_id */
$data_query['snmp_query_graph_id'] = $data_query['value'];
debug("Data Query #'" . $i . "' host: '" . $data_query['host_id'] .
"' SNMP Query Id: '" . $data_query['snmp_query_id'] .
"' Index: " . $data_query['snmp_index'] .
"' Index On: " . $data_query['snmp_index_on']
);
update_snmp_index_order($data_query);
$i++;
}
}
/* display_version - displays version information */
function display_version() {
$version = get_cacti_cli_version();
print "Cacti Reorder Data Query Utility, Version $version, " . COPYRIGHT_YEARS . "\n";
}
/* display_help - displays the usage of the function */
function display_help () {
display_version();
print "\nusage: reorder_data_query.php --host-id=[id|all] [--qid=[query_id]] [--debug|-d]\n\n";
print "A utility to Re-order Cacti Data Queries for a Device or system in batch mode.\n\n";
print "Required:\n";
print " --host-id=N - The Device id to be reindexed; defaults to 'all' to reindex all Devices.\n\n";
print "Optional:\n";
print " --qid=query_id - Only index on a specific data query id\n";
print " --debug | -d - Display verbose output during execution\n\n";
}
function debug($message) {
global $debug;
if ($debug) {
print "DEBUG: " . trim($message) . "\n";
}
}
|