Reputation: 207
how to get the UTC time stamp in ASA ? system.timestamp provides the UTC time stamp
Upvotes: 0
Views: 1022
Reputation: 24128
As @CSharpRocks said, it seems that you had known how to get the UTC timestamp in ASA. According to the offical reference Time Management (Azure Stream Analytics)
, here is just a proof for UTC timestamp in ASA, as below.
All time handling operations in Azure Stream Analytics are in UTC.
And from the reference System.Timestamp.
Every event at every stage of the query in Azure Stream Analytics has a timestamp associated with it. System.Timestamp is a system property that can be used to retrieve the event’s timestamp.
Upvotes: 0