Skip to main content
8-Gravel
April 24, 2026
Solved

When is a stream entry timestamp created?

  • April 24, 2026
  • 1 reply
  • 25 views

Does a stream entry timestamp represent the moment of AddStreamEntry service execution or the moment the stream entry is processed ?

Best answer by Sathishkumar_C

It’s based on stream entry is processed. Also, we can override also by passing the timestamp.

me.AddStreamEntry({
sourceType: undefined /* STRING */,
values: undefined /* INFOTABLE */,
location: undefined /* LOCATION */,
source: undefined /* STRING */,
tags: undefined /* TAGS */,
timestamp: new Date()/* DATETIME */
});

 

1 reply

17-Peridot
April 30, 2026

It’s based on stream entry is processed. Also, we can override also by passing the timestamp.

me.AddStreamEntry({
sourceType: undefined /* STRING */,
values: undefined /* INFOTABLE */,
location: undefined /* LOCATION */,
source: undefined /* STRING */,
tags: undefined /* TAGS */,
timestamp: new Date()/* DATETIME */
});