No proformance graph to display.
-
eric.lin826
- Posts: 33
- Joined: Thu Apr 02, 2015 11:51 pm
No proformance graph to display.
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
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.
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.
me.
-
eric.lin826
- Posts: 33
- Joined: Thu Apr 02, 2015 11:51 pm
Re: No proformance graph to display.
Yes, I am already waiting for a few days.
Please refer to the attachment.
Many thanks!
Please refer to the attachment.
Many thanks!
You do not have the required permissions to view the files attached to this post.
Re: No proformance graph to display.
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 - 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.
Just to check, can you try disabling the Highcharts - do you see graphs after doing so? Here's what I'm seeing so far - 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.
It still has nothing to display.
Was it affected by rra.cfg ?
If So, what can i do ?
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.
Re: No proformance graph to display.
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.
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
Re: No proformance graph to display.
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.
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.
Hi
any updates ?
where am i could follow up the states?
any updates ?
where am i could follow up the states?
Re: No proformance graph to display.
Our developers made some notes:
1. Set:
in the "/usr/local/nagios/etc/pnp/process_perfdata.cfg" file.
2. Stop nagios and npcd.
3. Delete existing rrd and xml files for the service in question.
4. Start nagios and npcd.
5. Run at least one check against the service
6. Change back the "RRD_HEARTBEAT" and "RRA_STEP" values to the defaults:
and restart services:
Note: This is a hack (workaround), not an actual solution! I would NOT recommend it. Use it at your own risk.
I you REALLY want to monitor a service once a day and have graphs you can try the following:The (pnp4nagios) docs essentially state that any time event greater than RRD_HEARTBEAT won't be graphed.
1. Set:
Code: Select all
RRD_HEARTBEAT = 86400
RRA_STEP = 864002. Stop nagios and npcd.
Code: Select all
service nagios stop
service npcd stop4. Start nagios and npcd.
Code: Select all
service nagios start
service npcd start6. Change back the "RRD_HEARTBEAT" and "RRA_STEP" values to the defaults:
Code: Select all
RRD_HEARTBEAT = 8460
RRA_STEP = 60Code: Select all
service nagios restart
service npcd restartBe 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.
Thanks for your information sharing.