{{template "head.html"}}
{{template "menu.html"}}
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.
| Path |
Visitors |
{{range $data := .ActiveVisitorPages}}
|
{{$data.Path}}
|
{{$data.Visitors}} |
{{end}}
Pages
Here are the top 10 visited pages.
| Path |
Visitors |
{{range $data := .PageRank}}
|
{{$data.Path}}
|
{{$data.Visitors}} |
{{end}}
Languages
Here are the top 10 languages used by my visitors.
| Language |
Absolute |
Relative |
{{range $data := .Languages}}
| {{if $data.Language.String}}{{$data.Language.String}}{{else}}(not set){{end}} |
{{$data.Visitors}} |
{{round (multiply $data.RelativeVisitors 100)}} % |
{{end}}
Referrer
Here are the top 10 referrer.
| Referrer |
Visitors |
{{range $data := .Referrer}}
|
{{if $data.Referrer.String}}
{{$data.Referrer.String}}
{{else}}
(unknown)
{{end}}
|
{{$data.Visitors}} |
{{end}}
Browser
| Browser |
Absolute |
Relative |
{{range $data := .Browser}}
| {{if $data.Browser.String}}{{$data.Browser.String}}{{else}}(unknown){{end}} |
{{$data.Visitors}} |
{{round (multiply $data.RelativeVisitors 100)}} % |
{{end}}
Operating System
| OS |
Absolute |
Relative |
{{range $data := .OS}}
| {{if $data.OS.String}}{{$data.OS.String}}{{else}}(unknown){{end}} |
{{$data.Visitors}} |
{{round (multiply $data.RelativeVisitors 100)}} % |
{{end}}
Countries
| Country |
Absolute |
Relative |
{{range $data := .Countries}}
| {{if $data.CountryCode.String}}{{$data.CountryCode.String}}{{else}}(unknown){{end}} |
{{$data.Visitors}} |
{{round (multiply $data.RelativeVisitors 100)}} % |
{{end}}
| 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)}} % |
{{range $i, $data := .PageVisitors}}
{{end}}
{{template "end.html"}}