Certain graphs stopped graphing

Post general support questions here that do not specifically fall into the Linux or Windows categories.

Moderators: Developers, Moderators

Post Reply
technos
Posts: 1
Joined: Tue Jul 16, 2013 5:33 pm

Certain graphs stopped graphing

Post by technos »

Checked the Log File and found these:

07/16/2013 05:45:22 PM - PHPSVR: Poller[0] WARNING: Function does not exist INC: 'ss_netsnmp_memory.php' FUNC: 'ss_netsnmp_memory' PARMS: '64.29.65.222::NetEnterRO:::::::161:500'
07/16/2013 05:45:22 PM - PHPSVR: Poller[0] WARNING: PHP Script File to be included, does not exist
07/16/2013 05:44:57 PM - SPINE: Poller[0] Host[2] ERROR: Problems parsing Multi SNMP OID! (oid: ), Set MAX_OIDS to 1 for this host to isolate bad OID

Any advice would be greatly appreciated! Thank you.
User avatar
gandalf
Developer
Posts: 22383
Joined: Thu Dec 02, 2004 2:46 am
Location: Muenster, Germany
Contact:

Re: Certain graphs stopped graphing

Post by gandalf »

Well, this are two issues and all is explained in the error messages
1. a function is missing in your script
2. set the max oids of that host to 1 as advised
R.
Praveen521
Posts: 4
Joined: Wed Aug 30, 2017 12:25 pm

Re: Certain graphs stopped graphing

Post by Praveen521 »

hey technos,
was this issue resolved for you..? i moved my cacti from 0.8.8f to 1.1.21 and i ran in to the same issue and memory graphs aren't working for me with the same error: PHPSVR WARNING: Function does not exist INC: 'ss_netsnmp_memory.php.
any help would be appreciated.

Thanks
Praveen
ivan-impuls
Posts: 23
Joined: Mon Jun 15, 2009 1:09 am

Re: Certain graphs stopped graphing

Post by ivan-impuls »

Hello all. Same issue. After transition to version 1.1.28 from version 0.8.8 at first the script didn't work. Then I have added a line to a script:

Code: Select all

$no_http_headers = true;


After first line <?php

After that the script is started from cmd:

Code: Select all

root@it-vm:/usr/share/cacti/site/scripts# php ss_netsnmp_memory.php 127.0.0.1:1:public::::::::
totalReal:506200 availReal:30444 totalSwap:471036 availSwap:293116 memBuffer:32960 memCached:154720 usedReal:288076 usedSwap:177920
And script is started from script server:

Code: Select all

root@it-vm:/usr/share/cacti/site# php script_server.php
PHP Script Server has Started - Parent is cmd
/usr/share/cacti/site/scripts/ss_netsnmp_memory.php ss_netsnmp_memory 127.0.0.1:1:public::::::::
totalReal:506200 availReal:34868 totalSwap:471036 availSwap:293628 memBuffer:32124 memCached:153460 usedReal:285748 usedSwap:177408
But from cacti doesn't work.
In cacti log:

Code: Select all

2017-11-30 14:11:02 - SPINE: Poller[1] WARNING: Invalid Response, Device[localhost] Graphs[localhost - Memory Usage, localhost - Memory Usage] DS[35]
Please help.
ivan-impuls
Posts: 23
Joined: Mon Jun 15, 2009 1:09 am

Re: Certain graphs stopped graphing

Post by ivan-impuls »

I specify, in cacti log sometimes there are lines:

Code: Select all

[<snmp3_priv_protocol>]:[<snmp32017/11/30 14:56:03 - SYSTEM STATS: Time:2.2281 Method:spine Processes:1 Threads:10 Hosts:1 HostsPerProcess:1 DataSources:8 RRDsProcessed:6
[<snmp3_username>]:[<snmp3_password>]:[<snmp3_auth_protocol>]:[<snmp3_priv_password>]:\
Syntax: ss_netsnmp_memory.php <hostname>:<snmp_version>:[<snmp_community>]:\
2017-11-30 14:56:02 - SPINE: Poller[1] WARNING: Invalid Response, Device[localhost] Graphs[localhost - Memory Usage, localhost - Memory Usage] DS[36] 
Sorry, my system
debian 9.2
mariadb Ver 15.1 Distrib 10.1.26-MariaDB, for debian-linux-gnu (i686) using readline 5.2
PHP 7.0.25-1 (cli) (built: Oct 27 2017 13:41:09) ( NTS )
cacti 1.1.28
cacti-spine 1.1.21

I have found the reason, but I don't know what to do.
The reason is that the line which registers in the database as an argument contains additional quotes:

Code: Select all

/usr/share/cacti/site/scripts/ss_netsnmp_memory.php ss_netsnmp_memory '127.0.0.1':'2':'public':'':'':::::'161':'500'
And a script server launching this script with such argument gives an error. You remove quotes in database cacti in table poller item - everything works.
Very strange the fact that if to start a script from the console, then even it will work with quotes:
root@it-vm:/usr/share/cacti/site/scripts# php ss_netsnmp_memory.php '127.0.0.1':'1':'public':'':'':::::'161':'500'
totalReal:506200 availReal:21772 totalSwap:471036 availSwap:247572 memBuffer:45180 memCached:147584 usedReal:291664 usedSwap:223464
Here also discussion of this mistake. viewtopic.php?f=12&t=11376&hilit=ss_net ... y&start=60. Who for her responsible - mariadb or cacti - is unclear.

As a crutch, the decision to edit a line in the database manually. But after each saving "Data Input Method" of a quote will be added again.
They will be added also after creation of the new graph.
cecukemon
Posts: 3
Joined: Wed Dec 13, 2017 2:32 pm

Re: Certain graphs stopped graphing

Post by cecukemon »

Same problem here. The ss_netsnmp_memory graph isn't working anymore since the update to 1.1.28, and the logfile shows the script options have quotes around them. I have cacti installed on another system with almost exactly the same setup (config, graphs etc) except it hasn't been updated yet and is still running 1.1.26, the ss_netsnmp_memory graph works there and in the logfile, the script call does not have the quotes around the options.

I also have a similar problem with third-party scripts (Percona mysql templates) which aren't being graphed on 1.1.28 anymore, and according to the logfile the options to the script calls have quotes around them too, which they didn't on 1.1.26 - but I haven't had time to really drill down into that problem so I'm not sure it's actually the same problem.

Affected system: FreeBSD 10.3; 5.5.53-MariaDB; Cacti 1.1.28; Cacti-spine 1.1.27; php 5.6.32.

Edit: to fix manually, check the arg1 column in the poller_item table in the cacti database. Rebuilding poller cache will reset the changes.
netniV
Cacti Guru User
Posts: 3441
Joined: Sun Aug 27, 2017 12:05 am

Re: Certain graphs stopped graphing

Post by netniV »

Actually, it is more than that. It would appear that for some time the cmd.php and script_server.php have been putting quotes around the fields they use. I now have a working script_server version of this netsnmp script that is 1.1.x compatible though you may have to save your data sources to get the updated template to fully work.

I'm just waiting on an answer to another query before I release it and I will probably have to see if I can contact Eric (the original author) so he's aware of the changes I had to make. The biggest being that you should always use spaces now between script_server scripts because of the quoted parameters though interestingly a standard data query script (that doesn't use script server) doesn't have the same restriction.

Screenshot of working graph:
Image
Cacti Developer & Release Manager
The Cacti Group

Director
BV IT Solutions Ltd

+--------------------------------------------------------------------------+

Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
cecukemon
Posts: 3
Joined: Wed Dec 13, 2017 2:32 pm

Re: Certain graphs stopped graphing

Post by cecukemon »

Thanks, looking forward to your patch.
netniV
Cacti Guru User
Posts: 3441
Joined: Sun Aug 27, 2017 12:05 am

Re: Certain graphs stopped graphing

Post by netniV »

Cacti Developer & Release Manager
The Cacti Group

Director
BV IT Solutions Ltd

+--------------------------------------------------------------------------+

Cacti Resources:
Cacti Website (including releases)
Cacti Issues
Cacti Development Releases
Cacti Development Documentation
cecukemon
Posts: 3
Joined: Wed Dec 13, 2017 2:32 pm

Re: Certain graphs stopped graphing

Post by cecukemon »

Sorry for the late reply. The updated version works fine for me, the graph is graphing again. Thank you for your work!
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests