logstash-filter-opensearch 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/logstash/filters/opensearch/client.rb +1 -1
- data/logstash-filter-opensearch.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6c8e9d8e50cb93be272232bdb7c21f9191c843e61d2251e915385f6156d89ec
|
4
|
+
data.tar.gz: c11865d0f3e5909fc35b722acf305c9f5be477633df71fc8563491354c12dd67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85461081f828f8007022d945fc8d6e265dbce452c86336228d50ecc193f0d1ecc12d428173b51160118fb57cdc79873272a620f4576361b980395af0af73be37
|
7
|
+
data.tar.gz: aa72e31bdd56735be4b5960c59172e5f45146ac3ff5700e86e7e21d2874e4b77ee28d3c99567ba7283374ada373de58f671e7a9747421fae7a63cec6ec718216
|
@@ -18,7 +18,7 @@ module LogStash
|
|
18
18
|
transport_options[:headers].merge!(setup_basic_auth(user, password))
|
19
19
|
transport_options[:headers].merge!(setup_api_key(api_key))
|
20
20
|
|
21
|
-
hosts.map
|
21
|
+
hosts = hosts.map { |host| { host: host, scheme: 'https' } } if ssl
|
22
22
|
# set ca_file even if ssl isn't on, since the host can be an https url
|
23
23
|
ssl_options = { ssl: true, ca_file: options[:ca_file] } if options[:ca_file]
|
24
24
|
ssl_options ||= {}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-filter-opensearch'
|
4
|
-
s.version = '0.1.
|
4
|
+
s.version = '0.1.1'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Copies fields from previous log events in OpenSearch to current events "
|
7
7
|
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-filter-opensearch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|