Created
July 12, 2015 04:40
-
-
Save roblayton/68c6658d6f6c20d32132 to your computer and use it in GitHub Desktop.
Example Shinken /etc/shinken/brokers/broker-master.cfg file
This file contains hidden or 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 | |
# - Configuration data | |
# - Command interface | |
# https://shinken.readthedocs.org/en/latest/08_configobjects/broker.html | |
#=============================================================================== | |
define broker { | |
broker_name broker-master | |
address localhost | |
port 7772 | |
spare 0 | |
## Optional | |
manage_arbiters 1 ; Take data from Arbiter. There should be only one | |
; broker for the arbiter. | |
manage_sub_realms 1 ; Does it take jobs from schedulers of sub-Realms? | |
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 | |
# Default: None | |
# Interesting modules that can be used: | |
# - simple-log = just all logs into one file | |
# - livestatus = livestatus listener | |
# - tondodb-mysql = NDO DB support (deprecated) | |
# - npcdmod = Use the PNP addon | |
# - graphite = Use a Graphite time series DB for perfdata | |
# - webui = Shinken Web interface | |
# - glpidb = Save data in GLPI MySQL database | |
modules webui | |
# Enable https or not | |
use_ssl 0 | |
# enable certificate/hostname check, will avoid man in the middle attacks | |
hard_ssl_name_check 0 | |
## Advanced | |
realm All | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment