Context : HockeyApp can track user events, which are a feature currently available through Preseason. There are restrictions for custom events, including
limit of 300 unique event names for each application per week.
An event can be monitored by calling a specific method, for example
HockeyApp.Metrics.MetricsManager.TrackEvent("MyEventName");
Question We have a problem with writing user data to an event, for example, time information. How to achieve this?
Background : We are using current application information and log performance information with events such as query execution time. We are looking for a solution (or workaround) using HockeyApp.
source share