logstash-output-http 4.3.0 → 4.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +8 -1
- data/README.md +1 -1
- data/docs/index.asciidoc +6 -5
- data/logstash-output-http.gemspec +1 -1
- 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: eff15e578da1bbd9f5042e6b0160f94b7a9f737d
|
4
|
+
data.tar.gz: 561c1e43cd01d98ccbb802f0ddaf4b50785a5e04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47beec9456073365a69cec26abeb9cf1d8b2647d7b0154d355830bb188e0cdceef3c3ef1c7191004a99512999decd11d6c0525efc42add9a827b3a15280d0e18
|
7
|
+
data.tar.gz: 4f4593aa0df0d5c93481152235544c4b70f8f20bb720bb70e89704755374f57c1e01a30b32464a3e47ec2046374c97c89cac39ab0d2ce260a84039a72356cf70
|
data/Gemfile
CHANGED
@@ -1,4 +1,11 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
# Specify your gem's dependencies in logstash-mass_effect.gemspec
|
4
3
|
gemspec
|
4
|
+
|
5
|
+
logstash_path = ENV["LOGSTASH_PATH"] || "../../logstash"
|
6
|
+
use_logstash_source = ENV["LOGSTASH_SOURCE"] && ENV["LOGSTASH_SOURCE"].to_s == "1"
|
7
|
+
|
8
|
+
if Dir.exist?(logstash_path) && use_logstash_source
|
9
|
+
gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
|
10
|
+
gem 'logstash-core-plugin-api', :path => "#{logstash_path}/logstash-core-plugin-api"
|
11
|
+
end
|
data/README.md
CHANGED
@@ -74,7 +74,7 @@ You can use the same **2.1** method to run your plugin in an installed Logstash
|
|
74
74
|
|
75
75
|
- Build your plugin gem
|
76
76
|
```sh
|
77
|
-
gem build logstash-
|
77
|
+
gem build logstash-output-http.gemspec
|
78
78
|
```
|
79
79
|
- Install the plugin from the Logstash home
|
80
80
|
```sh
|
data/docs/index.asciidoc
CHANGED
@@ -7,14 +7,14 @@ START - GENERATED VARIABLES, DO NOT EDIT!
|
|
7
7
|
:version: %VERSION%
|
8
8
|
:release_date: %RELEASE_DATE%
|
9
9
|
:changelog_url: %CHANGELOG_URL%
|
10
|
-
:include_path:
|
10
|
+
:include_path: ../../../../logstash/docs/include
|
11
11
|
///////////////////////////////////////////
|
12
12
|
END - GENERATED VARIABLES, DO NOT EDIT!
|
13
13
|
///////////////////////////////////////////
|
14
14
|
|
15
15
|
[id="plugins-{type}-{plugin}"]
|
16
16
|
|
17
|
-
=== Http
|
17
|
+
=== Http output plugin
|
18
18
|
|
19
19
|
include::{include_path}/plugin_header.asciidoc[]
|
20
20
|
|
@@ -25,7 +25,7 @@ include::{include_path}/plugin_header.asciidoc[]
|
|
25
25
|
[id="plugins-{type}s-{plugin}-options"]
|
26
26
|
==== Http Output Configuration Options
|
27
27
|
|
28
|
-
This plugin supports the following configuration options plus the <<plugins-{type}s-common-options>> described later.
|
28
|
+
This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
|
29
29
|
|
30
30
|
[cols="<,<,<",options="header",]
|
31
31
|
|=======================================================================
|
@@ -64,7 +64,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|
|
64
64
|
| <<plugins-{type}s-{plugin}-validate_after_inactivity>> |<<number,number>>|No
|
65
65
|
|=======================================================================
|
66
66
|
|
67
|
-
Also see <<plugins-{type}s-common-options>> for a list of options supported by all
|
67
|
+
Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
|
68
68
|
output plugins.
|
69
69
|
|
70
70
|
|
@@ -377,4 +377,5 @@ See https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache
|
|
377
377
|
|
378
378
|
|
379
379
|
|
380
|
-
|
380
|
+
[id="plugins-{type}s-{plugin}-common-options"]
|
381
|
+
include::{include_path}/{type}.asciidoc[]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-output-http'
|
3
|
-
s.version = '4.3.
|
3
|
+
s.version = '4.3.1'
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
5
5
|
s.summary = "This output lets you `PUT` or `POST` events to a generic HTTP(S) endpoint"
|
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 gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.3.
|
4
|
+
version: 4.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|