Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cosmo0920/fluent-plugin-storage-memcached
Fluentd storage plugin for Memcached.
https://github.com/cosmo0920/fluent-plugin-storage-memcached
fluentd fluentd-plugin memcached
Last synced: about 1 month ago
JSON representation
Fluentd storage plugin for Memcached.
- Host: GitHub
- URL: https://github.com/cosmo0920/fluent-plugin-storage-memcached
- Owner: cosmo0920
- License: mit
- Created: 2017-02-20T04:20:10.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-20T08:18:35.000Z (over 7 years ago)
- Last Synced: 2024-10-13T08:13:23.605Z (2 months ago)
- Topics: fluentd, fluentd-plugin, memcached
- Language: Ruby
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# fluent-plugin-storage-memcached
[![Build Status](https://travis-ci.org/cosmo0920/fluent-plugin-storage-memcached.svg?branch=master)](https://travis-ci.org/cosmo0920/fluent-plugin-storage-memcached)
fluent-plugin-storage-memcached is a fluent plugin to store plugin state into memcached.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'fluent-plugin-storage-memcached'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install fluent-plugin-storage-memcached
## Configuration
```aconf
@type memcached
path my_key # or conf.arg will be used as memcached key
hosts ['localhost:11211'] # ['localhost:11211'] is default
namespace app_v1 # app_v1 is default
compress true # true is default
# If sasl enabled memcached server is configured, please specify them.
# username fluenter
# password hogefuga
serializer yajl # yajl is default
expires_in 0 # 0 is default```
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/cosmo0920/fluent-plugin-storage-memcached.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).