fluent-plugin-splunkapi 0.1.0 → 0.1.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/README.md +6 -6
- data/fluent-plugin-splunkapi.gemspec +1 -1
- data/lib/fluent/plugin/out_splunkapi.rb +3 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -90,9 +90,9 @@ Put the following lines to your fluent.conf:
|
|
90
90
|
#
|
91
91
|
|
92
92
|
# time_format: the time format of each event
|
93
|
-
# value: none, unixtime, or any time format string
|
94
|
-
# default:
|
95
|
-
|
93
|
+
# value: none, unixtime, localtime, or any time format string
|
94
|
+
# default: localtime
|
95
|
+
time_format localtime
|
96
96
|
|
97
97
|
# format: the text format of each event
|
98
98
|
# value: json, kvp, or text
|
@@ -128,9 +128,9 @@ Put the following lines to your fluent.conf:
|
|
128
128
|
|
129
129
|
# flush_interval: The interval of API requests.
|
130
130
|
#
|
131
|
-
# Make sure that this value is large
|
132
|
-
# Note that a different source
|
133
|
-
#
|
131
|
+
# Make sure that this value is sufficiently large to make successive API calls.
|
132
|
+
# Note that a different 'source' creates a different API POST, each of which may
|
133
|
+
# take two or more seconds. If you include "{TAG}" in the source parameter and
|
134
134
|
# this 'match' section recieves many tags, a single flush may take long time.
|
135
135
|
# (Run fluentd with -v to see verbose logs.)
|
136
136
|
flush_interval 60s
|
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.name = "fluent-plugin-splunkapi"
|
6
|
-
gem.version = "0.1.
|
6
|
+
gem.version = "0.1.1"
|
7
7
|
gem.authors = ["Keisuke Nishida"]
|
8
8
|
gem.email = ["knishida@bizmobile.co.jp"]
|
9
9
|
gem.description = %q{Splunk output plugin for Fluent event collector}
|
@@ -44,7 +44,7 @@ class SplunkAPIOutput < BufferedOutput
|
|
44
44
|
config_param :sourcetype, :string, :default => 'fluent'
|
45
45
|
|
46
46
|
# Formatting
|
47
|
-
config_param :time_format, :string, :default =>
|
47
|
+
config_param :time_format, :string, :default => 'localtime'
|
48
48
|
config_param :format, :string, :default => 'json'
|
49
49
|
|
50
50
|
def initialize
|
@@ -68,6 +68,8 @@ class SplunkAPIOutput < BufferedOutput
|
|
68
68
|
@time_formatter = nil
|
69
69
|
when 'unixtime'
|
70
70
|
@time_formatter = lambda { |time| time.to_s }
|
71
|
+
when 'localtime'
|
72
|
+
@time_formatter = lambda { |time| Time.at(time).localtime }
|
71
73
|
else
|
72
74
|
@timef = TimeFormatter.new(@time_format, @localtime)
|
73
75
|
@time_formatter = lambda { |time| @timef.format(time) }
|