mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 03:20:27 +00:00
17 lines
395 B
Go
17 lines
395 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type PageStats struct {
|
|
Hostname string `db:"hostname"`
|
|
Pathname string `db:"pathname"`
|
|
Pageviews int64 `db:"pageviews"`
|
|
Visitors int64 `db:"visitors"`
|
|
Entries int64 `db:"entries"`
|
|
BounceRate float64 `db:"bounce_rate"`
|
|
AvgDuration float64 `db:"avg_duration"`
|
|
Date time.Time `db:"date" json:",omitempty"`
|
|
}
|