通过 ES Monitoring 监控ELK Stack 各个组件的 Metric数据。
启用 Monitoring
Beats
在 Beats 端,收集Monitoring Data 有两种方式,
- Internal Collection:自己收集 metric,并直接发送数据给 Monitoring ES,相比 metricbeat收集 metric 的方式,就不需要维护其他的 metricbeat。
- Metricbeat Collection:在 ES7.3以后的版本,新增了由 Metricbeat来收集其他 Beats Metric的方式。
Internal Collection
1 2 3 4 5 6 7 8 9 10 11
| monitoring: enabled: true cluster_uuid: PRODUCTION_ES_CLUSTER_UUID elasticsearch: hosts: ["https://example.com:9200", "https://example2.com:9200"] api_key: id:api_key username: beats_system password: somepassword
|
Metricbeat Collection
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 33 34
|
http.enabled: true http.port: 5067
monitoring.enabled: false
./metricbeat modules enable beat-xpack
vi modules.d/beat-xpack.yml - module: beat metricsets: - stats - state period: 10s hosts: ["http://localhost:5066"] xpack.enabled: true
vi metricbeat.yml output.elasticsearch: hosts: ["http://es-mon-1:9200", "http://es-mon2:9200"]
|
ES Enable Monitoring
作为监控数据的最终目的地,ES需要激活 monitoring功能。
1 2 3 4 5 6
| PUT _cluster/settings { "persistent": { "xpack.monitoring.collection.enabled": true } }
|
View Stack Monitroing In kibana