fluent-plugin-mackerel로 httpd 상태 코드 보내기
하고 싶은 일
httpd log에서 status code 수를 계산하여 mackerel 대시 보드에 표시
절차
fluent-plugin-datacounter 도입
# /usr/lib64/fluent/ruby/bin/fluent-gem install fluent-plugin-datacounter
fluent-plugin-mackerel 도입
# /usr/lib64/fluent/ruby/bin/fluent-gem install fluent-plugin-mackerel
td-agent.conf
<source>
type tail
format apache2
path /var/log/httpd/access.log
pos_file /var/log/td-agent/access.log.pos
tag data.httpd.accesslog
</source>
<match data.httpd.accesslog>
type datacounter
count_interval 1m
count_key code
tag mackerel.httpd.accesslog
outcast_unmatched yes
pattern1 2xx ^2\d\d$
pattern2 3xx ^3\d\d$
pattern3 404 ^404$
pattern4 4xx ^4\d\d$
pattern5 5xx ^5\d\d$
</match>
<match mackerel.httpd.accesslog>
type mackerel
api_key YOUR_API_KEY
service YOUR_SERVICE_NAME
metrics_name http_status.${out_key}
out_keys data.httpd.accesslog_2xx_count,data.httpd.accesslog_3xx_count,data.httpd.accesslog_404_count,data.httpd.accesslog_4xx_count,data.httpd.accesslog_5xx_count
</match>
td-agent 리로드
# service td-agent reload
화면에서 확인
할 수 있었습니다.
Reference
이 문제에 관하여(fluent-plugin-mackerel로 httpd 상태 코드 보내기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/okisanjp/items/9da6220e2230b06eb76a
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
fluent-plugin-datacounter 도입
# /usr/lib64/fluent/ruby/bin/fluent-gem install fluent-plugin-datacounter
fluent-plugin-mackerel 도입
# /usr/lib64/fluent/ruby/bin/fluent-gem install fluent-plugin-mackerel
td-agent.conf
<source>
type tail
format apache2
path /var/log/httpd/access.log
pos_file /var/log/td-agent/access.log.pos
tag data.httpd.accesslog
</source>
<match data.httpd.accesslog>
type datacounter
count_interval 1m
count_key code
tag mackerel.httpd.accesslog
outcast_unmatched yes
pattern1 2xx ^2\d\d$
pattern2 3xx ^3\d\d$
pattern3 404 ^404$
pattern4 4xx ^4\d\d$
pattern5 5xx ^5\d\d$
</match>
<match mackerel.httpd.accesslog>
type mackerel
api_key YOUR_API_KEY
service YOUR_SERVICE_NAME
metrics_name http_status.${out_key}
out_keys data.httpd.accesslog_2xx_count,data.httpd.accesslog_3xx_count,data.httpd.accesslog_404_count,data.httpd.accesslog_4xx_count,data.httpd.accesslog_5xx_count
</match>
td-agent 리로드
# service td-agent reload
화면에서 확인
할 수 있었습니다.
Reference
이 문제에 관하여(fluent-plugin-mackerel로 httpd 상태 코드 보내기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/okisanjp/items/9da6220e2230b06eb76a
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
# service td-agent reload
할 수 있었습니다.
Reference
이 문제에 관하여(fluent-plugin-mackerel로 httpd 상태 코드 보내기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/okisanjp/items/9da6220e2230b06eb76a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)