EDIT: I just realized that you weren't talking about checking JUST remote services, so unfortunately I need to change my answer to โyou cannotโ. If you want to change the timeout settings for service checks, you must apply it to all service checks in the main configuration files.
You will need to define the second argument to the command that uses your special timeout.
For example, this could be your initial check in .cfg commands:
define command{ command_name check_nrpe command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ }
And this will be your identical command with a longer timeout value (also in .cfg commands):
define command{ command_name check_nrpe_slow command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -t 120 -c $ARG1$ }
If there is a better way to do this nagios wizards, please let me know! This will save a lot of space in my configuration files.
source share