fluent-plugin-json-in-json-2 1.0.0 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +7 -8
- data/fluent-plugin-json-in-json.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3313464148f3479c2f659df84db3ad33e0fd0fb5
|
|
4
|
+
data.tar.gz: b7bd73c8f691d888d7c01c42dc09079e1f3acc04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a078226c7c1705533a13560332cd9f9433799702f77748485ccdc7ce3624f724d4e9d37ae5452ae838788c7e1e2e8fe5af47516b8fa05b11556b0925c5995eba
|
|
7
|
+
data.tar.gz: 23218b8a26437015d2b09ac04622cd1e59d99dff1f2948f220ebd6b68a1bc2f611ec39d551b655b708c618b2eb8dc67c4230f016efd7caaff695c4d6e315eca6
|
data/README.md
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
# fluent-plugin-json-in-json
|
|
1
|
+
# fluent-plugin-json-in-json [](https://badge.fury.io/rb/fluent-plugin-json-in-json-2)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This is a fork repo of [arcivanov/fluent-plugin-json-in-json](https://github.com/arcivanov/fluent-plugin-json-in-json) which itself fork of [gmr/fluent-plugin-json-in-json](https://github.com/gmr/fluent-plugin-json-in-json) which is not supported now.
|
|
4
|
+
|
|
5
|
+
The purpose of this repo to publish actual version of `fluent-plugin-json-in-json` plugin.
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
|---------------------------|-------------|--------|
|
|
7
|
-
| >= 1.0.0 | >= v0.14.0 | >= 2.1 |
|
|
8
|
-
| < 1.0.0 | >= v0.12.0 | >= 1.9 |
|
|
7
|
+
## Requirements
|
|
9
8
|
|
|
10
9
|
This fluentd parser plugin parses JSON log lines with nested JSON strings. For
|
|
11
10
|
example, given a docker log of ``{"log": "{\"foo\": \"bar\"}"}``, the log record
|
|
@@ -15,7 +14,7 @@ will be parsed into ``{:log => { :foo => "bar" }}``.
|
|
|
15
14
|
|
|
16
15
|
Add this line to your application's Gemfile:
|
|
17
16
|
|
|
18
|
-
gem 'fluent-plugin-json-in-json'
|
|
17
|
+
gem 'fluent-plugin-json-in-json-2'
|
|
19
18
|
|
|
20
19
|
And then execute:
|
|
21
20
|
|
|
@@ -23,7 +22,7 @@ And then execute:
|
|
|
23
22
|
|
|
24
23
|
Or install it yourself as:
|
|
25
24
|
|
|
26
|
-
$ gem install fluent-plugin-json-in-json
|
|
25
|
+
$ gem install fluent-plugin-json-in-json-2
|
|
27
26
|
|
|
28
27
|
|
|
29
28
|
## Usage
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
Gem::Specification.new do |spec|
|
|
3
3
|
spec.name = "fluent-plugin-json-in-json-2"
|
|
4
|
-
spec.version = "1.0.
|
|
4
|
+
spec.version = "1.0.1"
|
|
5
5
|
spec.authors = ["Gavin M. Roy", "Arcadiy Ivanov", "Alik Khilazhev"]
|
|
6
6
|
spec.email = ["gavinmroy@gmail.com", "arcadiy@ivanov.biz", "alikhil@mail.ru"]
|
|
7
7
|
spec.description = %q{Parser plugin that parses JSON attributes with JSON strings in them}
|
|
8
8
|
spec.summary = %q{Parser plugin that parses JSON attributes with JSON strings in them}
|
|
9
|
-
spec.homepage = "https://github.com/
|
|
9
|
+
spec.homepage = "https://github.com/alikhil/fluent-plugin-json-in-json"
|
|
10
10
|
spec.license = "BSD"
|
|
11
11
|
|
|
12
12
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-json-in-json-2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gavin M. Roy
|
|
@@ -119,7 +119,7 @@ files:
|
|
|
119
119
|
- lib/fluent/plugin/parser_json_in_json.rb
|
|
120
120
|
- test/helper.rb
|
|
121
121
|
- test/test_parser.rb
|
|
122
|
-
homepage: https://github.com/
|
|
122
|
+
homepage: https://github.com/alikhil/fluent-plugin-json-in-json
|
|
123
123
|
licenses:
|
|
124
124
|
- BSD
|
|
125
125
|
metadata: {}
|