This page shows tracking statistics for my website using Pirsch and Chart.Js. The data shows unique visitors. All times and dates are UTC.
Active visitors within the last five 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.
| Path | Visitors |
|---|---|
| {{$data.Path.String}} | {{$data.Visitors}} |
This is the cumulated visitor count per hour on each day of the selected time frame.
Here are the top 10 visited pages.
| Path | Visitors |
|---|---|
| {{$data.Path.String}} | {{$data.Visitors}} |
Here are the top 10 languages used by my visitors.
| Language | Absolute | Relative |
|---|---|---|
| {{if $data.Language.Valid}}{{$data.Language.String}}{{else}}(not set){{end}} | {{$data.Visitors}} | {{round (multiply $data.RelativeVisitors 100)}} % |
Here are the top 10 referrer.
| Referrer | Visitors |
|---|---|
| {{if $data.Referrer.Valid}} {{$data.Referrer.String}} {{else}} (unknown) {{end}} | {{$data.Visitors}} |
| Browser | Visitors |
|---|---|
| {{if $data.Browser.Valid}}{{$data.Browser.String}}{{else}}(unknown){{end}} | {{$data.Visitors}} |
| OS | Visitors |
|---|---|
| {{if $data.OS.Valid}}{{$data.OS.String}}{{else}}(unknown){{end}} | {{$data.Visitors}} |
| Platform | Absolute | Relative |
|---|---|---|
| Desktop | {{.Platform.PlatformDesktopVisitors}} | {{round (multiply .Platform.PlatformDesktopRelative 100)}} % |
| Mobile | {{.Platform.PlatformMobileVisitors}} | {{round (multiply .Platform.PlatformMobileRelative 100)}} % |
| (unknown) | {{.Platform.PlatformUnknownVisitors}} | {{round (multiply .Platform.PlatformUnknownRelative 100)}} % |