-
Notifications
You must be signed in to change notification settings - Fork 142
Tracks Issue: Invalid event property formatting #1284
Copy link
Copy link
Closed
Labels
category: tracksRelated to analytics, including Tracks Events.Related to analytics, including Tracks Events.
Milestone
Description
While testing completely unrelated code changes, I ran across these errors in logcat:
W/NosaraEvent: Properties should have lowercase name: hasJetpack
E/NosaraEvent: Cannot add the property: hasJetpack to the event. Property name must match: ^[a-z_][a-z0-9_]*$
W/NosaraEvent: Properties should have lowercase name: isJetpackConnected
E/NosaraEvent: Cannot add the property: isJetpackConnected to the event. Property name must match: ^[a-z_][a-z0-9_]*$
W/NosaraEvent: Properties should have lowercase name: urlAfterRedirects
E/NosaraEvent: Cannot add the property: urlAfterRedirects to the event. Property name must match: ^[a-z_][a-z0-9_]*$
W/NosaraEvent: Properties should have lowercase name: isJetpackActive
E/NosaraEvent: Cannot add the property: isJetpackActive to the event. Property name must match: ^[a-z_][a-z0-9_]*$
W/NosaraEvent: Properties should have lowercase name: isWPCom
E/NosaraEvent: Cannot add the property: isWPCom to the event. Property name must match: ^[a-z_][a-z0-9_]*$
W/NosaraEvent: Properties should have lowercase name: isWordPress
E/NosaraEvent: Cannot add the property: isWordPress to the event. Property name must match: ^[a-z_][a-z0-9_]*$
I checked Tracks Live View and verified the following event properties are not being recorded:
hasJetpackisJetpackConnectedurlAfterRedirectsisJetpackActiveisWPComisWordPress
These properties need to be renamed to follow the pattern ^[a-z_][a-z0-9_]*$:
has_jetpackis_jetpack_connectedurl_after_redirectsis_jetpack_activeis_wp_comis_wordpress
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
category: tracksRelated to analytics, including Tracks Events.Related to analytics, including Tracks Events.