logstash-input-http_bold 3.5.4-java → 3.6.0-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/inputs/http_bold.rb +4 -4
- data/lib/logstash-input-http_bold_jars.rb +2 -1
- data/lib/logstash-input-http_jars.rb +6 -0
- data/spec/inputs/{http_bold_spec.rb → http_bolspec.rb} +0 -0
- data/vendor/jar-dependencies/org/json/json/20210307/json-20210307.jar +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 +0 -0
- data/vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.6.0/logstash-input-http_bold-3.6.0.jar +0 -0
- metadata +8 -8
- data/vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed590ff2f7fa87bdb02eef98271a84e65c8edb1d8edc67abfd44e3f2f4272925
|
|
4
|
+
data.tar.gz: e17538afdbaf9650fca472f259e2fe6f9742c396ed3ae3a7636eff0437287c3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15eef8831ef140212121c4c1560dcde8e89cebbe1b0641e3b2695bf1a8262f497a3eaa24951a09898628584c4ae3e1fc5c36474feca140f3749ced73cca22155
|
|
7
|
+
data.tar.gz: 45d975d48961127f96b46c76c5f18b4e4cfc680fa317b7c00aa840225bf70fccba348be9da8d5ed1980d3a0c04a2b25e1f349f83a93fd664bc0dd7fde1d419dc
|
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.
|
|
1
|
+
3.6.0
|
|
@@ -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_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
|
|
@@ -3,4 +3,5 @@
|
|
|
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.
|
|
6
|
+
require_jar('org.json', 'json', '20210307')
|
|
7
|
+
require_jar('org.logstash.plugins.input.http_bold', 'logstash-input-http_bold', '3.6.0')
|
|
@@ -0,0 +1,6 @@
|
|
|
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')
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-http_bold
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.6.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -151,19 +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
|
|
154
155
|
- lib/logstash/inputs/http/message_handler.rb
|
|
155
156
|
- lib/logstash/inputs/http/tls.rb
|
|
156
157
|
- lib/logstash/inputs/http_bold.rb
|
|
157
158
|
- lib/logstash/util/http_compressed_requests.rb
|
|
158
159
|
- lib/tasks/build.rake
|
|
159
160
|
- logstash-input-http_bold.gemspec
|
|
160
|
-
- spec/inputs/
|
|
161
|
+
- spec/inputs/http_bolspec.rb
|
|
161
162
|
- vendor/jar-dependencies/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar
|
|
162
163
|
- vendor/jar-dependencies/org/apache/logging/log4j/log4j-api/2.11.1/log4j-api-2.11.1.jar
|
|
163
|
-
- vendor/jar-dependencies/org/
|
|
164
|
-
- vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.
|
|
165
|
-
- vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.
|
|
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
|
|
164
|
+
- vendor/jar-dependencies/org/json/json/20210307/json-20210307.jar
|
|
165
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.0/logstash-input-http_bold-3.5.0.jar
|
|
166
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.6.0/logstash-input-http_bold-3.6.0.jar
|
|
167
167
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
168
168
|
licenses:
|
|
169
169
|
- Apache License (2.0)
|
|
@@ -191,4 +191,4 @@ signing_key:
|
|
|
191
191
|
specification_version: 4
|
|
192
192
|
summary: Receives events over HTTP or HTTPS
|
|
193
193
|
test_files:
|
|
194
|
-
- spec/inputs/
|
|
194
|
+
- spec/inputs/http_bolspec.rb
|
|
Binary file
|
|
Binary file
|
|
Binary file
|