Where in Application Insights does the following code send data to?
telemetry.TrackEvent("WinGame");
Custom Events
Custom Metrics
Dependency Tracking
Page Views
The TrackEvent method is used to log custom events, which can be used to track user interactions or other significant occurrences within the application.
TrackEvent