아파치나 nginx로그를 fluentd로 전달하고 싶을 때 regex를 사용하는 것보다 format json을 사용하는 것이 좋다.
https://docs.fluentd.org/v0.12/articles/recipe-json-to-elasticsearch
<source>
@type tail
path /var/log/httpd-access.log #...or where you placed your Apache access log
pos_file /var/log/td-agent/httpd-access.log.pos # This is where you record file position
tag foobar.json #fluentd tag!
format json # one JSON per line
time_key time_field # optional; default = time
</source>
'Cloud' 카테고리의 다른 글
[docker] Permission denied 해결, docker 드라이버(aufs를 overlay)를 변경하는 방법 (0) | 2018.04.11 |
---|---|
fluentd 정규식 확인하기 (0) | 2018.04.10 |
[openstack] keystone 인증(auth)만 해보기 (0) | 2018.02.07 |
[k8s] 쿠버네티스의 로그 수집 툴 (0) | 2018.02.06 |
[k8s] postgresql 운영 - stateful (펌질) (0) | 2018.01.25 |