You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TrakerrClient class also has a lot of exposed properties. The benefit to setting these immediately after after you create TrakerrClient is that AppEvent will default it's values against the TrakerClient that created it. This way if there is a value that all your AppEvents uses, and the constructor default value currently doesn't suit you; it may be easier to change it in TrakerrClient as it will become the default value for all AppEvents created after. A lot of these are populated by default value by the constructor, but you can populate them with whatever string data you want. The following table provides an in depth look at each of those.
196
197
198
+
If you're populating an app event directly, you'll want to take a look at the [AppEvent properties](generated/docs/AppEvent.md) as they contain properties unique to each AppEvent which do not have defaults you may set in the client.
**ContextURL** | **string** | (optional) The full URL when running in a browser when the event was generated. | [optional]
29
+
**ContextOperationTimeMillis** | **long?** | (optional) duration that this event took to occur in millis. Example - database call time in millis. | [optional]
30
+
**ContextCpuPercentage** | **int?** | (optional) CPU utilization as a percent when event occured | [optional]
31
+
**ContextMemoryPercentage** | **int?** | (optional) Memory utilization as a percent when event occured | [optional]
0 commit comments