fluent-plugin-norikra 0.0.7 → 0.0.8
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.
- checksums.yaml +4 -4
- data/example/blank2.conf +15 -0
- data/fluent-plugin-norikra.gemspec +1 -1
- data/lib/fluent/plugin/norikra_target.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71017ddccba0d0f2d363b0eec6355267f8842ed0
|
|
4
|
+
data.tar.gz: ebc23dd872cd8dc2768ffb13948f797d72a5a681
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66cb01a5d5e1a999f05c811325b657f629edf668c4b93184f2dc83ded630789a7f953014a075b2cabee6cb9eb6ee13cebec1e678e77e284bd46d396db5fd41a5
|
|
7
|
+
data.tar.gz: 97028450465195e96930f4f9e196fa429ee6285b3fb872e0ea31e8cc2239660be8181b8e04223c9ccf012d6c9e826552a95f4c046ed60da3199c237e1537f488
|
data/example/blank2.conf
ADDED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "fluent-plugin-norikra"
|
|
5
|
-
spec.version = "0.0.
|
|
5
|
+
spec.version = "0.0.8"
|
|
6
6
|
spec.authors = ["TAGOMORI Satoshi"]
|
|
7
7
|
spec.email = ["tagomoris@gmail.com"]
|
|
8
8
|
spec.description = %q{process events on fluentd with SQL like query, with built-in Norikra server if needed.}
|
|
@@ -145,7 +145,7 @@ class Fluent::NorikraOutput
|
|
|
145
145
|
raise ArgumentError, "invalid section for this class, #{section.name}: ConfigSection"
|
|
146
146
|
end
|
|
147
147
|
|
|
148
|
-
@auto_field = section['auto_field']
|
|
148
|
+
@auto_field = Fluent::Config.bool_value(section['auto_field'])
|
|
149
149
|
|
|
150
150
|
@filter_params = {
|
|
151
151
|
:include => section['include'],
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-norikra
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TAGOMORI Satoshi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-10-
|
|
11
|
+
date: 2013-10-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: norikra-client
|
|
@@ -81,6 +81,7 @@ files:
|
|
|
81
81
|
- README.md
|
|
82
82
|
- Rakefile
|
|
83
83
|
- example/blank.conf
|
|
84
|
+
- example/blank2.conf
|
|
84
85
|
- example/example1.conf
|
|
85
86
|
- example/test1.conf
|
|
86
87
|
- example/test2.conf
|