Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- PYTHON
- OPCUA
- ELK
- configure
- devtools
- DSL
- path.data
- elastic
- framework
- venv
- grok
- logstash
- Tutorial
- typescript
- windows
- node.js
- KoA
- 7.7.1
- Data Engineering
- kibana
- elasticsearch
- Crontab
- dense_vector
- airflow
- json
- ubuntu
- query
- package.json
- CSV
- filebeat
Archives
- Today
- Total
목록local2cloud (1)
Gibbs Kim's playground
[ElasticStack-32] Elasticsearch (On-premise) to Elasticsearch (Cloud) through Logstash
Elasticsearch Cloud로 데이터를 구축 시, 기존 ES (On-premise)에서 데이터를 가져와야하는 경우가 발생합니다. 이때 로그스태시를 활용하여 데이터를 적재할 수 있습니다. input { elasticsearch { hosts => "localhost:9200" index => "local_idx" query => '{ "query": { "match_all": {} } }' } } filter { } output { elasticsearch { cloud_id => "Deploy명:Key값" cloud_auth => "elastic:패스워드" ssl => true index => "cloud_idx" } } 기존 서버에서 구동중인 ES (On-premise)의 인덱스명을 'local..
Tech 기록지/Elastic Stack
2021. 3. 3. 14:40