-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add DashEvent
for toggling telemetry collection + send event whenever toggled
#23
Add DashEvent
for toggling telemetry collection + send event whenever toggled
#23
Conversation
- Events can have a maximum of 25 user properties - User property names must be 24 characters or fewer - User property values must be 36 characters or fewer (only for `tool` name) - Event names must be 40 characters or fewer, may only contain alpha-numeric characters and underscores, and must start with an alphabetic character
Note: confirm that the events are being sent correctly with main GA instance |
|
||
// Extract the last log item to check for the keys | ||
lastLogItem = jsonDecode(logFile.readAsLinesSync().last); | ||
expect((lastLogItem['events'] as List).last['name'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider extracting (lastLogItem['events'] as List).last
as a helper or extension method, given that it occurs 4 times in this method alone.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll expand this out if an additional test needs this functionality
This PR includes a new event
DashEvent.analyticsCollectionEnabled
which will be sent whenever the developer has toggled their telemetry collection status. This will help us understand any users that have opted out and maybe even opted back in.Additionally, the
setTelemetry
method withinAnalytics
has also been modified so that an event is sent to GA every time this state is toggled. It avoids using thesendEvent
method because that method is blocked from sending anything if the user has opted out previously.