Elasticsearch 모니터링
-
[ Zabbix 5.0 ] Elasticsearch Cluster MonitoringOpen Source 2021. 3. 26. 18:46
[ Monitoring 환경 ] - Zabbix 5.0 - Zabbix Template : share.zabbix.com/databases/elasticsearch-cluster-by-http-for-zabbix-4-2 (www.zabbix.com/integrations/elasticsearch) cluster의 전체적인 health 상태, 노드상태, 샤드 상태 등을 모니터링 할 수 있다. elasticsearch-head에서 Unassigned 장애상태 Zabbix - Grafana (7.5) 연동
-
[Python] Elasticsearch MonitoringElasticsearch 2018. 7. 22. 22:56
파이썬을 이용하여 Elasticsearch에 index 생성하고, 삭제하는 방법으로 모니터링 try: es = Elasticsearch(hosts=' ', port=' ') doc = ''' { "mappings": { "testindex": { "properties": { "msg": { "type": "keyword" } } } } }''' res = es.indices.create(index='testindex', body=doc) print('index create : %s' %res['acknowledged']) res = es.indices.delete(index='testindex') print('index delete : %s' %res['acknowledged']) except Excep..