feat: log feed swipe timestamp

This commit is contained in:
lilong.129
2023-08-13 13:33:11 +08:00
parent 4fdc04368a
commit 9520ad1278
2 changed files with 26 additions and 15 deletions
+4
View File
@@ -56,6 +56,10 @@ type ScreenResult struct {
VideoType string `json:"video_type,omitempty"` // video type: feed, live-preview or live
Feed *FeedVideo `json:"feed,omitempty"`
Live *LiveRoom `json:"live,omitempty"`
SwipeStartTime int64 `json:"swipe_start_time"` // 滑动开始时间戳
SwipeFinishTime int64 `json:"swipe_finish_time"` // 滑动结束时间戳
Elapsed int64 `json:"elapsed"` // current_swipe_finish -> next_swipe_start 整体耗时(ms)
}
type cacheStepData struct {