https://github.com/sue445/fluent-plugin-chatwork
fluentd output plugin for post to chatwork
https://github.com/sue445/fluent-plugin-chatwork
chatwork-api fluent-plugin gem
Last synced: 12 months ago
JSON representation
fluentd output plugin for post to chatwork
- Host: GitHub
- URL: https://github.com/sue445/fluent-plugin-chatwork
- Owner: sue445
- License: mit
- Created: 2014-06-25T16:52:01.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2025-01-17T13:19:29.000Z (about 1 year ago)
- Last Synced: 2025-04-06T20:16:58.319Z (about 1 year ago)
- Topics: chatwork-api, fluent-plugin, gem
- Language: Ruby
- Homepage: https://sue445.github.io/fluent-plugin-chatwork/
- Size: 113 KB
- Stars: 6
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# fluent-plugin-chatwork
fluentd output plugin for post to [ChatWork](http://www.chatwork.com/)
[](http://badge.fury.io/rb/fluent-plugin-chatwork)
[](https://github.com/sue445/fluent-plugin-chatwork/actions/workflows/test.yml)
[](https://coveralls.io/github/sue445/fluent-plugin-chatwork?branch=master)
[](https://codeclimate.com/github/sue445/fluent-plugin-chatwork)
[](http://inch-ci.org/github/sue445/fluent-plugin-chatwork)
## Requirements
| fluent-plugin-chatwork | fluentd | ruby |
|------------------------|---------|------|
| >= 2.0.0 | >= v0.14.0 | >= 2.1 |
| < 2.0.0 | >= v0.12.0 | >= 1.9 |
## Installation
$ gem install fluent-plugin-chatwork
## Configure
### For non-buffered
```
@type chatwork
api_token YOUR_SECRET_TOKEN
room_id 0000000000
message Hello ChatWork!\n<%= record["value"] %>
```
### For buffered
```
@type chatwork
api_token YOUR_SECRET_TOKEN
room_id 0000000000
message Hello ChatWork!\n<%= record["value"] %>
buffered true
@type memory
```
* api_token
* secret api token
* room_id
* send message to this room
* message
* message content
* support erb format
* support newline character (\n)
* buffered
* Switch non-buffered/buffered output
## Contributing
1. Fork it ( https://github.com/sue445/fluent-plugin-chatwork/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