/etc/shinken/shinken-specific/receiver.cfg is in shinken-common 1.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #===============================================================================
# RECEIVER (S1_Receiver)
#===============================================================================
# The receiver manages passive information. It's just a "buffer" which will
# load passive modules (like NSCA) and be read by the arbiter to dispatch data.
#===============================================================================
define receiver {
receiver_name receiver-1
address localhost
port 7773
spare 0
## Optional parameters
timeout 3 ; Ping timeout
data_timeout 120 ; Data send timeout
max_check_attempts 3 ; If ping fails N or more, then the node is dead
check_interval 60 ; Ping node every N seconds
## Modules for Receiver
# - CommandFile = Open the named pipe nagios.cmd
# - NSCA = NSCA server
# - TSCA = TSCA server
# - WS_Arbiter = WebService for pushing results to the arbiter
# - Collectd = Receive collectd perfdata
modules
## Advanced Feature
direct_routing 0 ; If enabled, it will directly send commands to the
; schedulers if it know about the hostname in the
; command.
realm All
}
|