reporting on event hits in google analytics -


i have been tasked using google analytics report of use of desktop app can see parts of program being used , how heavily, , potentially see companies using parts of program (each company has unique companyid). ideally i'd able @ correlations (e.g., how many users use report use process b?)

i have program set fire off call analytics. i've set use event tracking, i'm open app/screen tracking or else if work better. i'm passing values like

v=1 &t=event                // event hit type &tid=ua-xxxxx-y         // our id; real code has valid value here &cid=12345              // customerid &ec=jobfinancialreport  // event category &ea=run                 // event action &el=manager             // event label &ev=7                   // event value 

what can't figure out how in google analytics set reports show me like:

customerid     category             label    total hits    unique users 12345          jobfinancialreport   manager     27              2 12345          marketingreport1     manager      6              4 

i'm totally new analytics pardon ignorance if have key misconception here. i've searched googles sites , other questions here, may wording question incorrectly i'm not finding that's there. 1 example; in cases might want see how broadly each customer using program; in other cases we'd want take customerid out , see how particular report being used overall. appreciate guidance. thanks.

the "cid" parameter client id, value used stitch single interactions sessions , users.

the first problem comes mind setup client id not exposed in user interface (with single exception of user explorer report) or api.

you need implement via custom dimension (probably user scope, since never change given user) pass in client id (you still need cid parameter).

then create custom report (or create report in google data studio) custom value primary dimension , selected metric.

if want report "unique users" need create cid per logged-in user (if users of app have same cid have single user reported). should create second custom dimension company id, can segment reports company.


Comments