fluent-plugin-norikra 0.4.2 → 0.4.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.
- checksums.yaml +4 -4
- data/.travis.yml +0 -1
- data/fluent-plugin-norikra.gemspec +1 -1
- data/lib/fluent/plugin/out_norikra.rb +7 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6318a2dd0ea1ec86a268963247a5d04778c7502
|
4
|
+
data.tar.gz: 20286d8c6d7071a8836b38a6c70161c9be094706
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e4b39f61a810d7b3e19b87499656a6303ceb277c0484928bd8f7a9f0f752442dabb835125768236a659477c1a5048d588eebc5e8440f6baa18f0fccca8d12e6
|
7
|
+
data.tar.gz: 5505ed975173eac89ecc8a4a06a747f58aa24247195cec1536ff22a0953f18f79059c25d4a9311b60aceafc91a7820fd70e5125d6432b755766392ab924d7bcc
|
data/.travis.yml
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "fluent-plugin-norikra"
|
5
|
-
spec.version = "0.4.
|
5
|
+
spec.version = "0.4.3"
|
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.}
|
@@ -68,5 +68,12 @@ module Fluent
|
|
68
68
|
def fetchable?
|
69
69
|
true
|
70
70
|
end
|
71
|
+
|
72
|
+
# For Fluentd 0.14 compatibility.
|
73
|
+
# Fluent::Compat::BufferedOutput expects the plugin class itself
|
74
|
+
# (but not its included module) to define `format_stream` when overriding.
|
75
|
+
def format_stream(*)
|
76
|
+
super
|
77
|
+
end
|
71
78
|
end
|
72
79
|
end
|
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.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TAGOMORI Satoshi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-11-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
158
158
|
version: '0'
|
159
159
|
requirements: []
|
160
160
|
rubyforge_project:
|
161
|
-
rubygems_version: 2.
|
161
|
+
rubygems_version: 2.6.13
|
162
162
|
signing_key:
|
163
163
|
specification_version: 4
|
164
164
|
summary: Fluentd plugin to do CEP with norikra
|