Context: HockeyApp can track custom events which is a feature that is currently available via the Preseason program. There are limitations to custom events including
a limit of 300 unique event names per app per week.
An event can be tracked by calling a specific method such as
HockeyApp.Metrics.MetricsManager.TrackEvent("MyEventName");
Question: We've got the challenge that we need to log custom data per event such as time stamp information. How to achieve this?
Background: we use Application Insights currently and log performance information with events such as how long it took to execute a ask. We look for a solution (or workaround) using HockeyApp.