티스토리 뷰
서버가 여러대 늘어날 것을 대비해서 모니터링을 간편화 하기 위해
EFK 스택을 설치해서 테스트 해보려고 했다.
(Elastic Search + Filebeat + Kibana)
현재는 로그가 다양하지 않아서 Logstash 까지는 설치하지 않았고,
일단 Filebeat만 설치하여 바로 Elastic Search에 보내는 구조까지만 했음 일단.
[ElasticSearch]
Installation
tar -xzvf elasticsearch-7.3.2-linux-x86_64.tar.gz
cd elasticsearch-7.3.2
./bin/elasticsearch
Make sure Elasticsearch is up and running
[testserver:/home/test] curl http://127.0.0.1:9200
{
"name" : "test",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "euIubP-aQg-EcnrW9MxaaA",
"version" : {
"number" : "7.3.2",
"build_flavor" : "default",
"build_type" : "tar",
"build_hash" : "1c1faf1",
"build_date" : "2019-09-06T14:40:30.409026Z",
"build_snapshot" : false,
"lucene_version" : "8.1.0",
"minimum_wire_compatibility_version" : "6.8.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}
[Kibana]
Installation
tar xzvf kibana-7.3.2-linux-x86_64.tar.gz
cd kibana-7.3.2-linux-x86_64/
./bin/kibana
Management -> Kibana -> Spaces -> Default 변경
[Filebeat]
Installation
tar xzvf filebeat-7.3.2-linux-x86_64.tar.gz
filebeat.yml
filebeat.inputs:
- type: log
enabled: true
paths:
- /data/deploy/log/*.log
# multiline 세팅
multiline.pattern: ^\[
multiline.negate: true
multiline.match: after
# 로그 레벨 설정 (default info)
logging.level: debug
output.elasticsearch:
hosts: ["localhost:9200"]
# To send output to Logstash, Configure the Logstash output instead.
# For all other outputs, see Configure the output.
./filebeat modules enable elasticsearch
./filebeat setup
./filebeat -e
'Architecture > Middleware' 카테고리의 다른 글
[API Gateway] Kong Gateway 설치 (0) | 2021.05.28 |
---|---|
[Nginx] 497 Error 이슈 (0) | 2021.03.16 |
- Total
- Today
- Yesterday
- excel parsing
- gRPC
- 사토시 나가모토
- 알고리즘
- 백준
- Nealford
- Vue.js
- Redis
- 아키텍처
- Bruteforce
- 스프링 시큐리티
- CARDANO
- Spring
- kubernetes
- Blockchain
- 스프링
- DP
- 암호화폐
- k8s
- 카르다노
- white paper
- 동적계획법
- Bitcoin
- 블록체인
- leetcode
- architecture
- vuejs
- 비트코인
- SpringBoot
- Java
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |