You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have one plugin which wants to override the originalTimestamp
Suppose I will fire the three events:
// change timestamp = 100 in plugin
segment.track
// change timestamp = 101 in plugin
segment.group
// change timestamp = 102 in plugin
segment.screen
segment.flush
The final result would be all of events are using the latest timestamp = 102 after flush.
But the expect result from my requirement that I want to set each event has its timestamp which can be modified by plugin.