Track a website usage with hotjar

A web tracking tool I often use is hotjar. Below is a heatmap showing all the users click in the past week in my personal website. I am keen on this kind of feedback since it summarizes everything at a glance. The screenshot you can see only takes into account click events. However, you can also see users moves or how they scroll on your website.

blank

The table below shows where your visitors are from, how much time they spend on a given page, with which web browser and when.

blank

Moreover, you can go further and investigate what they specifically did during their session. Indeed, each user session is recorded so that you see exactly where they spent a lot of time, you can even detect hesitations and at what moment they exited your website.

blank

If you are interested in the features described above, I highly recommend you trying hotjar and create a free account (perfect for small impact websites). Furthermore, if you expect your personal website to have a lot of trafic, you might consider upgrading your account. To configure hotjar, everything is really well described in their help section here.

Basically, hotjar only needs a tracking code to work properly. Be sure to provide the good url and simply check your installation with their tool.

<!-- Hotjar Tracking Code for https://divadnojnarg.github.io -->
        <script>
            (function(h,o,t,j,a,r){
                h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
                h._hjSettings={hjid:827666,hjsv:6};
                a=o.getElementsByTagName('head')[0];
                r=o.createElement('script');r.async=1;
                r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
                a.appendChild(r);
            })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
        </script>

blank

You can easily understand that hotjar can be used for tracking a shiny app usage. To include it in your app, you have 6 steps to follow:

javascript
(function(h,o,t,j,a,r){
                h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
                h._hjSettings={hjid:827666,hjsv:6};
                a=o.getElementsByTagName('head')[0];
                r=o.createElement('script');r.async=1;
                r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
                a.appendChild(r);
            })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
tags$head(includeScript(paste0(getwd(), "/www/hotjar.js")))

Finally, I give you an overview of what you could obtain with a shiny app. I noticed however that I was not able to see any input object in the hotjar recorded movie. I have no idea of what is missing to make it perfect. Consequently, any feedback is welcome!

Here is the Hotjar feedback regarding this issue:

Hi David,

Thanks for reaching out and I’m so sorry about this trouble!

I had a look at your heatmap and I believe the reason this may be happening is due to the fact that these elements are tied to canvas objects. Currently, Hotjar doesn’t support interactions with SVG or Canvas objects, so they would appear in your heatmap and thus your knobInput examples return a void result.

That said, we already have this in our development pipeline. The more times an item is mentioned by our users the higher we prioritize it and the faster we will get it done - so this just got upvoted. 😃

I have taken a note to inform you as soon as this becomes available.

In the meantime, you can see what we’re currently working on in our Product Roadmap.

Hope that cleared things up and please let me know if you need any extra help!

blank