using NXTI we noticed that pagination is not working.
We need to process more than 100 traps and it is not possible using the GUI.
We found a workaround modifying the dropdown menu with browser developer tools.
For example from
Code: Select all
<option value="100">100 Per Page</option>Code: Select all
<option value="500">500 Per Page</option>Using the internal network tracker of the browser, we found that probably a script asks for the page
nagiosxi/includes/components/nxti/index.php?&mode=defRecord&search=
receiving " {"recordcount":0} ".
We saw that after the previous request, it asks for the page
nagiosxi/includes/components/nxti/index.php?&mode=defTable&page=1&perpage=5&search=&orderby=trapdata_event_name&orderdir=ASC
If we try
nagiosxi/includes/components/nxti/index.php?&mode=defTable&page=2&perpage=5&search=&orderby=trapdata_event_name&orderdir=ASC
it works.
We are using Nagios XI 5.5.9 installed on RHEL 6, we have to wait for the upgrade to the latest version.
But we read the changelog and we can not find anything about NXTI.
Have you a fix for that issue?
Thank you for your attention