|
|
| Author |
Message |
gandalf Developer
Joined: 02 Dec 2004 Posts: 12295 Location: Muenster, Germany
|
Posted: Sat Jul 29, 2006 4:59 am Post subject: [HOWTO] Debug NaN's in your graphs |
|
|
Please find current release of this HowTo at the Cacti Documentation Site at http://docs.cacti.net/node/283
Cacti users sometimes complain about NaN's in their graphs. Unfortunately, there are several reasons for this result. The following is a step-by-step procedure I recommend for debugging this
To debug the NaN's:
1. Check Cacti Log File
Please have a look at your cacti log file. Usually, you'll find it at <path_cacti>/log/cacti.log. Else see "Settings -> Paths". Check for this kind of error:
| Code: | | CACTID: Host[...] DS[....] WARNING: SNMP timeout detected [500 ms], ignoring host '........' | For "reasonable" timeouts, this may be related to a snmpbulkwalk issue. To change this, see "Settings -> Poller" and lower the value for The Maximum SNMP OID's Per SNMP Get Request. Start at a value of 1 and increase it again, if the poller starts working. Some agent's don't have the horsepower to deliver that many OID's at a time. Therefore, we can reduce the number for those older/underpowered devices.
2. Check Basic Data Gathering:
For scripts, run them as cactiuser from cli to check basic functionality. E.g. for a perl script named your-perl-script.pl with parameters "p1 p2" under *nix this would look like:
| Code: | su - cactiuser
/full/path/to/perl your-perl-script.pl p1 p2
... (check output) |
For snmp, snmpget the _exact_ OID you're asking for, using same community string and snmp version as defined within cacti. For an OID of .1.3.6.1.4.something, community string of "very-secret" and version 2 for target host "target-host" this would look like
| Code: | snmpget -c very-secret -v 2c target-host .1.3.6.1.4.something
.... (check output) |
3. Check cacti's poller:
First, note the poller you're using (from crontab, it's _always_ poller.php that's executed. But you may configure cmd.php _or_ cactid from "Settings")
Now, clear ./log/cacti.log (or rename it to get a fresh start)
Then, change "Settings -> Poller Logging Level" to DEBUG for _one_ polling cycle. You may rename this log as well to avoid more stuff added to it with subsequent polling cycles.
Now, find the host/data source in question. The Host[<id>] is given numerically, the <id> being a specific number for that host. Find this <id> from the Devices menue when editing the host: The url contains a string like &id=<id>.
Check, whether the output is as expected. If not, check your script (e.g. /full/path/to/perl). If ok, proceed to next step
4. Check MySQL updating
In most cases, this step make be skipped. You may want to return to this step, if the next one fails (e.g. no rrdtool update to be found)
From debug log, please find the MySQL update statement for that host concerning table poller_output. On very rare occasions, this will fail. So please copy that sql statement and paste it to a mysql session started from cli. This may as well be done from some tool like phpmyadmin. Check the sql return code.
5. Check rrd file updating
Down in the same log, you should find some | Code: | | rrdtool update <filename> --template ... | You should find exactly one update statement for each file.
RRD files should be created by the poller. If it does not create them, it will not fill them either. If it does, please check your Poller Cache from Utilities and search for your target. Does the query show up here?
6. Check rrd file numbers
You're perhaps wondering about this step, if the former was ok. But due to data sources MINIMUM and MAXIMUM definitions, it is possible, that valid updates for rrd files are suppressed, because MINIMUM was not reached or MAXIMUM was exceeded.
Assuming, you've got some valid rrdtool update in step 3, perform a | Code: | | rrdtool fetch <rrd file> AVERAGE | and look at the last 10-20 lines. If you find NaN's there, perform | Code: | | rrdtool info <rrd file> | and check the ds[...].min and ds[...].max entries, e.g. | Code: | ds[loss].min = 0.0000000000e+00
ds[loss].max = 1.0000000000e+02 | In this example, MINIMUM = 0 and MAXIMUM = 100. For a ds.[...].type=GAUGE verify, that e.g. the number returned by the script does not exceed ds[...].MAX (same holds for MINIMUM, respectively).
If you run into this, please do not only update the data source definition within the Data Template, but perform a | Code: | | rrdtool tune <rrd file> --maximum <ds-name>:<new ds maximum> | for all existing rrd files belonging to that Data Template.
7. Check rrdtool graph statement
Last resort would be to check, that the corract data sources are used. Goto Graph Management and select your Graph. Enable DEBUG Mode to find the whole rrdtool graph statement. You should notice the DEF statements. They specify the rrd file and data source to be used. You may check, that all of them are as wanted.
Miscellaneous
Up to current cacti 0.8.6h, table poller_output may increase beyond reasonable size. This is commonly due to php.ini's memory settings of 8MB default. Change this to at least 64 MB.
To check this, please run follwoing sql from mysql cli (or phpmyadmin or the like) | Code: | | select count(*) from poller_output; | . If the result is huge, you may get rid of those stuff by | Code: | | truncate table poller_output; |
As of current SVN code for upcoming cacti 0.9, I saw measures were taken on both issues (memory size, truncating poller_output).
RPM Installation?
Most rpm installations will setup the crontab entry now. If you've followed the installation instructions to the letter (which you should always do ), you may now have two poller running. That's not a good thing, though. Most rpm installations will setup cron in /etc/cron.d/cacti.
Now, please check all your crontabs, especially /etc/crontab and crontabs of users root and cactiuser. Leave only one poller entry for all of them. Personally, I've chosen /etc/cron.d/cacti to avoid problems when updating rpm's. Mosten often, you won't remember this item when updating lots of rpm's, so I felt more secure to put it here. And I've made some slight modifications, see | Code: | | */5 * * * * cactiuser /usr/bin/php /var/www/html/cacti/poller.php > /var/local/log/poller.log 2>&1 |
This will produce a file /var/local/log/poller.log, which includes some additionals information from each poller's run, such as rrdtool errors. It occupies only some few bytes and will be overwritten each time.
Please comment, if these instructions may be difficult to understand or to follow. If you find other aspects worth to be checked, I'd like to hear from you, too.
Happy cactiing
Reinhard
Added new chapter 3 on MySQL debugging
Added new chapter on "Miscellaneous" stuff
Added new chapter on "RPM Installation" for crontab related issues
Added new chapter on Max OID get requests, courtesy http://forums.cacti.net/viewtopic.php?t=17839
Last edited by gandalf on Wed Jun 18, 2008 1:31 pm; edited 9 times in total |
|
| Back to top |
|
 |
BSOD2600 Cacti Moderator
Joined: 08 May 2004 Posts: 6791 Location: WA, USA
|
Posted: Sat Jul 29, 2006 11:12 am Post subject: |
|
|
Great guide as usual . Might want to add it to your signature... |
|
| Back to top |
|
 |
gandalf Developer
Joined: 02 Dec 2004 Posts: 12295 Location: Muenster, Germany
|
Posted: Sun Jul 30, 2006 6:36 am Post subject: |
|
|
| BSOD2600 wrote: | Great guide as usual . Might want to add it to your signature... | If only there was enough space left in it
Reinhard |
|
| Back to top |
|
 |
BSOD2600 Cacti Moderator
Joined: 08 May 2004 Posts: 6791 Location: WA, USA
|
Posted: Sun Jul 30, 2006 2:46 pm Post subject: |
|
|
| Get rony to increase the limit. I had to remove the coloring from mine to make the text fit... |
|
| Back to top |
|
 |
rony Developer/Forum Admin
Joined: 17 Nov 2003 Posts: 5453 Location: Wisconsin, USA
|
Posted: Mon Jul 31, 2006 9:24 am Post subject: |
|
|
Get more creative!  |
|
| Back to top |
|
 |
gandalf Developer
Joined: 02 Dec 2004 Posts: 12295 Location: Muenster, Germany
|
Posted: Tue Oct 03, 2006 2:13 pm Post subject: |
|
|
Wow, you've got it. Suppose, I've to start soon ...
Reinhard |
|
| Back to top |
|
 |
srikrishnak
Joined: 01 Oct 2006 Posts: 3
|
Posted: Tue Oct 03, 2006 7:40 pm Post subject: |
|
|
great guide. Puzlled about NAN and thx to google it brought me to the right place.
Thx a ton |
|
| Back to top |
|
 |
Criggie
Joined: 21 Jul 2007 Posts: 4 Location: Christchurch, New Zealand
|
Posted: Sat Jul 21, 2007 4:33 am Post subject: Another cause |
|
|
Hi - I found this guide most useful, and with it I fixed all but one of my non-working graphs.
The other graph was a script that would return 0 for values, rather than NAN.
It was running smartctl which was complaining "you are not root" so a quick chmod +s on the script fixed that problem.
Secondly, the script was taking several seconds to run. So cacti was logging a "U" for unparseable in the debug output, and was recording NAN. So my fix there was to make the script run faster - it has to complete in less than one second, and the age of my box make that hard. |
|
| Back to top |
|
 |
gandalf Developer
Joined: 02 Dec 2004 Posts: 12295 Location: Muenster, Germany
|
Posted: Sat Jul 21, 2007 7:00 am Post subject: |
|
|
Thanks. I will add your comments to http://docs.cacti.net/node/283 as this is the only supported version of this HowTo, ATM
Reinhard |
|
| Back to top |
|
 |
inetquestion Cacti User
Joined: 01 Feb 2006 Posts: 58 Location: Charlotte NC
|
Posted: Sat Aug 11, 2007 9:23 am Post subject: |
|
|
I've been using your script to debug a problem over the past week or so and thought I would give you some additional items which may help others...
My problem was the values were being returned from the data input method were set to the wrong format in the data template. I was getting a mixture of integers and floating point numbers. Data sources which were set to gauge would accept either type. Those set to counter were rejecting updates for floating point numbers. Modifying the original script so that only integers were returned fixed the issue. The only way I was able to find this was to pull the "rrdtool update...." statement from the logs and run it manually from the command line. this showed me exactly what the errors were. There may be another way I could have gotten this info, but I still don't know that part....
Regards,
-Inet |
|
| Back to top |
|
 |
gandalf Developer
Joined: 02 Dec 2004 Posts: 12295 Location: Muenster, Germany
|
Posted: Sat Aug 11, 2007 12:21 pm Post subject: |
|
|
I will add this as well. But please find the current docs at the second link of my signature
Reinhard |
|
| Back to top |
|
 |
|
Powered by phpBB © 2001, 2005 phpBB Group
|
|