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 | 31 |
Tags
- elastic
- Tutorial
- package.json
- 7.7.1
- DSL
- airflow
- framework
- node.js
- devtools
- windows
- grok
- elasticsearch
- venv
- PYTHON
- logstash
- OPCUA
- Data Engineering
- Crontab
- filebeat
- path.data
- configure
- query
- KoA
- dense_vector
- typescript
- ELK
- ubuntu
- json
- kibana
- CSV
Archives
- Today
- Total
목록전체 글 (47)
Gibbs Kim's playground
[ElasticStack-2] Geo_point mapping template (json format)
ELK 5.x ~ 6.x 기준으로 작성된 내용이다.(It is based on 5.x ~ 6.x versions of ELK) {"template" : "sample","mappings" :{"logs":{"properties":{"location":{"type" : "geo_point"}}}}}
Tech 기록지/Elastic Stack
2018. 10. 31. 17:18
[ElasticStack-1] Logstash configure file form (based on 5.x ~ 6.x versions)
Logstash는 raw data를 Elasticsearch로 업로드하는 기능을 수행한다.기본 구조는 다음과 같다.(input, filter, output) # Context is written in configure file (ex: test.conf)input { file { path => "FILE_PATH" # can use asterisk (*) beside file name; e.g. test_1234.csv, test_23456.csv -> test_*.csv start_position => "beginning" sincedb_path => "/dev/null" }}filter { csv { separator => "," ..
Tech 기록지/Elastic Stack
2018. 10. 31. 17:15