fluent-plugin-rewrite-tag-filter 1.5.3 → 1.5.4
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/.travis.yml
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "fluent-plugin-rewrite-tag-filter"
|
6
|
-
s.version = "1.5.
|
6
|
+
s.version = "1.5.4"
|
7
7
|
s.license = "Apache-2.0"
|
8
8
|
s.authors = ["Kentaro Yoshida"]
|
9
9
|
s.email = ["y.ken.studio@gmail.com"]
|
@@ -6,8 +6,19 @@ class Fluent::RewriteTagFilterOutput < Fluent::Output
|
|
6
6
|
define_method("router") { Fluent::Engine }
|
7
7
|
end
|
8
8
|
|
9
|
+
# For fluentd v0.12.16 or earlier
|
10
|
+
class << self
|
11
|
+
unless method_defined?(:desc)
|
12
|
+
def desc(description)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
desc 'Capitalize letter for every matched regex backreference.'
|
9
18
|
config_param :capitalize_regex_backreference, :bool, :default => false
|
19
|
+
desc 'Remove tag prefix for tag placeholder.'
|
10
20
|
config_param :remove_tag_prefix, :string, :default => nil
|
21
|
+
desc 'Override hostname command for placeholder.'
|
11
22
|
config_param :hostname_command, :string, :default => 'hostname'
|
12
23
|
|
13
24
|
MATCH_OPERATOR_EXCLUDE = '!'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-rewrite-tag-filter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.4
|
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: 2015-12-
|
12
|
+
date: 2015-12-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: test-unit
|