This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# BROKER (S1_Broker) | |
#=============================================================================== | |
# Description: The broker is responsible for: | |
# - Exporting centralized logs of all Shinken daemon processes | |
# - Exporting status data | |
# - Exporting performance data | |
# - Exposing Shinken APIs: | |
# - Status data | |
# - Performance data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Module: webui | |
## Loaded by: Broker | |
# The Shinken web interface and integrated web server. | |
define module { | |
module_name webui | |
module_type webui | |
host 0.0.0.0 ; All interfaces = 0.0.0.0 | |
port 7767 | |
auth_secret CHANGE_ME ; CHANGE THIS or someone could forge cookies | |
allow_html_output 1 ; Allow or not HTML chars in plugins output. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define host{ | |
use linux,ssh | |
contact_groups admins | |
host_name localhost | |
address localhost | |
_SNMPCOMMUNITY snmpP@ss | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define host { | |
use linux-snmp,ftp,ssh | |
host_name hostname2 | |
address 192.168.33.11 | |
_SNMPCOMMUNITY snmpP@ss | |
} |
OlderNewer