summaryrefslogtreecommitdiff
path: root/wiki/webstats.md
blob: 89cc390639fa5c3877cc1bdbe09bdaa6f3da6d4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
With access logs from listen.so.

```
sudo apt install goaccess
mkdir db
gzip -cdf access.log* | goaccess --log-format VCOMMON --persist --db-path db -o report.html -
```

To add more data to an existing db:

```
cat new-accesslog | goaccess --log-format VCOMMON --restore --persist --db-path db -o report.html -
```