Page 1 of 2
No proformance graph to display.
Posted: Thu Jan 28, 2016 7:22 am
by eric.lin826
Hi !
When I set the "check interval" to 1440, I got no proformance graph to display.
Is there anyone can help me?
Nagios XI 5.2.3
CentOS 6.7 x64
Re: No proformance graph to display.
Posted: Thu Jan 28, 2016 11:19 am
by hsmith
Did you wait a day after making the change? If you changed that interval, it would need to collect new data.
Re: No proformance graph to display.
Posted: Mon Feb 01, 2016 5:54 am
by eric.lin826
Yes, I am already waiting for a few days.
Please refer to the attachment.
Many thanks!
Re: No proformance graph to display.
Posted: Mon Feb 01, 2016 11:37 am
by rkennedy
I've setup a test to replicate this, going to let it run until tomorrow morning so that I can see how this turns up.
Just to check, can you try disabling the Highcharts - do you see graphs after doing so? Here's what I'm seeing so far -
24h-perf-graphs.PNG
To do so, navigate to Admin -> System Settings -> Theme & Display -> Uncheck 'Use Highcarts for Perfdata Graphs'
I'll follow up tomorrow once the check has run again as well.
Re: No proformance graph to display.
Posted: Tue Feb 02, 2016 12:29 am
by eric.lin826
It still has nothing to display.
Was it affected by rra.cfg ?
If So, what can i do ?
Re: No proformance graph to display.
Posted: Tue Feb 02, 2016 1:47 pm
by rkennedy
It still appears that I am seeing no graphs, however in order to graph it will need a few points of data.I am trying to replicate this issue, and as the timing is every day - this will take some time to test.
I'll check back to this post towards the end of the week, and let you know how things are going on my end.
Re: No proformance graph to display.
Posted: Fri Feb 12, 2016 1:41 pm
by rkennedy
Following up on this, I still do not have any reports available after this amount of time.
I've filed a bug report for it, ID #7747.
Re: No proformance graph to display.
Posted: Mon Jun 06, 2016 7:29 am
by eric.lin826
Hi
any updates ?
where am i could follow up the states?
Re: No proformance graph to display.
Posted: Mon Jun 06, 2016 2:51 pm
by lmiltchev
Our developers made some notes:
The (pnp4nagios) docs essentially state that any time event greater than RRD_HEARTBEAT won't be graphed.
I you REALLY want to monitor a service once a day and have graphs you can try the following:
1. Set:
Code: Select all
RRD_HEARTBEAT = 86400
RRA_STEP = 86400
in the "/usr/local/nagios/etc/pnp/process_perfdata.cfg" file.
2. Stop nagios and npcd.
Code: Select all
service nagios stop
service npcd stop
3. Delete existing rrd and xml files for the service in question.
4. Start nagios and npcd.
Code: Select all
service nagios start
service npcd start
5. Run at least one check against the service
6. Change back the "RRD_HEARTBEAT" and "RRA_STEP" values to the defaults:
Code: Select all
RRD_HEARTBEAT = 8460
RRA_STEP = 60
and restart services:
Code: Select all
service nagios restart
service npcd restart
Note: This is a hack (workaround), not an actual solution! I would NOT recommend it. Use it at your own risk.
Re: No proformance graph to display.
Posted: Tue Jun 21, 2016 2:21 am
by eric.lin826
Thanks for your information sharing.