logstash-input-http_bold 3.5.0-java → 3.5.4-java
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/Gemfile +1 -1
- data/VERSION +1 -1
- data/lib/logstash-input-http_bold_jars.rb +1 -1
- data/lib/logstash/inputs/http_bold.rb +4 -4
- data/spec/inputs/{http_bolspec.rb → http_bold_spec.rb} +0 -0
- data/vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/{3.5.0/logstash-input-http_bold-3.5.0.jar → 3.4.1/logstash-input-http_bold-3.4.1.jar} +0 -0
- data/vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.1/logstash-input-http_bold-3.5.1.jar +0 -0
- data/vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.3/logstash-input-http_bold-3.5.3.jar +0 -0
- data/vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.4/logstash-input-http_bold-3.5.4.jar +0 -0
- metadata +7 -5
- data/lib/logstash-input-http_jars.rb +0 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70d2b930ba29e150b11fc111904c29aa1eaeea7389edf294165215d3914e6db8
|
|
4
|
+
data.tar.gz: 0f1b6243f198178e4fed5a26cb6392f39cb81c2056700976359e79b84cd74034
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27c6e476d957911d55ffbc48e0c078cfb616ffef8e1dfbdb41b2f8383e8d70ccf715ff5b1f0a73e9a89581b8d009533d08df45d6da078627551517cac48beda1
|
|
7
|
+
data.tar.gz: 86a4a7587d6b3166247434a42b2d78b4199ae235080089742c9417e8a82621138c3e799240d113a270df777e1d1cd507db598b13626f8b9307f36d5500d2c7f9
|
data/Gemfile
CHANGED
|
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
|
|
|
2
2
|
|
|
3
3
|
gemspec
|
|
4
4
|
|
|
5
|
-
logstash_path = ENV["LOGSTASH_PATH"] || "
|
|
5
|
+
logstash_path = ENV["LOGSTASH_PATH"] || "../../logstash"
|
|
6
6
|
use_logstash_source = ENV["LOGSTASH_SOURCE"] && ENV["LOGSTASH_SOURCE"].to_s == "1"
|
|
7
7
|
|
|
8
8
|
if Dir.exist?(logstash_path) && use_logstash_source
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.5.
|
|
1
|
+
3.5.4
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
require 'jar_dependencies'
|
|
4
4
|
require_jar('io.netty', 'netty-all', '4.1.65.Final')
|
|
5
5
|
require_jar('org.apache.logging.log4j', 'log4j-api', '2.11.1')
|
|
6
|
-
require_jar('org.logstash.plugins.input.http_bold', 'logstash-input-http_bold', '3.5.
|
|
6
|
+
require_jar('org.logstash.plugins.input.http_bold', 'logstash-input-http_bold', '3.5.4')
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
require "logstash/inputs/base"
|
|
3
3
|
require "logstash/namespace"
|
|
4
4
|
require "stud/interval"
|
|
5
|
-
require "logstash-input-
|
|
5
|
+
require "logstash-input-http_bold_jars"
|
|
6
6
|
require "logstash/plugin_mixins/ecs_compatibility_support"
|
|
7
7
|
|
|
8
8
|
# Using this input you can receive single or multiline events over http(s).
|
|
@@ -20,9 +20,9 @@ require "logstash/plugin_mixins/ecs_compatibility_support"
|
|
|
20
20
|
# This plugin supports standard HTTP basic authentication headers to identify the requester.
|
|
21
21
|
# You can pass in an username, password combination while sending data to this input
|
|
22
22
|
#
|
|
23
|
-
# You can also setup SSL and send data securely over https, with an option of validating
|
|
24
|
-
# the client's certificate. Currently, the certificate setup is through
|
|
25
|
-
# https://docs.oracle.com/cd/E19509-01/820-3503/ggfen/index.html[Java Keystore
|
|
23
|
+
# You can also setup SSL and send data securely over https, with an option of validating
|
|
24
|
+
# the client's certificate. Currently, the certificate setup is through
|
|
25
|
+
# https://docs.oracle.com/cd/E19509-01/820-3503/ggfen/index.html[Java Keystore
|
|
26
26
|
# format]
|
|
27
27
|
#
|
|
28
28
|
class LogStash::Inputs::Http < LogStash::Inputs::Base
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-http_bold
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.5.
|
|
4
|
+
version: 3.5.4
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
@@ -151,17 +151,19 @@ files:
|
|
|
151
151
|
- VERSION
|
|
152
152
|
- docs/index.asciidoc
|
|
153
153
|
- lib/logstash-input-http_bold_jars.rb
|
|
154
|
-
- lib/logstash-input-http_jars.rb
|
|
155
154
|
- lib/logstash/inputs/http/message_handler.rb
|
|
156
155
|
- lib/logstash/inputs/http/tls.rb
|
|
157
156
|
- lib/logstash/inputs/http_bold.rb
|
|
158
157
|
- lib/logstash/util/http_compressed_requests.rb
|
|
159
158
|
- lib/tasks/build.rake
|
|
160
159
|
- logstash-input-http_bold.gemspec
|
|
161
|
-
- spec/inputs/
|
|
160
|
+
- spec/inputs/http_bold_spec.rb
|
|
162
161
|
- vendor/jar-dependencies/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar
|
|
163
162
|
- vendor/jar-dependencies/org/apache/logging/log4j/log4j-api/2.11.1/log4j-api-2.11.1.jar
|
|
164
|
-
- vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.
|
|
163
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.4.1/logstash-input-http_bold-3.4.1.jar
|
|
164
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.1/logstash-input-http_bold-3.5.1.jar
|
|
165
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.3/logstash-input-http_bold-3.5.3.jar
|
|
166
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.4/logstash-input-http_bold-3.5.4.jar
|
|
165
167
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
166
168
|
licenses:
|
|
167
169
|
- Apache License (2.0)
|
|
@@ -189,4 +191,4 @@ signing_key:
|
|
|
189
191
|
specification_version: 4
|
|
190
192
|
summary: Receives events over HTTP or HTTPS
|
|
191
193
|
test_files:
|
|
192
|
-
- spec/inputs/
|
|
194
|
+
- spec/inputs/http_bold_spec.rb
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
# AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
|
|
2
|
-
|
|
3
|
-
require 'jar_dependencies'
|
|
4
|
-
require_jar('io.netty', 'netty-all', '4.1.65.Final')
|
|
5
|
-
require_jar('org.apache.logging.log4j', 'log4j-api', '2.11.1')
|
|
6
|
-
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.4.1')
|