タグ

ブックマーク / chopl.in (2)

  • Flunetd::MultiOutputとmonitor_agentの関係 - still deeper

    monitor_agent fluentd v0.10.33 で in_monitor_agent が追加されました。 in_monitor_agent は次の様なsourceを定義しておくと ... <source> type monitor_agent bind 0.0.0.0 port 24220 </source> ... http経由で、各pluginの内部の状態を取得することができるようになります。 $ curl http://localhost:24220/api/plugins plugin_id:object:3f8747e35fa4 type:forward output_plugin:false plugin_id:object:3f8747e34c30 type:debug_agent output_plugin:false plugin_id:object:3f8

  • fluentd自身のログにまつわるノウハウ - still deeper

    fluentdのログ 流行に敏いみなさまは既にfluentdのクラスタを組まれているかと思います 1 が、fluentd自体のログはどうしてますでしょうか? サーバーに直接入って確認している?せっかくログアグリゲーターを組んでいるのだから、fluentd自体のログもfluentdで管理しませんか。 fluentdでは以下の様な match を定義しておくと、自身のログをメッセージとして流すようになっています。 <match fluent.**> ... </match> 流れてくるメッセージはこんな感じ。 fluent.info: {"message":"force flushing buffered events"} fluent.warn: {"message":"emit transaction failed"} fluent.error: {"message":"forward e

  • 1