Created
February 7, 2012 09:30
-
-
Save jedi4ever/1758690 to your computer and use it in GitHub Desktop.
bind webui to cluster instead of specific address/host
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
# Change to <%= osUser %> user | |
# Elastich search connection string syntax - see https://logstash.jira.com/browse/LOGSTASH-134 | |
exec setuidgid <%= osUser %> $JAVA_HOME/bin/java -Xmx<%= xmx %> -jar <%= installPrefix%>/logstash/logstash-monolithic.jar web --backend elasticsearch:///<%= esCluster %> -B <%= bindHost %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Shipper: output config
output {
stdout { }
If your elasticsearch server is discoverable with multicast, use this:
#elasticsearch { }
If you can't discover using multicast, set the address explicitly
elasticsearch {
embedded => false
cluster => "<%= esCluster %>"
bind_host => "<%= bindHost %>"
#host => "logger-0"
}
}