logstash-output-elasticsearch_http 1.0.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/lib/logstash/outputs/elasticsearch_http.rb +1 -1
- data/logstash-output-elasticsearch_http.gemspec +3 -3
- metadata +19 -27
- data/.gitignore +0 -3
- data/Rakefile +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d7c8abfafc31e3329138dab3ec4f6de63907ce0
|
4
|
+
data.tar.gz: cdd81234f6cff22c9ec55de8576807fe4ce5bcc2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f385208e7eefabec5b890ac68fcdb6e5d7f2e5b5802e3b4fc1ebbd11a153b89cce29e4d913a92f0598edf95cd0c351f16c233752e32ae286b36088f53066ffc0
|
7
|
+
data.tar.gz: 24302b6793a935a5a9d4f357f30f4ee66cf1bbe63881e61222f6ac5baad1c3070a1c268e00d2f3e1dbb73fb42dcea32406048f2e53568d8b3c970d0f2c052509
|
data/README.md
CHANGED
@@ -5,16 +5,16 @@ This means that **new pull requests will not be accepted** here, please direct a
|
|
5
5
|
|
6
6
|
# Logstash Plugin
|
7
7
|
|
8
|
-
This is a plugin for [Logstash](https://github.com/
|
8
|
+
This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
9
9
|
|
10
10
|
It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
|
11
11
|
|
12
12
|
## Documentation
|
13
13
|
|
14
|
-
Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.
|
14
|
+
Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elastic.co/guide/en/logstash/current/).
|
15
15
|
|
16
16
|
- For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
|
17
|
-
- For more asciidoc formatting tips, see the excellent reference here https://github.com/
|
17
|
+
- For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide
|
18
18
|
|
19
19
|
## Need Help?
|
20
20
|
|
@@ -97,4 +97,4 @@ Programming is not a required skill. Whatever you've seen about open source and
|
|
97
97
|
|
98
98
|
It is more important to me that you are able to contribute.
|
99
99
|
|
100
|
-
For more information about contributing, see the [CONTRIBUTING](https://github.com/
|
100
|
+
For more information about contributing, see the [CONTRIBUTING](https://github.com/elastic/logstash/blob/master/CONTRIBUTING.md) file.
|
@@ -94,7 +94,7 @@ class LogStash::Outputs::ElasticsearchHTTP < LogStash::Outputs::Base
|
|
94
94
|
# written.
|
95
95
|
config :replication, :validate => ['async', 'sync'], :default => 'sync'
|
96
96
|
|
97
|
-
def_delegators :@elasticsearch_output, :
|
97
|
+
def_delegators :@elasticsearch_output, :close, :register, :receive
|
98
98
|
|
99
99
|
def initialize(options = {})
|
100
100
|
super(options)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-output-elasticsearch_http'
|
3
|
-
s.version = '
|
3
|
+
s.version = '2.0.0'
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
5
5
|
s.summary = "The elasticsearch_http output is deprecated in favor of the elasticsearch"
|
6
6
|
s.description = "The elasticsearch_http output is deprecated in favor of the elasticsearch output with the protocol set to http"
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.require_paths = ["lib"]
|
11
11
|
|
12
12
|
# Files
|
13
|
-
s.files =
|
13
|
+
s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
|
14
14
|
# Tests
|
15
15
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
16
16
|
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
|
19
19
|
|
20
20
|
# Gem dependencies
|
21
|
-
s.add_runtime_dependency
|
21
|
+
s.add_runtime_dependency "logstash-core", "~> 2.0.0.snapshot"
|
22
22
|
s.add_runtime_dependency 'logstash-output-elasticsearch'
|
23
23
|
s.add_runtime_dependency 'logstash-codec-plain'
|
24
24
|
s.add_development_dependency 'logstash-devutils'
|
metadata
CHANGED
@@ -1,90 +1,82 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-elasticsearch_http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.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: 2015-
|
11
|
+
date: 2015-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: logstash-core
|
15
|
-
version_requirements: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - '>='
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 1.4.0
|
20
|
-
- - <
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 2.0.0
|
23
14
|
requirement: !ruby/object:Gem::Requirement
|
24
15
|
requirements:
|
25
|
-
- -
|
16
|
+
- - ~>
|
26
17
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
28
|
-
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: 2.0.0
|
18
|
+
version: 2.0.0.snapshot
|
19
|
+
name: logstash-core
|
31
20
|
prerelease: false
|
32
21
|
type: :runtime
|
33
|
-
- !ruby/object:Gem::Dependency
|
34
|
-
name: logstash-output-elasticsearch
|
35
22
|
version_requirements: !ruby/object:Gem::Requirement
|
36
23
|
requirements:
|
37
|
-
- -
|
24
|
+
- - ~>
|
38
25
|
- !ruby/object:Gem::Version
|
39
|
-
version:
|
26
|
+
version: 2.0.0.snapshot
|
27
|
+
- !ruby/object:Gem::Dependency
|
40
28
|
requirement: !ruby/object:Gem::Requirement
|
41
29
|
requirements:
|
42
30
|
- - '>='
|
43
31
|
- !ruby/object:Gem::Version
|
44
32
|
version: '0'
|
33
|
+
name: logstash-output-elasticsearch
|
45
34
|
prerelease: false
|
46
35
|
type: :runtime
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: logstash-codec-plain
|
49
36
|
version_requirements: !ruby/object:Gem::Requirement
|
50
37
|
requirements:
|
51
38
|
- - '>='
|
52
39
|
- !ruby/object:Gem::Version
|
53
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
54
42
|
requirement: !ruby/object:Gem::Requirement
|
55
43
|
requirements:
|
56
44
|
- - '>='
|
57
45
|
- !ruby/object:Gem::Version
|
58
46
|
version: '0'
|
47
|
+
name: logstash-codec-plain
|
59
48
|
prerelease: false
|
60
49
|
type: :runtime
|
61
|
-
- !ruby/object:Gem::Dependency
|
62
|
-
name: logstash-devutils
|
63
50
|
version_requirements: !ruby/object:Gem::Requirement
|
64
51
|
requirements:
|
65
52
|
- - '>='
|
66
53
|
- !ruby/object:Gem::Version
|
67
54
|
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
68
56
|
requirement: !ruby/object:Gem::Requirement
|
69
57
|
requirements:
|
70
58
|
- - '>='
|
71
59
|
- !ruby/object:Gem::Version
|
72
60
|
version: '0'
|
61
|
+
name: logstash-devutils
|
73
62
|
prerelease: false
|
74
63
|
type: :development
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
75
69
|
description: The elasticsearch_http output is deprecated in favor of the elasticsearch output with the protocol set to http
|
76
70
|
email: info@elastic.co
|
77
71
|
executables: []
|
78
72
|
extensions: []
|
79
73
|
extra_rdoc_files: []
|
80
74
|
files:
|
81
|
-
- .gitignore
|
82
75
|
- CHANGELOG.md
|
83
76
|
- Gemfile
|
84
77
|
- LICENSE
|
85
78
|
- NOTICE.TXT
|
86
79
|
- README.md
|
87
|
-
- Rakefile
|
88
80
|
- lib/logstash/outputs/elasticsearch_http.rb
|
89
81
|
- logstash-output-elasticsearch_http.gemspec
|
90
82
|
- spec/outputs/elasticsearch_http_spec.rb
|
@@ -111,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
103
|
version: '0'
|
112
104
|
requirements: []
|
113
105
|
rubyforge_project:
|
114
|
-
rubygems_version: 2.
|
106
|
+
rubygems_version: 2.4.8
|
115
107
|
signing_key:
|
116
108
|
specification_version: 4
|
117
109
|
summary: The elasticsearch_http output is deprecated in favor of the elasticsearch
|
data/.gitignore
DELETED
data/Rakefile
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
require "logstash/devutils/rake"
|