LoginSignup
4
3

More than 5 years have passed since last update.

fluent-plugin-mackerelでhttpdのステータスコードを送信

Last updated at Posted at 2014-11-01

td-agent、mackerelエージェントインストール済みとします

やりたいこと

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

画面で確認

Screen Shot.jpeg

出来ました。

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3