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
We recently moved from GA to Piwik. Our existing application & entire model is based upon the same phenomenon and principles that works over Google Analytics.
We have a call in Google Analytics to grab information about sessions based upon dimensions. It looks likes this:
which returns arrays of row which includes date, device, social network, country & views. However, when it comes to Piwik, we need to deal with APIs as follow:
UserSettings.getBrowser
UserCountry.getCountry
VisitsSummary.getVisits
DevicesDetection.getType
Even more, it doesn't make date as a base column of the data set. The sample data returned by Google Analytics looks like this:
Hi @ArkeologeN this is a good question. Unfortunately Piwik is still lacking a proper Custom Reports feature that would let you generate reports with any number of custom dimensions. we recently added Pivot table see in the API ref doc the parameters pivotBy and pivotByColumn but they're pretty slow. see also #6227 and #4776
Please feel free to create another issue to request this particular feature of getting a grouping over a custom set of columns.
We recently moved from GA to Piwik. Our existing application & entire model is based upon the same phenomenon and principles that works over Google Analytics.
We have a call in
Google Analytics
to grab information about sessions based upon dimensions. It looks likes this:which returns
arrays of row
which includesdate, device, social network, country & views
. However, when it comes toPiwik
, we need to deal with APIs as follow:Even more, it doesn't make
date
as a base column of the data set. The sample data returned byGoogle Analytics
looks like this:How can we achieve the same output in
Piwik
using a single call or atleastachieve
it?The text was updated successfully, but these errors were encountered: