Open TomTheRock opened 7 years ago
Hi @TomTheRock Can you please explain, what you get VS what you expected to get instead? It's not clear to me what is the problem
Simplyfied: When you use 3 parameters to track the action content it do not work: &c_i=Click&c_n=Show-Merchant-details&c_p=Merchant-888 without "c_i" it work &c_n=Show-Merchant-details&c_p=Merchant-888
Hi, we see the same problem: content tracking is working (we can see the incoming data in the visitor log), but there is no content data shown in the dashboard.
Thanks to the analysis of TomTheRock I could reproduce the behavoir: With URL parameter "c_i" no data is shown in widget Without URL parameter "c_i" data is shown in widget as expected
As content tracking is managed by piwik.js which appends the c_i-Parameter we currently can not show tracked content data to our customers.
Unfortunately we are not able to patch the piwik.js as it is a managed PIWIK instance by a service provider.
Best Regards Ingo
c_i
means an interaction happened. But the interaction will be counted only if you first track an impression. This means you first need to track the same request without c_i
so it will be counted as an impression. As soon as someone interacts with it, track the request with c_i
. Then it should appear. Hope it helps.
Thanks for the hint.
After adjusting the tracking calls of _paq.push accordingly (first trackPageView, than trackAllContentImpressions) we now see impressions and actions, too, in the reports.
I think the documentation for content tracking should be extended to help avoiding this pitfall.
Best regards Ingo
Hi There,
we use the current v. 3.2.0.
When we send a content event over the HTTP Tracking-api it seems that this do not work correct as described in the documentation:
We try to use the "Optional Content Tracking info" as in docu described you can use c_i with c_n & optional c_p:
Data_Stastics in Dashboard used: Actions => "Actions: Content Name"
1. Case - Do not shown in Dashboard ("Actions: Content Name"), but i seems to written in the statistics but stay hidden /piwik.php?c_i=Click&c_n=Show-Merchant-details&c_p=Merchant-888&token_auth=xxx&idsite=2&rec=1&url=xxx&_id=lp9vquilmubfofa5&rand=714&apiv=1&h=15&m=xxxx&cip=xxxxxx&action_name=Local%2FClick&debug=1
Debug:
2. Case after the first we trigger the same api call without c_i=Click (interaction), then in the dasboard it shows the data in the stastics with 1 impression and 2 interactions /piwik.php?c_n=Show-Merchant-details&c_p=Merchant-888&token_auth=xxx&idsite=2&rec=1&url=xxx&_id=lp9vquilmubfofa5&rand=714&apiv=1&h=15&m=xxxx&cip=xxxxxx&action_name=Local%2FClick&debug=1
Debug:
So maybe it did not described correct in the docu or the api/stastics is bugged from the Dashboard.
Best Regards Tom