Skip to content

cosmo0920/fluent-plugin-storage-memcached

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
bin
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

fluent-plugin-storage-memcached

Build Status

fluent-plugin-storage-memcached is a fluent plugin to store plugin state into memcached.

Installation

Add this line to your application's Gemfile:

gem 'fluent-plugin-storage-memcached'

And then execute:

$ bundle

Or install it yourself as:

$ gem install fluent-plugin-storage-memcached

Configuration

<storage>
  @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
</storage>

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.