{{template "head.html"}} {{template "menu.html"}}

Tracking

This page shows tracking statistics for my website using Pirsch and Chart.Js. The data shows unique visitors. All times and dates are UTC.

Week Month Quarter Half Year Year

Active Visitors

Active visitors within the last ten minutes: {{.ActiveVisitors}}

The next diagram shows active visitors for each hour of today.

The next table shows where the active visitors are for the past 30 seconds. Visitors switching between pages fast do create duplicate entries in the table.

{{range $data := .ActiveVisitorPages}} {{end}}
Path Visitors
{{$data.Path}} {{$data.Visitors}}

Total Visitors

Pages

Here are the top 10 visited pages.

{{range $data := .PageRank}} {{end}}
Path Visitors
{{$data.Path}} {{$data.Visitors}}

Languages

Here are the top 10 languages used by my visitors.

{{range $data := .Languages}} {{end}}
Language Absolute Relative
{{if $data.Language.String}}{{$data.Language.String}}{{else}}(not set){{end}} {{$data.Visitors}} {{round (multiply $data.RelativeVisitors 100)}} %

Referrer

Here are the top 10 referrer.

{{range $data := .Referrer}} {{end}}
Referrer Visitors
{{if $data.Referrer.String}} {{$data.Referrer.String}} {{else}} (unknown) {{end}} {{$data.Visitors}}

Browser

{{range $data := .Browser}} {{end}}
Browser Absolute Relative
{{if $data.Browser.String}}{{$data.Browser.String}}{{else}}(unknown){{end}} {{$data.Visitors}} {{round (multiply $data.RelativeVisitors 100)}} %

Operating System

{{range $data := .OS}} {{end}}
OS Absolute Relative
{{if $data.OS.String}}{{$data.OS.String}}{{else}}(unknown){{end}} {{$data.Visitors}} {{round (multiply $data.RelativeVisitors 100)}} %

Platform

Platform Absolute Relative
Desktop {{.Platform.PlatformDesktop}} {{round (multiply .Platform.RelativePlatformDesktop 100)}} %
Mobile {{.Platform.PlatformMobile}} {{round (multiply .Platform.RelativePlatformMobile 100)}} %
(unknown) {{.Platform.PlatformUnknown}} {{round (multiply .Platform.RelativePlatformUnknown 100)}} %

Page Visits

{{range $i, $data := .PageVisitors}}

{{$data.Path}}

{{end}} {{template "end.html"}}