Dear Expert
While viewing Performance Graphs from single Host , there is options at bottom as below
5 Per Page
10 Per Page
25 Per Page
50 Per Page
How to increase more? Which file has to edit to add these below more options.
100 Per Page
500 Per Page
1000 Per Page
Regards
how to increase 50 graph per page to more
Re: how to increase 50 graph per page to more
If you are using 2014R2.0 (taken from one of your posts) you can take the attached file, unzip it, and replace the file below:
If that isn't the version you are using then let me know which version of XI you are using. You can grab it from the bottom left hand side of the web interface.
Code: Select all
/usr/local/nagiosxi/html/perfgraphs/index.phpYou do not have the required permissions to view the files attached to this post.
Re: how to increase 50 graph per page to more
Dear ssax
Thanks but we cannot replace as already we have done some changes to achieve below request we asked to Nagios.
only selected Performance Graph to be view from a HOST
https://support.nagios.com/forum/viewto ... 16&t=30746
me cracking my head and achieved above but if its going to next page, there issue, so I want by default 100 graph per page,
Please let me know which lines have to modify and please made available in next minor release.
Regards
Thanks but we cannot replace as already we have done some changes to achieve below request we asked to Nagios.
only selected Performance Graph to be view from a HOST
https://support.nagios.com/forum/viewto ... 16&t=30746
me cracking my head and achieved above but if its going to next page, there issue, so I want by default 100 graph per page,
Please let me know which lines have to modify and please made available in next minor release.
Regards
Zajil NMS
Re: how to increase 50 graph per page to more
All you really need to do is edit that file and change these entries (there's 2 of them) from:
To:
Code: Select all
$record_options = array('5', '10', '25', '50');Code: Select all
$record_options = array('5', '10', '25', '50', '100', '500', '1000');
Re: how to increase 50 graph per page to more
Dear ssax
As I told , after cracking my head (me not Linux/PHP expert), found the file
/usr/local/nagiosxi/html/includes/utils-tables.inc.php
done the changes and solved my requirement.
Now we able to filter required Services graphs from the Host
Appreciate if you add the feature in next minor upgrade both things
1 . more page option : $record_options = array("5", "10", "25", "50" , "100" , "200");
2. view only the required service performance graph from the selected Host (attached done)
Regards
As I told , after cracking my head (me not Linux/PHP expert), found the file
/usr/local/nagiosxi/html/includes/utils-tables.inc.php
done the changes and solved my requirement.
Now we able to filter required Services graphs from the Host
Appreciate if you add the feature in next minor upgrade both things
1 . more page option : $record_options = array("5", "10", "25", "50" , "100" , "200");
2. view only the required service performance graph from the selected Host (attached done)
Regards
You do not have the required permissions to view the files attached to this post.
Zajil NMS
Re: how to increase 50 graph per page to more
I created a feature request (TASK ID 6536) for adding this functionality. Thanks!
Be sure to check out our Knowledgebase for helpful articles and solutions!