fix(core): revert addition of private_ip_skipped telemetry reason

This commit is contained in:
Aishanee Shah
2026-03-09 20:18:04 +00:00
parent d783ccc43b
commit f5d1de1986

View File

@@ -2087,9 +2087,9 @@ export const EVENT_WEB_FETCH_FALLBACK_ATTEMPT =
export class WebFetchFallbackAttemptEvent implements BaseTelemetryEvent {
'event.name': 'web_fetch_fallback_attempt';
'event.timestamp': string;
reason: 'private_ip' | 'primary_failed' | 'private_ip_skipped';
reason: 'private_ip' | 'primary_failed';
constructor(reason: 'private_ip' | 'primary_failed' | 'private_ip_skipped') {
constructor(reason: 'private_ip' | 'primary_failed') {
this['event.name'] = 'web_fetch_fallback_attempt';
this['event.timestamp'] = new Date().toISOString();
this.reason = reason;