logstash-mixin-http_client 2.2.4 → 4.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 +2 -0
- data/Gemfile +3 -1
- data/LICENSE +1 -1
- data/README.md +13 -4
- data/logstash-mixin-http_client.gemspec +2 -2
- metadata +35 -35
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 828f2418909fb147fc15f614f7a0a75c4c2574e2
|
|
4
|
+
data.tar.gz: 6b5f5afddb61bd18c47b46ffaa6afd0aa0c119cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 971e74879b926a0fe7ce28756868af5f5b67ed584ea92bb36a224c8189cb6f31491f638088d33f991242a1da0ea269955e8b64021393822f3f8988163f4f41a9
|
|
7
|
+
data.tar.gz: 89f72475385486800223f7a2a0de2f0d7518dd1a41e057d8d9307ff855663f82a44fa10996e7fa19a97ecb4176c2a3c9f5d855092845ef73f715cc52794a80bd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
## 4.0.0
|
|
2
|
+
- Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
|
|
1
3
|
# 2.2.4
|
|
2
4
|
- Fix 'ssl_certificate_validation' option to actually let you disable cert validation
|
|
3
5
|
# 2.2.3
|
data/Gemfile
CHANGED
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
# Easily Add an HTTP Client to your Logstash Plugin!
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/logstash-plugins/logstash-mixin-http_client)
|
|
4
4
|
|
|
5
5
|
HTTP clients have a lot of configurable options (proxies, certificates, headers, etc.), and specifying all of these with proper validation for a logstash plugin can be irritating. We built this plugin while building our [HTTP Poller Input](https://github.com/logstash-plugins/logstash-input-http_poller). If you need to build a plugin that works primarily based around HTTP this mixin makes it easy and consistent! It is based on [Manticore](https://github.com/cheald/manticore) a lightning quick, fully featured JRuby HTTP client based on Apache Commons HTTP Client.`
|
|
6
6
|
|
|
7
|
-
[](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Mixins/job/logstash-plugin-mixin-http_client-unit/)
|
|
7
|
+
[](https://travis-ci.org/logstash-plugins/logstash-mixin-http_client)
|
|
9
8
|
|
|
10
9
|
This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
|
11
10
|
|
|
@@ -116,7 +115,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
|
|
|
116
115
|
```
|
|
117
116
|
- Install plugin
|
|
118
117
|
```sh
|
|
118
|
+
# Logstash 2.3 and higher
|
|
119
|
+
bin/logstash-plugin install --no-verify
|
|
120
|
+
|
|
121
|
+
# Prior to Logstash 2.3
|
|
119
122
|
bin/plugin install --no-verify
|
|
123
|
+
|
|
120
124
|
```
|
|
121
125
|
- Run Logstash with your plugin
|
|
122
126
|
```sh
|
|
@@ -134,7 +138,12 @@ gem build logstash-filter-awesome.gemspec
|
|
|
134
138
|
```
|
|
135
139
|
- Install the plugin from the Logstash home
|
|
136
140
|
```sh
|
|
137
|
-
|
|
141
|
+
# Logstash 2.3 and higher
|
|
142
|
+
bin/logstash-plugin install --no-verify
|
|
143
|
+
|
|
144
|
+
# Prior to Logstash 2.3
|
|
145
|
+
bin/plugin install --no-verify
|
|
146
|
+
|
|
138
147
|
```
|
|
139
148
|
- Start Logstash and proceed to test the plugin
|
|
140
149
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-mixin-http_client'
|
|
3
|
-
s.version = '
|
|
3
|
+
s.version = '4.0.0'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "AWS mixins to provide a unified interface for Amazon Webservice"
|
|
6
|
-
s.description = "This gem is a
|
|
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"
|
|
7
7
|
s.authors = ["Elastic"]
|
|
8
8
|
s.email = 'info@elastic.co'
|
|
9
9
|
s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
|
metadata
CHANGED
|
@@ -1,92 +1,92 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-mixin-http_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 4.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: logstash-core-plugin-api
|
|
15
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - ~>
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.0'
|
|
20
14
|
requirement: !ruby/object:Gem::Requirement
|
|
21
15
|
requirements:
|
|
22
|
-
- - ~>
|
|
16
|
+
- - "~>"
|
|
23
17
|
- !ruby/object:Gem::Version
|
|
24
18
|
version: '1.0'
|
|
19
|
+
name: logstash-core-plugin-api
|
|
25
20
|
prerelease: false
|
|
26
21
|
type: :runtime
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: logstash-codec-plain
|
|
29
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
30
23
|
requirements:
|
|
31
|
-
- -
|
|
24
|
+
- - "~>"
|
|
32
25
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
26
|
+
version: '1.0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
34
28
|
requirement: !ruby/object:Gem::Requirement
|
|
35
29
|
requirements:
|
|
36
|
-
- -
|
|
30
|
+
- - ">="
|
|
37
31
|
- !ruby/object:Gem::Version
|
|
38
32
|
version: '0'
|
|
33
|
+
name: logstash-codec-plain
|
|
39
34
|
prerelease: false
|
|
40
35
|
type: :runtime
|
|
41
|
-
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: manticore
|
|
43
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
44
37
|
requirements:
|
|
45
|
-
- -
|
|
38
|
+
- - ">="
|
|
46
39
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0
|
|
48
|
-
|
|
49
|
-
- !ruby/object:Gem::Version
|
|
50
|
-
version: 1.0.0
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
51
42
|
requirement: !ruby/object:Gem::Requirement
|
|
52
43
|
requirements:
|
|
53
|
-
- -
|
|
44
|
+
- - ">="
|
|
54
45
|
- !ruby/object:Gem::Version
|
|
55
46
|
version: 0.5.2
|
|
56
|
-
- - <
|
|
47
|
+
- - "<"
|
|
57
48
|
- !ruby/object:Gem::Version
|
|
58
49
|
version: 1.0.0
|
|
50
|
+
name: manticore
|
|
59
51
|
prerelease: false
|
|
60
52
|
type: :runtime
|
|
61
|
-
- !ruby/object:Gem::Dependency
|
|
62
|
-
name: logstash-devutils
|
|
63
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
64
54
|
requirements:
|
|
65
|
-
- -
|
|
55
|
+
- - ">="
|
|
66
56
|
- !ruby/object:Gem::Version
|
|
67
|
-
version:
|
|
57
|
+
version: 0.5.2
|
|
58
|
+
- - "<"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: 1.0.0
|
|
61
|
+
- !ruby/object:Gem::Dependency
|
|
68
62
|
requirement: !ruby/object:Gem::Requirement
|
|
69
63
|
requirements:
|
|
70
|
-
- -
|
|
64
|
+
- - ">="
|
|
71
65
|
- !ruby/object:Gem::Version
|
|
72
66
|
version: '0'
|
|
67
|
+
name: logstash-devutils
|
|
73
68
|
prerelease: false
|
|
74
69
|
type: :development
|
|
75
|
-
- !ruby/object:Gem::Dependency
|
|
76
|
-
name: stud
|
|
77
70
|
version_requirements: !ruby/object:Gem::Requirement
|
|
78
71
|
requirements:
|
|
79
|
-
- -
|
|
72
|
+
- - ">="
|
|
80
73
|
- !ruby/object:Gem::Version
|
|
81
74
|
version: '0'
|
|
75
|
+
- !ruby/object:Gem::Dependency
|
|
82
76
|
requirement: !ruby/object:Gem::Requirement
|
|
83
77
|
requirements:
|
|
84
|
-
- -
|
|
78
|
+
- - ">="
|
|
85
79
|
- !ruby/object:Gem::Version
|
|
86
80
|
version: '0'
|
|
81
|
+
name: stud
|
|
87
82
|
prerelease: false
|
|
88
83
|
type: :development
|
|
89
|
-
|
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '0'
|
|
89
|
+
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
|
|
90
90
|
email: info@elastic.co
|
|
91
91
|
executables: []
|
|
92
92
|
extensions: []
|
|
@@ -110,12 +110,12 @@ require_paths:
|
|
|
110
110
|
- lib
|
|
111
111
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
112
112
|
requirements:
|
|
113
|
-
- -
|
|
113
|
+
- - ">="
|
|
114
114
|
- !ruby/object:Gem::Version
|
|
115
115
|
version: '0'
|
|
116
116
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
117
117
|
requirements:
|
|
118
|
-
- -
|
|
118
|
+
- - ">="
|
|
119
119
|
- !ruby/object:Gem::Version
|
|
120
120
|
version: '0'
|
|
121
121
|
requirements: []
|