[Statsig] Track posting, end reached (#3206)

* Track post create

* Track feed endReached
This commit is contained in:
dan 2024-03-14 00:21:42 +00:00 committed by GitHub
parent 7eaa573b57
commit 1c25c76645
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 38 additions and 1 deletions

View file

@ -2,6 +2,18 @@ export type LogEvents = {
init: {
initMs: number
}
'feed:endReached': {
feedType: string
itemCount: number
}
'post:create': {
imageCount: number
isReply: boolean
hasLink: boolean
hasQuote: boolean
langs: string
logContext: 'Composer'
}
'post:like': {
logContext: 'FeedItem' | 'PostThreadItem' | 'Post'
}