Skip to content

Commit 2897c68

Browse files
authored
feat(size): Bump max size limits 100MiB -> 200MiB (#5310)
1 parent ed27584 commit 2897c68

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
- Only apply non-destructive PII rules to log bodies by default. ([#5272](https://github.com/getsentry/relay/pull/5272))
88
- Infer the client ip when set to `{{auto}}` for EAP items. ([#5304](https://github.com/getsentry/relay/pull/5304))
9+
- Increase the default size limit for attachments to 200MiB. ([#5310](https://github.com/getsentry/relay/pull/5310))
910
- Add `sentry.origin` attribute to OTLP spans. ([#5294](https://github.com/getsentry/relay/pull/5294))
1011

1112
**Breaking Changes**:

relay-config/src/config.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -685,11 +685,11 @@ impl Default for Limits {
685685
max_concurrent_requests: 100,
686686
max_concurrent_queries: 5,
687687
max_event_size: ByteSize::mebibytes(1),
688-
max_attachment_size: ByteSize::mebibytes(100),
689-
max_attachments_size: ByteSize::mebibytes(100),
688+
max_attachment_size: ByteSize::mebibytes(200),
689+
max_attachments_size: ByteSize::mebibytes(200),
690690
max_client_reports_size: ByteSize::kibibytes(4),
691691
max_check_in_size: ByteSize::kibibytes(100),
692-
max_envelope_size: ByteSize::mebibytes(100),
692+
max_envelope_size: ByteSize::mebibytes(200),
693693
max_session_count: 100,
694694
max_span_count: 1000,
695695
max_log_count: 1000,

0 commit comments

Comments
 (0)