I am very new to piwik for a week now and from today on I no longer trust the bounce rate. Neither do I trust the time spent on the site, because the bounce got very high and the time spent on the site got very low. This is not possible - let me explain.
This is all about a simple WordPress blog about developing WordPress. See how Piwik is implemented here: http://wp-includes.com
Why the visit time should be 30-60 seconds
People are talking with me about the content. It is only about 16 people that read a specific page yesterday and I talked with half of them about the content. They need to read this for 30 to 60 seconds for really understanding the content. This is an average time I could understand.
But Piwik shows 3 seconds
Reading the stats for every single user I see that there are many of them with zero visit duration and one with 58 seconds. The average might be calculated correctly but it is impossible that 16 users looked for zero seconds at the page. So I ask myself:
What is going wrong here?
How can I get reliable data or sort out the one that is wrong?
It kinda depends on how you are implementing Piwik (The site you link to does not exist). Is it just via PHP? Or are you using the JS implementation? How are you sending data to Piwik? In my case I use the JS API as I have a single page application. I implement the async interface in the router.
So it looks like you have a JS heavy application. You will probably have to figure out where in the JS to track users as Piwik is obviously not figuring this out for you.
For example, I have a one page application. To track “pages” I need to use the Piwik API. This involves putting this code:
Where do I see heavy JS? I did a view source on the page.
The trackPageView command tells Piwik that something has happened and to log it. By separating users out by a specific user ID you can track users better. This way you know which users are using what pages rather than the Piwik code having to guess (Which, in your case, it appears to guess wrong).