User data for custom events in HockeyApp

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.

+5
source share
1 answer

The github API documentation shows that it has the ability to add properties and dimensions to the event:

 HockeyApp.MetricsManager.TrackEvent("Custom Event", new Dictionary<string, string> { { "property", "value" } }, new Dictionary<string, double> { { "time", 1.0 } }) 

Names are limited, but the number of times an event can fire is not .

+5
source

All Articles