We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ignored
1 parent a8b5483 commit 72eeb80Copy full SHA for 72eeb80
dart/lib/src/client_reports/discard_reason.dart
@@ -11,4 +11,5 @@ enum DiscardReason {
11
queueOverflow,
12
cacheOverflow,
13
rateLimitBackoff,
14
+ ignored,
15
}
dart/lib/src/client_reports/discarded_event.dart
@@ -37,6 +37,8 @@ extension _OutcomeExtension on DiscardReason {
37
return 'cache_overflow';
38
case DiscardReason.rateLimitBackoff:
39
return 'ratelimit_backoff';
40
+ case DiscardReason.ignored:
41
+ return 'ignored';
42
43
44
0 commit comments