fluent-plugin-mecab
誰が何のために使うのかよくわからないけど,新しいfluentd plugin書きました.
fluntdに流れてくる日本語のデータをmecabに食わせて形態素解析結果をもう一度fluentdに流すプラグインです.
install
Gemfileに以下を書いて,bundle installすればいいです
gem 'fluent-plugin-mecab', git: 'git://github.com/katsyoshi/fluent-plugin-mecab.git'
使い方は簡単です.以下のように設定します
<source> type forward </source> <match mikutter.**> type copy <store> type stdout </store> <store> type mecab key message tag mecab.meacab </store> </match> <match mecab.**> type stdout </match>
ってやる形態素解析結果をfluentdに投げることができます