Remove feed:seen from statsig (#9261)

(cherry picked from commit 78c8a6037f)
This commit is contained in:
Samuel Newman
2025-10-27 20:23:38 +02:00
committed by Eric Bailey
parent 74db306096
commit 2a7223822f
+8 -4
View File
@@ -341,10 +341,14 @@ function flushToStatsig(stats: AggregatedStats | null, feedDescriptor: string) {
}
if (stats.seenCount > 0) {
logger.metric('feed:seen', {
count: stats.seenCount,
feed: feedDescriptor,
})
logger.metric(
'feed:seen',
{
count: stats.seenCount,
feed: feedDescriptor,
},
{statsig: false},
)
stats.seenCount = 0
}
}