No proformance graph to display.

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
eric.lin826
Posts: 33
Joined: Thu Apr 02, 2015 11:51 pm

No proformance graph to display.

Post 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
User avatar
hsmith
Agent Smith
Posts: 3539
Joined: Thu Jul 30, 2015 11:09 am
Location: 127.0.0.1
Contact:

Re: No proformance graph to display.

Post by hsmith »

Did you wait a day after making the change? If you changed that interval, it would need to collect new data.
Former Nagios Employee.
me.
eric.lin826
Posts: 33
Joined: Thu Apr 02, 2015 11:51 pm

Re: No proformance graph to display.

Post by eric.lin826 »

Yes, I am already waiting for a few days.
Please refer to the attachment.
Many thanks!
You do not have the required permissions to view the files attached to this post.
rkennedy
Posts: 6579
Joined: Mon Oct 05, 2015 11:45 am

Re: No proformance graph to display.

Post 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.
You do not have the required permissions to view the files attached to this post.
Former Nagios Employee
eric.lin826
Posts: 33
Joined: Thu Apr 02, 2015 11:51 pm

Re: No proformance graph to display.

Post by eric.lin826 »

It still has nothing to display.
Was it affected by rra.cfg ?
If So, what can i do ?
You do not have the required permissions to view the files attached to this post.
rkennedy
Posts: 6579
Joined: Mon Oct 05, 2015 11:45 am

Re: No proformance graph to display.

Post 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.
Former Nagios Employee
rkennedy
Posts: 6579
Joined: Mon Oct 05, 2015 11:45 am

Re: No proformance graph to display.

Post 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.
Former Nagios Employee
eric.lin826
Posts: 33
Joined: Thu Apr 02, 2015 11:51 pm

Re: No proformance graph to display.

Post by eric.lin826 »

Hi
any updates ?
where am i could follow up the states?
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: No proformance graph to display.

Post 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.
Be sure to check out our Knowledgebase for helpful articles and solutions!
eric.lin826
Posts: 33
Joined: Thu Apr 02, 2015 11:51 pm

Re: No proformance graph to display.

Post by eric.lin826 »

Thanks for your information sharing.
Locked