fluent-plugin-couch 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,14 @@
1
- = CouchDB output plugin for Fluent
1
+ = CouchDB output plugin for Fluentd
2
2
 
3
- == Install
4
- $ gem install fluent-plugin-couch
3
+ fluent-plugin-couch provides output plugins for {Fluentd}[http://fluentd.org/].
4
+
5
+ = Installation
6
+
7
+ == Gems
8
+
9
+ The gem is hosted at {Rubygems.org}[http://rubygems.org]. You can install the gem as follows:
10
+
11
+ $ fluent-gem install fluent-plugin-couch
5
12
 
6
13
  == Component
7
14
 
@@ -18,18 +25,19 @@ Store fluent-event as CouchDB Document to CouchDB database.
18
25
  database fluent
19
26
 
20
27
  # following attibutes are optional
21
- host fluenter
22
- port 10000
28
+ host fluenter #default:localhost
29
+ port 10000 #default:5984
30
+
31
+ # for Basic Authentication (optional)
32
+ user odagiri
33
+ password yudai
23
34
 
24
35
  # Other buffer configurations here
25
36
  </match>
26
37
 
27
38
  == TODO
28
39
  === More configuration
29
- ==== Configuration option "regenerating_views_on_update [true(default)/false]"
30
- * http://wiki.apache.org/couchdb/Regenerating_views_on_update
31
-
32
- == Feature
40
+ === Feature
33
41
  * update document ( can be used to handle events such as updating the status of the server.)
34
42
 
35
43
  == Tool
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.2
1
+ 0.3.3
@@ -20,9 +20,11 @@ module Fluent
20
20
 
21
21
  def initialize
22
22
  super
23
- Encoding.default_internal = 'UTF-8'
23
+
24
24
  require 'msgpack'
25
+ Encoding.default_internal = 'UTF-8'
25
26
  require 'couchrest'
27
+ Encoding.default_internal = 'ASCII-8BIT'
26
28
  end
27
29
 
28
30
  def configure(conf)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-couch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-02-01 00:00:00.000000000Z
12
+ date: 2012-02-04 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: fluentd
16
- requirement: &70327036174100 !ruby/object:Gem::Requirement
16
+ requirement: &70158564221540 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.10.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70327036174100
24
+ version_requirements: *70158564221540
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: couchrest
27
- requirement: &70327036173180 !ruby/object:Gem::Requirement
27
+ requirement: &70158564221040 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: 1.1.2
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70327036173180
35
+ version_requirements: *70158564221040
36
36
  description:
37
37
  email: ixixizko@gmail.com
38
38
  executables: []