Is there a way to set the time of events manually sent in App Insights? I'm using the ApplicationInsights package from @microsoft/applicationinsights-web in a react app. As an example, I want to execute something like this at 6:00pm ETC Apr 26, 2022:
appInsights.trackEvent({
name: "my cool event",
properties: {
greeting: "hello world"
},
});
But have it logged in my azure portal as happening at 5:00pm ETC Apr 26, 2022. I figured there would be a time
property or something I could set on the parameter object, but that doesn't seem to be the case.