logstash-output-bcdb 0.1.0 → 0.2.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 +7 -4
- data/CONTRIBUTORS +10 -10
- data/Gemfile +11 -11
- data/LICENSE +202 -202
- data/NOTICE.TXT +4 -4
- data/README.md +109 -109
- data/docs/index.asciidoc +391 -391
- data/lib/logstash/outputs/bcdb.rb +520 -520
- data/logstash-output-bcdb.gemspec +43 -43
- data/spec/outputs/bcdb_spec.rb +364 -364
- data/spec/supports/compressed_requests.rb +38 -38
- metadata +4 -3
@@ -1,43 +1,43 @@
|
|
1
|
-
#
|
2
|
-
# Copyright ©2020. MODEX (Gibraltar) LIMITED
|
3
|
-
#
|
4
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
-
# you may not use this file except in compliance with the License.
|
6
|
-
# You may obtain a copy of the License at
|
7
|
-
#
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
#
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
# See the License for the specific language governing permissions and
|
14
|
-
# limitations under the License.
|
15
|
-
|
16
|
-
Gem::Specification.new do |s|
|
17
|
-
s.name = 'logstash-output-bcdb'
|
18
|
-
s.version = '0.
|
19
|
-
s.licenses = ['Apache License (2.0)']
|
20
|
-
s.summary = "Sends events to a BCDB Database endpoint"
|
21
|
-
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"
|
22
|
-
s.authors = ["Modex"]
|
23
|
-
s.email = 'support@modex.tech'
|
24
|
-
s.homepage = "https://github.com/modex-bcdb/logstash-output-bcdb"
|
25
|
-
s.require_paths = ["lib"]
|
26
|
-
|
27
|
-
# Files
|
28
|
-
s.files = Dir["lib/**/*","spec/**/*","*.gemspec","*.md","CONTRIBUTORS","Gemfile","LICENSE","NOTICE.TXT", "vendor/jar-dependencies/**/*.jar", "vendor/jar-dependencies/**/*.rb", "VERSION", "docs/**/*"]
|
29
|
-
|
30
|
-
# Tests
|
31
|
-
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
32
|
-
|
33
|
-
# Special flag to let us know this is actually a logstash plugin
|
34
|
-
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
|
35
|
-
|
36
|
-
# Gem dependencies
|
37
|
-
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
|
38
|
-
s.add_runtime_dependency "logstash-mixin-http_client", ">= 6.0.0", "< 8.0.0"
|
39
|
-
|
40
|
-
s.add_development_dependency 'logstash-devutils'
|
41
|
-
s.add_development_dependency 'sinatra'
|
42
|
-
s.add_development_dependency 'webrick'
|
43
|
-
end
|
1
|
+
#
|
2
|
+
# Copyright ©2020. MODEX (Gibraltar) LIMITED
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
Gem::Specification.new do |s|
|
17
|
+
s.name = 'logstash-output-bcdb'
|
18
|
+
s.version = '0.2.0'
|
19
|
+
s.licenses = ['Apache License (2.0)']
|
20
|
+
s.summary = "Sends events to a BCDB Database endpoint"
|
21
|
+
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"
|
22
|
+
s.authors = ["Modex"]
|
23
|
+
s.email = 'support@modex.tech'
|
24
|
+
s.homepage = "https://github.com/modex-bcdb/logstash-output-bcdb"
|
25
|
+
s.require_paths = ["lib"]
|
26
|
+
|
27
|
+
# Files
|
28
|
+
s.files = Dir["lib/**/*","spec/**/*","*.gemspec","*.md","CONTRIBUTORS","Gemfile","LICENSE","NOTICE.TXT", "vendor/jar-dependencies/**/*.jar", "vendor/jar-dependencies/**/*.rb", "VERSION", "docs/**/*"]
|
29
|
+
|
30
|
+
# Tests
|
31
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
32
|
+
|
33
|
+
# Special flag to let us know this is actually a logstash plugin
|
34
|
+
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
|
35
|
+
|
36
|
+
# Gem dependencies
|
37
|
+
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
|
38
|
+
s.add_runtime_dependency "logstash-mixin-http_client", ">= 6.0.0", "< 8.0.0"
|
39
|
+
|
40
|
+
s.add_development_dependency 'logstash-devutils'
|
41
|
+
s.add_development_dependency 'sinatra'
|
42
|
+
s.add_development_dependency 'webrick'
|
43
|
+
end
|