feat(ext/metricbeat): Enable monitoring of Logstash
This commit is contained in:
parent
4f4767cb5a
commit
a150f6dc99
|
@ -20,6 +20,10 @@ metricbeat.modules:
|
|||
password: ${ELASTIC_PASSWORD}
|
||||
xpack.enabled: true
|
||||
period: 10s
|
||||
- module: logstash
|
||||
hosts: [ http://logstash:9600 ]
|
||||
xpack.enabled: true
|
||||
period: 10s
|
||||
- module: docker
|
||||
metricsets:
|
||||
- container
|
||||
|
|
|
@ -5,7 +5,9 @@
|
|||
server.name: kibana
|
||||
server.host: 0.0.0.0
|
||||
elasticsearch.hosts: [ http://elasticsearch:9200 ]
|
||||
|
||||
monitoring.ui.container.elasticsearch.enabled: true
|
||||
monitoring.ui.container.logstash.enabled: true
|
||||
|
||||
## X-Pack security credentials
|
||||
#
|
||||
|
|
|
@ -3,3 +3,5 @@
|
|||
## https://github.com/elastic/logstash/blob/main/docker/data/logstash/config/logstash-full.yml
|
||||
#
|
||||
http.host: 0.0.0.0
|
||||
|
||||
node.name: logstash
|
||||
|
|
Loading…
Reference in New Issue