diff --git a/docs/cannon.md b/docs/cannon.md index deec213b..fdd7bee3 100644 --- a/docs/cannon.md +++ b/docs/cannon.md @@ -114,6 +114,7 @@ Output configuration to send sentry events to a kafka server. | outputs[].config.topicPattern | string | | | Topic template with variables `${EVENT_NAME}` or `${event-name}`. Mutually exclusive with `topic`. | | outputs[].config.flushFrequency | string | `3s` | | The maximum time a single batch can wait before a flush. Producer flushes the batch when the limit is reached. | | outputs[].config.flushBytes | int | `1000000` | | The maximum size (in bytes) of a single batch before a flush. Producer flushes the batch when the limit is reached. | +| outputs[].config.maxMessageBytes | int | `1000000` | | The maximum permitted size (in bytes) of a single message. Messages exceeding this size are dropped. Must be set <= the broker's message.max.bytes. | | outputs[].config.maxRetries | int | `3` | | The maximum retries allowed for a single batch delivery. The batch would be dropped, if the producer fails to flush with-in this limit. | | outputs[].config.compression | string | `none` | `none` `gzip` `snappy` `lz4` `zstd` | Compression to use. | | outputs[].config.requiredAcks | string | `leader` | `none` `leader` `all` | Number of ack's required for a succesful batch delivery. | diff --git a/docs/mimicry.md b/docs/mimicry.md index edbd92f1..c1d5ff3c 100644 --- a/docs/mimicry.md +++ b/docs/mimicry.md @@ -117,6 +117,7 @@ Output configuration to send sentry events to a kafka server. | outputs[].config.topicPattern | string | | | Topic template with variables `${EVENT_NAME}` or `${event-name}`. Mutually exclusive with `topic`. | | outputs[].config.flushFrequency | string | `3s` | | The maximum time a single batch can wait before a flush. Producer flushes the batch when the limit is reached. | | outputs[].config.flushBytes | int | `1000000` | | The maximum size (in bytes) of a single batch before a flush. Producer flushes the batch when the limit is reached. | +| outputs[].config.maxMessageBytes | int | `1000000` | | The maximum permitted size (in bytes) of a single message. Messages exceeding this size are dropped. Must be set <= the broker's message.max.bytes. | | outputs[].config.maxRetries | int | `3` | | The maximum retries allowed for a single batch delivery. The batch would be dropped, if the producer fails to flush with-in this limit. | | outputs[].config.compression | string | `none` | `none` `gzip` `snappy` `lz4` `zstd` | Compression to use. | | outputs[].config.requiredAcks | string | `leader` | `none` `leader` `all` | Number of ack's required for a succesful batch delivery. | diff --git a/docs/sentry.md b/docs/sentry.md index c1f31edf..818716e5 100644 --- a/docs/sentry.md +++ b/docs/sentry.md @@ -92,6 +92,7 @@ Output configuration to send sentry events to a kafka server. | outputs[].config.topicPattern | string | | | Topic template with variables `${EVENT_NAME}` or `${event-name}`. Mutually exclusive with `topic`. | | outputs[].config.flushFrequency | string | `3s` | | The maximum time a single batch can wait before a flush. Producer flushes the batch when the limit is reached. | | outputs[].config.flushBytes | int | `1000000` | | The maximum size (in bytes) of a single batch before a flush. Producer flushes the batch when the limit is reached. | +| outputs[].config.maxMessageBytes | int | `1000000` | | The maximum permitted size (in bytes) of a single message. Messages exceeding this size are dropped. Must be set <= the broker's message.max.bytes. | | outputs[].config.maxRetries | int | `3` | | The maximum retries allowed for a single batch delivery. The batch would be dropped, if the producer fails to flush with-in this limit. | | outputs[].config.compression | string | `none` | `none` `gzip` `snappy` `lz4` `zstd` | Compression to use. | | outputs[].config.requiredAcks | string | `leader` | `none` `leader` `all` | Number of ack's required for a succesful batch delivery. |