Linux

Fluentd エージェントからAggregatorにログをそのまま出力する

 

バージョン

# td-agent --version

td-agent 0.12.43

 

 

 

エージェント側

# vi /etc/td-agent/td-agent.conf

<source>
  type tail
  path /var/log/httpd/access_log
  tag log.yuulinux.tokyo-access
  pos_file /var/log/td-agent/.pos
  #format apache2
  format none ←ポイント
</source>

<match **>
  type forward
  <server>
    host 133.xxx.yyy.232
    port 24224
  </server>
</match>

format noneを指定

 

 

Aggregator側

# vi /etc/td-agent/td-agent.conf

<source>
    type forward
    port 24224
    bind 0.0.0.0
</source>


<match log.yuulinux.tokyo-access>
    type file
    format single_value ←ポイント
    path /var/log/fluentd/yuulinux.tokyo-access
</match>

format single_valueを追加

 

 

Amazonおすすめ

iPad 9世代 2021年最新作

iPad 9世代出たから買い替え。安いぞ!🐱 初めてならiPad。Kindleを外で見るならiPad mini。ほとんどの人には通常のiPadをおすすめします><

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)