Skip to content

Commit 65f3eb8

Browse files
authored
BREAKING: Disable cookie processing by default (#34)
1 parent 70777a2 commit 65f3eb8

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
jruby-9.2.17.0
1+
jruby-9.3.10.0

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.6.0
2+
3+
- Disable cookie processing by default
4+
5+
## 0.5.1
6+
7+
- Split large batches into smaller requests in order to meet Dynatrace API payload size limitations
8+
9+
## 0.5.0
10+
11+
- Rewrite plugin using http client mixin
12+
113
## 0.4.0
214

315
- Add` OpenSSL::SSL::SSLError` to the list of retried exception

lib/logstash/outputs/dynatrace.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ class PluginInternalQueueLeftoverError < StandardError; end
7777
# Maximum size payload to send to the Dynatrace API in Bytes. Batches of events which would be larger than max_payload_size when serialized will be split into smaller batches of events.
7878
config :max_payload_size, validate: :number, default: 4_500_000
7979

80+
# Disable cookie support. Overridden default value from LogStash::PluginMixins::HttpClient
81+
config :cookies, :validate => :boolean, :default => false
82+
8083
def register
8184
# ssl_verification_mode config is from mixin but ssl_verify_none is our documented config
8285
@ssl_verification_mode = 'none' if @ssl_verify_none

version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
logstash-output-dynatrace: '0.5.1'
1+
logstash-output-dynatrace: '0.6.0'

0 commit comments

Comments
 (0)