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) {
|
if (stats.seenCount > 0) {
|
||||||
logger.metric('feed:seen', {
|
logger.metric(
|
||||||
count: stats.seenCount,
|
'feed:seen',
|
||||||
feed: feedDescriptor,
|
{
|
||||||
})
|
count: stats.seenCount,
|
||||||
|
feed: feedDescriptor,
|
||||||
|
},
|
||||||
|
{statsig: false},
|
||||||
|
)
|
||||||
stats.seenCount = 0
|
stats.seenCount = 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user