Skip to content

Commit

Permalink
Add configurations for collector 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peel committed Dec 18, 2024
1 parent 8035f87 commit 9e1f9c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docs/api-reference/stream-collector/configure/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,12 @@ sqsBadBuffer = {bad-sqs-queue-url}

Since version 3.0.0 networking settings are configured in its own `collector.networking` section:

| parameter | description |
|------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
| parameter | description |
|--------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------|
| `collector.networking.maxConnections` (since *3.0.0*) | Optional. Default: `1024`. Maximum number of concurrent active connection. |
| `collector.networking.idleTimeout` (since *3.0.0*) | Optional. Default: `610 seconds`. Maximum inactivity time for a network connection. If no data is sent within that time, the connection is closed. |
| `collector.networking.responseHeaderTimeout` (since *3.2.0*) | Optional. Default: `30 seconds`. Time from when the request is made until a response line is generated before a 503 response is returned. |
| `collector.networking.maxRequestLineLength` (since *3.2.0*) | Optional. Default: `20480`. Maximum request line to parse. If exceeded returns a 400 Bad Request. |
| `collector.networking.maxHeadersLength` (since *3.2.0*) | Optional. Default: `40960`. Maximum data that composes the headers. If exceeded returns a 400 Bad Request. |
| `collector.networking.maxPayloadSize` (since *3.3.0*) | Optional. Default: `1048576` (1 MB). Maximum size of an event within payload allowed before emitting an Size Violation event. Returns 200 OK. |
| `collector.networking.dropPayloadSize` (since *3.3.0*) | Optional. Default: `2097152` (2 MB). Maximum body payload size allowed before rejecting the request. If exceeded returns a 413 Payload Too Large. |
2 changes: 1 addition & 1 deletion src/componentVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const versions = {
webViewTracker: '0.2.1',

// Core pipeline
collector: '3.2.1',
collector: '3.3.0',
enrich: '5.1.2',
sqs2kinesis: '1.0.4',
dataflowRunner: '0.7.5',
Expand Down

0 comments on commit 9e1f9c2

Please sign in to comment.