TalkAboutLocal / local-news-engine

GNU Affero General Public License v3.0
14 stars 2 forks source link

Analytics #78

Closed robredpath closed 7 years ago

robredpath commented 7 years ago
Bjwebb commented 7 years ago

Piwik can log how long the search actually takes, but it we only display a mean, min, and max. If we want more though, we can pull the data out with our own database query: select server_time, custom_float, custom_dimension_4 from piwik_log_link_visit_action WHERE idsite=10 ORDER BY server_time DESC LIMIT 10;

Bjwebb commented 7 years ago

I'm also tracking the initial page load time, because I think even if we don't want this as a metric it may help with our debugging.

Bjwebb commented 7 years ago

The tasks in this issue are done now, but I think there's an outstanding analytics related task of making user all this tracking is applied correctly to wards.html also.

robredpath commented 7 years ago

Thanks @Bjwebb , added #87 to carry that on