|
|
| Author |
Message |
TheWitness Developer
Joined: 14 May 2002 Posts: 9736 Location: MI, USA
|
Posted: Wed Nov 12, 2008 10:16 am Post subject: |
|
|
run
Then correct the syntax. |
|
| Back to top |
|
 |
Evgen787
Joined: 31 Oct 2008 Posts: 18
|
Posted: Mon Nov 17, 2008 4:03 am Post subject: |
|
|
| Code: |
# which php
# /usr/local/bin/php
|
|
|
| Back to top |
|
 |
jmax
Joined: 06 Nov 2008 Posts: 2
|
Posted: Mon Nov 17, 2008 9:56 am Post subject: |
|
|
I have a similar problem with slb_virtualserver for CSM after upgrading to 0.8.7b.
The Verbose query looks ok (it seems to discover all the virtal servers) but the graph creation doesn't work.
I am getting the following message when creating a graph:
+ Created graph : testjm-2 -V- |query_VirtualServer|:|query_slbVirtualPort|
and when looking at the graph debug, I get:
/usr/bin/rrdtool graph - \
--imgformat=PNG \
--start=-86400 \
--end=-300 \
--title="testjm-2 -V- |query_VirtualServer|:|query_slbVirtualPort|" \
--base=1000 \
--height=120 \
--width=500 \
--alt-autoscale-max \
--lower-limit=0 \
--vertical-label="Connections" \
DEF:a="/var/www/html/cacti/rra/testjm-2_numberofc_2164.rrd":HCTotal:AVERAGE \
DEF:b="/var/www/html/cacti/rra/testjm-2_numberofc_2164.rrd":NumberOfC:AVERAGE \
LINE1:a#0000FF:"Total" \
GPRINT:a:LAST:" Current\:%8.2lf %s" \
GPRINT:a:AVERAGE:"Average\:%8.2lf %s" \
GPRINT:a:MAX:"Maximum\:%8.2lf %s\n" \
AREA:b#00FF00:"Current" \
GPRINT:b:LAST:"Current\:%8.2lf %s" \
GPRINT:b:AVERAGE:"Average\:%8.2lf %s" \
GPRINT:b:MAX:"Maximum\:%8.2lf %s\n"
RRDTool Says:
ERROR: opening '/var/www/html/cacti/rra/testjm-2_numberofc_2164.rrd': No such file or directory
Could it be a similar problem to the one with host_disk?
Thanks,
JMax |
|
| Back to top |
|
 |
TheWitness Developer
Joined: 14 May 2002 Posts: 9736 Location: MI, USA
|
Posted: Mon Nov 17, 2008 7:38 pm Post subject: |
|
|
| Evgen787 wrote: |
| Code: |
# which php
# /usr/local/bin/php
|
|
Post your script.
TheWitness |
|
| Back to top |
|
 |
Evgen787
Joined: 31 Oct 2008 Posts: 18
|
Posted: Mon Nov 17, 2008 9:23 pm Post subject: |
|
|
Hi TheWitness, thanks to answers )
| Code: |
<?php
/* do NOT run this script through a web browser */
if (!isset($_SERVER["argv"][0]) || isset($_SERVER['REQUEST_METHOD']) || isset($_SERVER['REMOTE_ADDR'])) {
die("<br><strong>This script is only meant to run at the command line.</strong>");
}
$no_http_headers = true;
/* display No errors */
error_reporting(0);
include_once(dirname(__FILE__) . "/../lib/snmp.php");
if (!isset($called_by_script_server)) {
include_once(dirname(__FILE__) . "/../include/config.php");
array_shift($_SERVER["argv"]);
print call_user_func_array("ss_host_cpu", $_SERVER["argv"]);
}
function ss_host_cpu($hostname, $host_id, $snmp_auth, $cmd, $arg1 = "", $arg2 = "") {
$snmp = explode(":", $snmp_auth);
$snmp_version = $snmp[0];
$snmp_port = $snmp[1];
$snmp_timeout = $snmp[2];
$snmpv3_auth_username = "";
$snmpv3_auth_password = "";
$snmpv3_auth_protocol = "";
$snmpv3_priv_passphrase = "";
$snmpv3_priv_protocol = "";
$snmp_community = "";
if ($snmp_version == 3) {
$snmpv3_auth_username = $snmp[4];
$snmpv3_auth_password = $snmp[5];
$snmpv3_auth_protocol = $snmp[6];
$snmpv3_priv_passphrase = $snmp[7];
$snmpv3_priv_protocol = $snmp[8];
}else{
$snmp_community = $snmp[3];
}
$oids = array(
"index" => ".1.3.6.1.2.1.25.3.3.1",
"usage" => ".1.3.6.1.2.1.25.3.3.1"
);
if (($cmd == "index")) {
$arr_index = ss_host_cpu_get_indexes($hostname, $snmp_community, $snmp_version, $snmpv3_auth_username, $snmpv3_auth_password, $snmpv3_auth_protocol, $snmpv3_priv_passphrase, $snmpv3_priv_protocol, $snmp_port, $snmp_timeout);
for ($i=0;($i<sizeof($arr_index));$i++) {
print $arr_index[$i] . "\n";
}
} elseif ($cmd == "query") {
$arg = $arg1;
$arr_index = ss_host_cpu_get_indexes($hostname, $snmp_community, $snmp_version, $snmpv3_auth_username, $snmpv3_auth_password, $snmpv3_auth_protocol, $snmpv3_priv_passphrase, $snmpv3_priv_protocol, $snmp_port, $snmp_timeout);
$arr = ss_host_cpu_get_cpu_usage($hostname, $snmp_community, $snmp_version, $snmpv3_auth_username, $snmpv3_auth_password, $snmpv3_auth_protocol, $snmpv3_priv_passphrase, $snmpv3_priv_protocol, $snmp_port, $snmp_timeout);
for ($i=0;($i<sizeof($arr_index));$i++) {
if ($arg == "usage") {
print $arr_index[$i] . "!" . $arr[$i] . "\n";
}elseif ($arg == "index") {
print $arr_index[$i] . "!" . $arr_index[$i] . "\n";
}
}
} elseif ($cmd == "get") {
$arg = $arg1;
$index = rtrim($arg2);
$arr_index = ss_host_cpu_get_indexes($hostname, $snmp_community, $snmp_version, $snmpv3_auth_username, $snmpv3_auth_password, $snmpv3_auth_protocol, $snmpv3_priv_passphrase, $snmpv3_priv_protocol, $snmp_port, $snmp_timeout);
$arr = ss_host_cpu_get_cpu_usage($hostname, $snmp_community, $snmp_version, $snmpv3_auth_username, $snmpv3_auth_password, $snmpv3_auth_protocol, $snmpv3_priv_passphrase, $snmpv3_priv_protocol, $snmp_port, $snmp_timeout);
if (isset($arr_index[$index])) {
return $arr[$index];
} else {
return "ERROR: Invalid Return Value";
}
}
}
function ss_host_cpu_get_cpu_usage($hostname, $snmp_community, $snmp_version, $snmpv3_auth_username, $snmpv3_auth_password, $snmpv3_auth_protocol, $snmpv3_priv_passphrase, $snmpv3_priv_protocol, $snmp_port, $snmp_timeout) {
$arr = ss_host_cpu_reindex(cacti_snmp_walk($hostname, $snmp_community, ".1.3.6.1.2.1.25.3.3.1", $snmp_version, $snmpv3_auth_username, $snmpv3_auth_password, $snmp_port, $snmp_timeout, read_config_option("snmp_retries"), SNMP_POLLER));
$return_arr = array();
$j = 0;
for ($i=0;($i<sizeof($arr));$i++) {
if (is_numeric($arr[$i])) {
$return_arr[$j] = $arr[$i];
$j++;
}
}
return $return_arr;
}
function ss_host_cpu_get_indexes($hostname, $snmp_community, $snmp_version, $snmpv3_auth_username, $snmpv3_auth_password, $snmpv3_auth_protocol, $snmpv3_priv_passphrase, $snmpv3_priv_protocol, $snmp_port, $snmp_timeout) {
$arr = ss_host_cpu_reindex(cacti_snmp_walk($hostname, $snmp_community, ".1.3.6.1.2.1.25.3.3.1", $snmp_version, $snmpv3_auth_username, $snmpv3_auth_password, $snmp_port, $snmp_timeout, read_config_option("snmp_retries"), SNMP_POLLER));
$return_arr = array();
$j = 0;
for ($i=0;($i<sizeof($arr));$i++) {
if (is_numeric($arr[$i])) {
$return_arr[$j] = $j;
$j++;
}
}
return $return_arr;
}
function ss_host_cpu_reindex($arr) {
$return_arr = array();
for ($i=0;($i<sizeof($arr));$i++) {
$return_arr[$i] = $arr[$i]["value"];
}
return $return_arr;
}
?>
|
|
|
| Back to top |
|
 |
TheWitness Developer
Joined: 14 May 2002 Posts: 9736 Location: MI, USA
|
Posted: Tue Nov 18, 2008 7:05 am Post subject: |
|
|
This is not the SVN version! The following:
| Code: | | include_once(dirname(__FILE__) . "/../lib/snmp.php"); |
Has to be moved into the if block at the beginning of the code right after the global.php include.
TheWitness |
|
| Back to top |
|
 |
Evgen787
Joined: 31 Oct 2008 Posts: 18
|
Posted: Tue Nov 18, 2008 9:55 pm Post subject: |
|
|
Hi TheWitness!
Right?
| Code: |
if (!isset($called_by_script_server)) {
include_once(dirname(__FILE__) . "/../include/config.php");
include_once(dirname(__FILE__) . "/../lib/snmp.php");
array_shift($_SERVER["argv"]);
print call_user_func_array("ss_host_cpu", $_SERVER["argv"]);
}
|
Hm, not work. What is it SVN ? ) |
|
| Back to top |
|
 |
Evgen787
Joined: 31 Oct 2008 Posts: 18
|
Posted: Sun Nov 23, 2008 11:33 pm Post subject: |
|
|
How to solve this.. |
|
| Back to top |
|
 |
Evgen787
Joined: 31 Oct 2008 Posts: 18
|
Posted: Wed Dec 03, 2008 1:00 am Post subject: |
|
|
| Evgen787 wrote: | How to solve this.. |
Change | Code: | include_once(dirname(__FILE__) . "/../include/config.php");
| to | Code: | include_once(dirname(__FILE__) . "/../include/global.php");
|
Thats Works. |
|
| Back to top |
|
 |
|
Powered by phpBB © 2001, 2005 phpBB Group
|
|