logstash-output-datadog_logs 0.5.3 → 0.5.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35f5ce024bffbeaea8a434b00d7aa2e5c1bb2ce2a439bb69dd6f73dd7b92e269
4
- data.tar.gz: f5565d500266000af583f7b647e3d33255e64dc8260a7c3d11ce7cb7ed3c2a5d
3
+ metadata.gz: 0d59150ee3a3c332130fdf6db2b67171439b84c1f72e546cc67678a703c24239
4
+ data.tar.gz: '087934bb8816ac007805458f13ad78b1c1a0541f6af064a309b3ec6bfdcd90d9'
5
5
  SHA512:
6
- metadata.gz: 7e3503a6f977e30d581f964825f78348278533007084cbf584c05f8be6f8806c02dd43e5b32b8f7fc1cb9ba4ba47a66f884a95521e46d363e13495c4358e556f
7
- data.tar.gz: 27f9fb1522429578e3bcb05575feddb90cf21343de8329d5fe151e25311d0bd91f8a85cac1bae3e4a7cb23429a10dbf735dd3d15321d9ff04bc943311ae98fca
6
+ metadata.gz: bbccfc3aca78432ba83f7f730f26ffea6525f41ad8c2348dae61417044022e3110d8a65951385a91afb21affc830f0eaa8d15f37e5723dd1e90b68ae70b4d8b7
7
+ data.tar.gz: cb8d867ffcb650172e7f2e7e003cb6aed7b53349fb7f528699e100f87350e5304025c2abf66d80fd98ddd0c4d98b36f6049be7f816b49745e0db06f13c88bf14
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.5.3
2
+ - Fix issue where setting `no_ssl_validation` prevented the plugin from starting.
3
+
1
4
  ## 0.5.3
2
5
  - Now is threadsafe: supports shared concurrency.
3
6
  - Increase `DD_MAX_BATCH_LENGTH` to `1000`
data/README.md CHANGED
@@ -35,7 +35,7 @@ To enable TCP forwarding, configure your forwarder with:
35
35
  output {
36
36
  datadog_logs {
37
37
  api_key => "<DATADOG_API_KEY>"
38
- host => "intake.logs.datadoghq.com"
38
+ host => "http-intake.logs.datadoghq.com"
39
39
  port => 443
40
40
  use_http => false
41
41
  }
@@ -58,7 +58,7 @@ output {
58
58
  | Property | Description | Default value |
59
59
  |-------------|--------------------------------------------------------------------------|----------------|
60
60
  | **api_key** | The API key of your Datadog platform | nil |
61
- | **host** | Endpoint when logs are not directly forwarded to Datadog | intake.logs.datadoghq.com |
61
+ | **host** | Endpoint when logs are not directly forwarded to Datadog | http-intake.logs.datadoghq.com |
62
62
  | **port** | Port when logs are not directly forwarded to Datadog | 443 |
63
63
  | **use_ssl** | If true, the agent initializes a secure connection to Datadog. Ensure to update the port if you disable it. | true |
64
64
  | **max_retries** | The number of retries before the output plugin stops | 5 |
@@ -246,6 +246,7 @@ class LogStash::Outputs::DatadogLogs < LogStash::Outputs::Base
246
246
  logger.info("Starting HTTP connection to #{protocol}://#{host}:#{port.to_s} with compression " + (use_compression ? "enabled" : "disabled") + (force_v1_routes ? " using v1 routes" : " using v2 routes"))
247
247
 
248
248
  config = {}
249
+ config[:ssl] = {}
249
250
  config[:ssl][:verify] = :disable if no_ssl_validation
250
251
  if http_proxy != ""
251
252
  config[:proxy] = http_proxy
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DatadogLogStashPlugin
4
- VERSION = '0.5.3'
4
+ VERSION = '0.5.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-datadog_logs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Datadog
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-05-05 00:00:00.000000000 Z
12
+ date: 2025-05-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  requirement: !ruby/object:Gem::Requirement