<<기본실행>>

$fluentd -c fluentd.conf


<<config file 구조>>

<source>

type tail

format apache

path /var/log/access.log

tag apache.access

</source>

<match apache.access>

type file

path /home/access.log

</match>

  • 한때 logsatsh(과거 버전에서)와 쌍벽을 이룸
  • logstash의 발전속도를 따라가지 못하여, 비인기가 됨.
  • logstash의 syncdb를 버퍼링으로 해결


장점

  • 시스템 자원 소모가 적다.
  • 데이터 전송의 버퍼링 설정이 가능하다.
  • 다양한 input, filter, putput plugin을 보유하고 있었다.


단점

  • input, output plugin의 update 지원 속도가 느리다.
  • plugin 저장소가 분산되어 있다.
  • No labels
Write a comment…