Sha256: 935b19b5bfafcad5269930cbfc89f5d7951c950c165e5442856958ad7592e9d9

Contents?: true

Size: 887 Bytes

Versions: 1

Compression:

Stored size: 887 Bytes

Contents

= MongoDB output plugin for Fluent

== Component

=== MongoOutput

Output to MongoDB database.

== Configuratin

=== MongoOutput

    <match mongo.**>
      type mongo
      database fluent
      collection test

      # following attibutes are optional
      host fluenter
      port 10000

      # Other buffer configurations here
    </match>

=== Backup to local capped collection

Use <store> section.

    <match mongo.**>
      type mongo
      database fluent
      collection test

      <store>
        size 100000
        max  1000
      </store>
    </match>

== TODO

=== More configuration

- Create Capped Collection
- Create Index
- etc

=== Infer collection name

Fluent tag is similar to database.collection in Mongo.
This feature makes configuration more easily.

== Copyright

Copyright:: Copyright (c) 2011- Masahiro Nakagawa
License::   Apache License, Version 2.0

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-mongo-0.2.1 README.rdoc