After upgraded to version 0.8.7c I´ve got a strange problem... When I shall create a new graph I got following output from graphs_new.php??
For example I´ve got "=" in Index:
Index
=1
it should be
Index
1
Any who knows to correct this??
Thanks
Daniel
Strange output?
Moderators: Developers, Moderators
Strange output?
- Attachments
-
- graphs_new.php?host_id=25
- strange.jpg (197.37 KiB) Viewed 803 times
same problem, fix doesn't work
I am having the same problem as well... Version 0.8.7c
I went to line 342 modified
to
Still not working...
I even deleted the device and added it back in... same result.
I went to line 342 modified
Code: Select all
$string = trim(substr($string, strpos($string, " = ")));
Code: Select all
$string = trim(substr($string, strpos($string, "=")));
I even deleted the device and added it back in... same result.
Any other suggestions?+ Executing SNMP walk for list of indexes @ '.1.3.6.1.2.1.2.2.1.1'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.1' value: '= 1'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.2' value: '= 2'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.3' value: '= 3'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.4' value: '= 4'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.5' value: '= 5'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.6' value: '= 6'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.7' value: '= 7'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.8' value: '= 8'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.9' value: '= 9'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.10' value: '= 10'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.11' value: '= 11'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.12' value: '= 12'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.13' value: '= 13'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.14' value: '= 14'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.15' value: '= 15'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.16' value: '= 16'
Okay it turns out you need to go to line 342 and find:
change to
Now everything seems to be working right!
Code: Select all
$string = trim(substr($string, strpos($string, " = ")));
Code: Select all
$string = trim(ereg_replace(".*= ?", "", $string));
+ Executing SNMP walk for list of indexes @ '.1.3.6.1.2.1.2.2.1.1'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.1' value: '1'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.2' value: '2'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.3' value: '3'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.4' value: '4'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.5' value: '5'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.6' value: '6'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.7' value: '7'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.8' value: '8'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.9' value: '9'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.10' value: '10'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.11' value: '11'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.12' value: '12'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.13' value: '13'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.14' value: '14'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.15' value: '15'
+ Index found at OID: '.1.3.6.1.2.1.2.2.1.1.16' value: '16'
Who is online
Users browsing this forum: No registered users and 0 guests