Remove feed:seen from statsig (#9261)
(cherry picked from commit 78c8a6037f)
This commit is contained in:
committed by
Eric Bailey
parent
74db306096
commit
2a7223822f
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user