-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First heartbeat sent after 15 minutes instead of configured interval #1298
Comments
Its a bug/limitation as setting interval does not alter the current timer, which is triggered upon initialize. Use the following workaround: static void Main(string[] args)
(Modify example as per your requirement, but this should give you the idea) |
@cijothomas does the call to |
new TelemetryConfiguration("ikey") wont consider ai.config. |
It appears that the very first heartbeat is sent after
15 minutes
, which is the default built-in heartbeat interval, even when a different interval is configured. Every other subsequent heartbeat will respect the configured interval.SDK version used:
2.10.0
Attached some code that reproduces the issue.
Expected behavior: heartbeats start after the very first minute (as configured)
Actual behavior: heartbeats only start after 15 minutes (default interval)
ConsoleApp1.zip
The text was updated successfully, but these errors were encountered: