fluent-plugin-parse_request_body 0.0.14 → 0.0.15
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58a5e18dbe4c7791a652d832a200a7d2338a370b29f055590f7f28a39e1310d3
|
|
4
|
+
data.tar.gz: b73facd81747ff81e5ad2a8b8ca6aa193f1d014dd3e6d6e13d908a52c99c13ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b555c8a8461603ef41e604c5647acba50566203e10b3c8b1bc9ebccd6bff499dd6a2d3a4e41f055a05dddeb98117f015810fd841c518f916eec2f7afb3b08b7
|
|
7
|
+
data.tar.gz: c2e0c725ea0746faecc2509342880b45c0d20bd35127242db8b44b84f619f358c0c764b7f91bbb9c13caa25441e4c1940ac47edf0eedcb299d70bcab649f119d
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |gem|
|
|
2
2
|
gem.name = 'fluent-plugin-parse_request_body'
|
|
3
|
-
gem.version = '0.0.
|
|
3
|
+
gem.version = '0.0.15'
|
|
4
4
|
gem.authors = ['EkiSong']
|
|
5
5
|
gem.email = ['yifriday0614@gmail.com']
|
|
6
6
|
gem.homepage = 'https://github.com/yifriday/fluent-plugin-parse_request_body.git'
|
|
@@ -6,8 +6,10 @@ module Fluent::Plugin
|
|
|
6
6
|
|
|
7
7
|
Fluent::Plugin.register_filter('parse_request_body', self)
|
|
8
8
|
|
|
9
|
-
desc "point a key whose value contains
|
|
9
|
+
desc "point a key whose value contains body string."
|
|
10
10
|
config_param :key, :string
|
|
11
|
+
desc "point a key who will be replaced."
|
|
12
|
+
config_param :replace_key, :string, default: nil
|
|
11
13
|
desc "If set, the key/value will be reformd array whose would be added to the record."
|
|
12
14
|
config_param :array_value, :string, default: nil
|
|
13
15
|
desc "array_value's key in record"
|
|
@@ -9,8 +9,10 @@ module Fluent::Plugin
|
|
|
9
9
|
|
|
10
10
|
helpers :event_emitter
|
|
11
11
|
|
|
12
|
-
desc "point a key whose value contains
|
|
12
|
+
desc "point a key whose value contains body string."
|
|
13
13
|
config_param :key, :string
|
|
14
|
+
desc "point a key who will be replaced."
|
|
15
|
+
config_param :replace_key, :string, default: nil
|
|
14
16
|
desc "If set, the key/value will be reformd array whose would be added to the record."
|
|
15
17
|
config_param :array_value, :string, default: nil
|
|
16
18
|
desc "array_value's key in record"
|