FluentdとRedisとnode.jsを使った準リアルタイムログビューア(Logbear)

FluentdとRedisとnode.jsを使って準リアルタイムログビューアを作った

ログをブラウザでtailするのに良い感じのソリューションが見つからなかったので作りました。

使い方

fluentd.confをこんな感じに設定すると

<source>
  type forward
  port 8888
</source>

<match タグ名>
  type redis
  host localhost
  port 6379
  flush_interval 1s
</match>

こんな感じに表示されます