logstash-output-elasticsearch-test 11.16.0-x86_64-linux → 11.16.1-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/logstash-output-elasticsearch-test.gemspec +40 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c577c583ea96ba0cbf3a4a7b650fd54e7c1a12f
|
4
|
+
data.tar.gz: 68f5ec2badf1b0931f2ed0052f0e7e65bd583487
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92d705b3efbb8361748fe1efa389a222ab80aa2d86bb121b06a4a9490e6e4b6c75b189312e26db3f83cb59a5787d570fe3a8d6c84670a48e37eb8b6e30a7a8f4
|
7
|
+
data.tar.gz: 68f2709f54d95b0e146d5a4102cf0390fc022bc3ee9dcffdd3ac7c852d38b684a6cd28b6381a230a1c2ccc8307dc27aa682a6c13eccc8727a0d2e33901b6398a
|
@@ -0,0 +1,40 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'logstash-output-elasticsearch-test'
|
3
|
+
s.version = '11.16.1'
|
4
|
+
s.licenses = ['']
|
5
|
+
s.summary = "Stores logs in Elasticsearch"
|
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
|
+
s.authors = ["Elastic&Test"]
|
8
|
+
s.email = 'info@elastic.co'
|
9
|
+
s.homepage = "https://www.elastic.co/guide/en/logstash/current/index.html"
|
10
|
+
s.require_paths = ["lib"]
|
11
|
+
|
12
|
+
s.platform = RUBY_PLATFORM
|
13
|
+
|
14
|
+
# Files
|
15
|
+
s.files = Dir["lib/**/*","spec/**/*","*.gemspec","*.md","CONTRIBUTORS","Gemfile","LICENSE","NOTICE.TXT", "vendor/jar-dependencies/**/*.jar", "vendor/jar-dependencies/**/*.rb", "VERSION", "docs/**/*"]
|
16
|
+
|
17
|
+
# Tests
|
18
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
19
|
+
|
20
|
+
# Special flag to let us know this is actually a logstash plugin
|
21
|
+
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
|
22
|
+
|
23
|
+
s.add_runtime_dependency "manticore", '>= 0.8.0', '< 1.0.0'
|
24
|
+
s.add_runtime_dependency 'stud', ['>= 0.0.17', '~> 0.0']
|
25
|
+
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
|
26
|
+
s.add_runtime_dependency 'logstash-mixin-ecs_compatibility_support', '~>1.0'
|
27
|
+
s.add_runtime_dependency 'logstash-mixin-deprecation_logger_support', '~>1.0'
|
28
|
+
s.add_runtime_dependency 'logstash-mixin-ca_trusted_fingerprint_support', '~>1.0'
|
29
|
+
s.add_runtime_dependency 'logstash-mixin-normalize_config_support', '~>1.0'
|
30
|
+
|
31
|
+
s.add_development_dependency 'logstash-codec-plain'
|
32
|
+
s.add_development_dependency 'logstash-devutils'
|
33
|
+
s.add_development_dependency 'flores'
|
34
|
+
s.add_development_dependency 'cabin', ['~> 0.6']
|
35
|
+
s.add_development_dependency 'webrick'
|
36
|
+
s.add_development_dependency 'webmock'
|
37
|
+
s.add_development_dependency 'rspec-collection_matchers'
|
38
|
+
# Still used in some specs, we should remove this ASAP
|
39
|
+
s.add_development_dependency 'elasticsearch'
|
40
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-elasticsearch-test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 11.16.
|
4
|
+
version: 11.16.1
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- Elastic&Test
|
@@ -325,6 +325,7 @@ files:
|
|
325
325
|
- spec/support/elasticsearch/api/actions/delete_ilm_policy.rb
|
326
326
|
- spec/support/elasticsearch/api/actions/get_ilm_policy.rb
|
327
327
|
- logstash-output-elasticsearch.gemspec
|
328
|
+
- logstash-output-elasticsearch-test.gemspec
|
328
329
|
- CHANGELOG.md
|
329
330
|
- README.md
|
330
331
|
- CONTRIBUTORS
|
@@ -334,7 +335,7 @@ files:
|
|
334
335
|
- docs/index.asciidoc
|
335
336
|
homepage: https://www.elastic.co/guide/en/logstash/current/index.html
|
336
337
|
licenses:
|
337
|
-
-
|
338
|
+
- ''
|
338
339
|
metadata:
|
339
340
|
logstash_plugin: 'true'
|
340
341
|
logstash_group: output
|