Quick Report question
Quick Report question
Is it possible, and if so how, to create a report that lists all the machines and how long it has been since they have been restarted. Basicly a report of all the UPTIME checks.
Everybody is somebody else’s weirdo
Re: Quick Report question
Not currently, I've created a feature request for you here:
The only method to view them now would be to go to the services page and search for the word "uptime".
Code: Select all
NEW TASK ID 9347 created - Nagios XI Feature Request: Add a report to show all hosts with current uptime (uptime checks)Re: Quick Report question
Currently this type of report doesn't exist in XI. You are welcome to post a feature request on our public tracker here: http://tracker.nagios.com/.
Probably you can create a "custom" report by using check_multi:
https://exchange.nagios.org/directory/P ... ti/details
Here's what I tried:
1. I installed check_multi
2. Created a config named check_multi_config with 3 checks, following this format: <command[tag]=plugin command line>
3. Created a new command in Nagios XI called "check_multi"
4. Created a new service called "Uptime Multi"
5. Click on the "Uptime Multi" service under the web UI, and schedule the page by clicking "Schedule Page" icon in the upper right corner (available in Nagios XI Enterprise Edition).
6. The report (PDF) will look something like this:
Probably you can create a "custom" report by using check_multi:
https://exchange.nagios.org/directory/P ... ti/details
Here's what I tried:
1. I installed check_multi
2. Created a config named check_multi_config with 3 checks, following this format: <command[tag]=plugin command line>
3. Created a new command in Nagios XI called "check_multi"
Code: Select all
define command {
command_name check_multi
command_line $USER1$/check_multi -f $USER1$/check_multi_config
}Code: Select all
define service {
host_name localhost
service_description Uptime Multi
use xiwizard_generic_service
check_command check_multi!!!!!!!!
...
register 1
}6. The report (PDF) will look something like this:
You do not have the required permissions to view the files attached to this post.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: Quick Report question
I'm getting way to many errors on the multi check....... missing files etc.... I will figure somethign else out.
feel free to close this ticket.
feel free to close this ticket.
Everybody is somebody else’s weirdo
Re: Quick Report question
Thanks for that update. I'll go ahead and close this one out now, but feel free to open a new thread for any other issues.
Be sure to check out the Knowledgebase for helpful articles and solutions!