Remove feed:seen from statsig (#9261)

This commit is contained in:
Samuel Newman
2025-10-27 20:23:38 +02:00
committed by GitHub
parent 28e132ae03
commit 78c8a6037f
+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
}
}