Open
Description
Yandex.Metrica supports urls with arbitrary params, and allows filtering by them. I think GA should also support this.
We could add support of sending such params to the tracking service.
Example:
var insight = Insight( ... );
insight.track('path', 'to', 'page', {
param1: 'value',
param2: 'value'
});
This should transform to the following path:
/path/to/page?param1=value¶m2=value
What do you think of it?
Activity