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 +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +2 -2
- data/lib/logstash/outputs/datadog_logs.rb +1 -0
- data/lib/logstash/outputs/version.rb +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: 0d59150ee3a3c332130fdf6db2b67171439b84c1f72e546cc67678a703c24239
|
4
|
+
data.tar.gz: '087934bb8816ac007805458f13ad78b1c1a0541f6af064a309b3ec6bfdcd90d9'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbccfc3aca78432ba83f7f730f26ffea6525f41ad8c2348dae61417044022e3110d8a65951385a91afb21affc830f0eaa8d15f37e5723dd1e90b68ae70b4d8b7
|
7
|
+
data.tar.gz: cb8d867ffcb650172e7f2e7e003cb6aed7b53349fb7f528699e100f87350e5304025c2abf66d80fd98ddd0c4d98b36f6049be7f816b49745e0db06f13c88bf14
|
data/CHANGELOG.md
CHANGED
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
|
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.
|
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-
|
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
|