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
It would be good to provide an API for tracking additional types. Specifically, GA supports timings & exceptions. It would be great if we could just call insight.trackError(error) or insight.startTimer("build");/insight.stopTimer("build");. To implement this, we would need to allow passing different sets of parameters to the providers.google method. Per #19 I'm also using t: "appview" to track commands rather than the default "pageview". This could help make that more configurable as well so that we can continue using insight without anyone else having to change their setup.
Thoughts on this?
The text was updated successfully, but these errors were encountered:
Hi @joefiorini, I believe you're looking for screenview, not appview, per docs.
The weird thing is that GA web tracking dashboards has a timing dashboard but not an exception dashboard. GA app tracking dashboards has exception but not timing. The only way to tell for sure is to send the raw data to GA anyways, then use Reporting API to pull the raw data, see if it's recorded. I plan to try this out at some point.
Scratch that, it's called "App Speed".
So appview is what we want to refactor to, which allows these 2 features plus it makes more sense semantically. I'm borrowing this issue to track it.
rayshan
changed the title
Allow tracking exceptions & timings
Refactor - use GA app tracking, allows tracking exceptions, timings, etc.
Aug 9, 2014
It would be good to provide an API for tracking additional types. Specifically, GA supports timings & exceptions. It would be great if we could just call
insight.trackError(error)
orinsight.startTimer("build");
/insight.stopTimer("build");
. To implement this, we would need to allow passing different sets of parameters to theproviders.google
method. Per #19 I'm also usingt: "appview"
to track commands rather than the default "pageview". This could help make that more configurable as well so that we can continue using insight without anyone else having to change their setup.Thoughts on this?
The text was updated successfully, but these errors were encountered: