mackerelのログ監視プラグインです。 指定したファイルに指定したワードが出力された場合、アラートを出力します。
gem install macklog
[plugin.checks.http_fatal_error]
command = "macklog -f /var/log/httpd/error.log -w fatal -i"
-f : 対象ファイル
-w : warningキーワード
-c : criticalキーワード
-i : 大文字小文字を区別しない
同じアラートを複数回通知しないために、履歴を/tmpディレクトリ配下のファイルで行っています。
/tmp以外で行う場合は、export MACKLOG_TMP=/var/tmp
のように環境変数に指定を行って下さい。
- Fork it ( https://github.com/[my-github-username]/macklog/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request