Elasticsearch index pom.xml co.elastic.clients elasticsearch-java 8.7.0 com.fasterxml.jackson.core jackson-databind 2.12.3 Elasticsearch Data를 indexing(Data insert) 하기 위해서는 HashMap으로 데이터를 만들고, index 명령을 통해 데이터를 넣는다. Source code 샘플 HashMap resource HashMap resource = new HashMap(); resource.put("timestamp", timestamp); resource.put("hostname", hostname); resource.put("cpu_used", cpu_used); resour..