logstash-filter-http 0.1.0 → 1.0.0
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/CHANGELOG.md +4 -27
- data/logstash-filter-http.gemspec +4 -4
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28f518ce33ec20eb2bc5c7a278b306a23e6395601de73fb15d047200e70cad6b
|
|
4
|
+
data.tar.gz: 8ba79804ade21d536250d2c8a27e3a29f013851d4489b7a5322140b4f10dd549
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef3bdadac066c4935470023a38090051843e5a64e0e252b65889a7b23618164a63a91ab378481a214ae2803152539d8bc5c092774a881cdf8421ab9c82b92f92
|
|
7
|
+
data.tar.gz: cbff8c4e85e409dbfa7a7ffbf70d1a225db18c3f0eed4edfa54c302a7adb03a5e6171e9bdc3ec35e1d24c5429ca1a13dbceed2e9e35c8b446d07090223f065d0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,28 +1,5 @@
|
|
|
1
|
-
## 0.
|
|
1
|
+
## 1.0.0
|
|
2
|
+
- Minor documentation fixes
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
## 0.5.3
|
|
6
|
-
- freeze all instance variables
|
|
7
|
-
- fix parallel processing by creating a `deep_clone` for each event
|
|
8
|
-
- use `LogStash::Util.deep_clone` for object cloning
|
|
9
|
-
- only dump body as json, if json is enabled in config (default)
|
|
10
|
-
- delete empty target testcase, as catched by upper logstash `LogStash::ConfigurationError`
|
|
11
|
-
- fix `sprintf` find and merge for more complex structures
|
|
12
|
-
|
|
13
|
-
## 0.5.2
|
|
14
|
-
- Fix behavior, where a referenced field (`%{...}`) has `ruby` chars
|
|
15
|
-
(i.e., consisting of `:`)
|
|
16
|
-
- Field interpolation is done by assigning explicit values instead
|
|
17
|
-
of converting the `sprintf` string back into a `hash`
|
|
18
|
-
|
|
19
|
-
## 0.5.0
|
|
20
|
-
- Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
|
|
21
|
-
- Require devutils >= 0 to make `bundler` update the package
|
|
22
|
-
- Use Event API for LS-5
|
|
23
|
-
- Implicit `sprintf`, deprecating the setting
|
|
24
|
-
- `target` is now required, dropping support to write into top-level in favor of only using new Event API
|
|
25
|
-
- this follows other logstash-plugins like `logstash-filter-json`
|
|
26
|
-
- if the response is empty, add the restfailure tags
|
|
27
|
-
- Some logging moved before code
|
|
28
|
-
- Testcases adapted to new behavior with error check
|
|
4
|
+
## 0.1.0
|
|
5
|
+
- Beta version of HTTP filter plugin based on @lucashenning's [REST filter](https://github.com/lucashenning/logstash-filter-rest).
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-filter-http'
|
|
3
|
-
s.version = '
|
|
3
|
+
s.version = '1.0.0'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = 'This filter requests data from a RESTful Web Service.'
|
|
6
6
|
s.description = 'This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install logstash-filter-http. This gem is not a stand-alone program'
|
|
7
|
-
s.authors
|
|
8
|
-
s.email
|
|
9
|
-
s.homepage
|
|
7
|
+
s.authors = ["Elastic"]
|
|
8
|
+
s.email = 'info@elastic.co'
|
|
9
|
+
s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
|
|
10
10
|
s.require_paths = ['lib']
|
|
11
11
|
|
|
12
12
|
# Files
|
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-filter-http
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
- Gandalf Buscher
|
|
7
|
+
- Elastic
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 2019-01-11 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -74,7 +73,7 @@ dependencies:
|
|
|
74
73
|
description: This gem is a logstash plugin required to be installed on top of the
|
|
75
74
|
Logstash core pipeline using $LS_HOME/bin/logstash-plugin install logstash-filter-http.
|
|
76
75
|
This gem is not a stand-alone program
|
|
77
|
-
email:
|
|
76
|
+
email: info@elastic.co
|
|
78
77
|
executables: []
|
|
79
78
|
extensions: []
|
|
80
79
|
extra_rdoc_files: []
|
|
@@ -87,7 +86,7 @@ files:
|
|
|
87
86
|
- lib/logstash/filters/http.rb
|
|
88
87
|
- logstash-filter-http.gemspec
|
|
89
88
|
- spec/filters/http_spec.rb
|
|
90
|
-
homepage:
|
|
89
|
+
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
91
90
|
licenses:
|
|
92
91
|
- Apache License (2.0)
|
|
93
92
|
metadata:
|