SCHEDULE_SVC_CHECK;<host_name>;<service_description>;<check_time>
Schedules the next active check of a specified service at "check_time". The "check_time" argument is specified in time_t format (seconds since the UNIX epoch). Note that the service may not actually be checked at the time you specify. This could occur for a number of reasons: active checks are disabled on a program-wide or service-specific basis, the service is already scheduled to be checked at an earlier time, etc. If you want to force the service check to occur at the time you specify, look at the SCHEDULE_FORCED_SVC_CHECK command.
#!/bin/sh # This is a sample shell script showing how you can submit the SCHEDULE_SVC_CHECK command # to Nagios. Adjust variables to fit your environment as necessary. now=`date +%s` commandfile='/usr/local/nagios/var/rw/nagios.cmd' /bin/printf "[%lu] SCHEDULE_SVC_CHECK;host1;service1;1110741500\n" $now > $commandfile
Copyright © 2009-2024 Nagios Core Development Team and Community Contributors.
Copyright © 1999-2009 Ethan Galstad. Portions copyrighted by Nagios Community members. See the THANKS file for more information.
Nagios, Nagios Core, NRPE, NSCA, and the Nagios logo are trademarks, servicemarks, registered servicemarks or registered trademarks of Nagios Enterprises. All other trademarks, servicemarks, registered trademarks, and registered servicemarks mentioned herein may be the property of their respective owner(s). The information contained herein is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE.