fluent-plugin-slack 0.2.0 → 0.2.1
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.
- data/VERSION +1 -1
- data/lib/fluent/plugin/out_buffered_slack.rb +1 -1
- metadata +8 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
|
@@ -20,7 +20,7 @@ module Fluent
|
|
|
20
20
|
messages = {}
|
|
21
21
|
chunk.msgpack_each do |tag, time, record|
|
|
22
22
|
messages[tag] = '' if messages[tag].nil?
|
|
23
|
-
messages[tag] << "[#{Time.at(time).in_time_zone(@timezone)}] #{record['message']}\n"
|
|
23
|
+
messages[tag] << "[#{Time.at(time).in_time_zone(@timezone).strftime("%H:%M:%S")}] #{record['message']}\n"
|
|
24
24
|
end
|
|
25
25
|
begin
|
|
26
26
|
payload = {
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-slack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-07-
|
|
12
|
+
date: 2014-07-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fluentd
|
|
@@ -151,12 +151,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
151
151
|
- - ! '>='
|
|
152
152
|
- !ruby/object:Gem::Version
|
|
153
153
|
version: '0'
|
|
154
|
+
segments:
|
|
155
|
+
- 0
|
|
156
|
+
hash: -2798180410085788285
|
|
154
157
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
155
158
|
none: false
|
|
156
159
|
requirements:
|
|
157
160
|
- - ! '>='
|
|
158
161
|
- !ruby/object:Gem::Version
|
|
159
162
|
version: '0'
|
|
163
|
+
segments:
|
|
164
|
+
- 0
|
|
165
|
+
hash: -2798180410085788285
|
|
160
166
|
requirements: []
|
|
161
167
|
rubyforge_project:
|
|
162
168
|
rubygems_version: 1.8.23
|