No commit activity in last 3 years
No release in over 3 years
fluent-plugin-line-notify is a fluentd plugin to call LINE Notify API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.13.1
>= 0
~> 3.1.5
~> 1.0.5

Runtime

 Project Readme

Build Status

fluent-plugin-line-notify

fluent-plugin-line-notify is a fluentd plugin to call LINE Notify API.

Example Usage

access_token and message_template are the required config params. You can obtain your personal access token from LINE Notify's my-page.

<source>
  @type        exec
  command      echo "foo\tbar"
  format       tsv
  keys         k1,k2
  tag          test.message
  run_interval 10s
</source>

<match test.message>
  @type            line_notify
  access_token     [Your personal access token obtained from https://notify-bot.line.me/my/]
  message_template You say <%= record['k1'] %>, I say <%= record['k2'] %>.
</match>

Testing

bundle install
bundle exec rake test

Installation

gem install fluent-plugin-line-notify

Contributing

  1. Fork it ( https://github.com/[my-github-username]/fluent-plugin-line-notify/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request