logstash-filter-json_schema 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.
- checksums.yaml +4 -4
- data/lib/logstash/filters/json_schema.rb +1 -1
- data/logstash-filter-json_schema.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7dfc67012e1f29dbb7facd7fc2d0d550927417346ba602c3b1c6f9e0771c744
|
|
4
|
+
data.tar.gz: 827a74cf41f7a2e782ff757082203bfcc3688f4cee97e05e13df2138d09e565c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b16324e6cba2a1215ccc86ceaa544034c3cb905b00cb6073c4da8c6a681ee29587bca0d15c8f46c07b941cf918e0a8b7c6ec38e5d5f3ab3f18cc16a0605decb
|
|
7
|
+
data.tar.gz: 7350e452c06322d383df4a8e7d908b8732c25c69ba332dc3174c188667fb9b724e01f1518a87d4e6fbfb43d99da5906d88717c985b904b1bfeb598b6d80d0bab
|
|
@@ -29,7 +29,7 @@ class LogStash::Filters::JsonSchema < LogStash::Filters::Base
|
|
|
29
29
|
tag_as_schema_failure(event)
|
|
30
30
|
end
|
|
31
31
|
rescue Exception => e
|
|
32
|
-
logger.error("Exception thrown while validating entry", { "schema" => @schema, "log entry" => body, "exception" => e})
|
|
32
|
+
logger.error("Exception thrown while validating entry", { "schema" => @schema, "log entry" => body, "exception" => e, "trace" => e.backtrace.join(";")})
|
|
33
33
|
tag_as_schema_failure(event)
|
|
34
34
|
end
|
|
35
35
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-filter-json_schema'
|
|
3
|
-
s.version = '0.2.
|
|
3
|
+
s.version = '0.2.1'
|
|
4
4
|
s.licenses = ['Apache-2.0']
|
|
5
5
|
s.summary = 'Validates json input against a provided schema (https://json-schema.org)'
|
|
6
6
|
s.homepage = 'https://github.com/pluralsight/logstash-filter-json_schema'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-filter-json_schema
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Neil Sorensen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-11-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|