From 5c3965e4c27002e7390b27d8eb784536bc7cac52 Mon Sep 17 00:00:00 2001 From: Simon C Date: Tue, 17 Mar 2020 11:15:09 +0100 Subject: [PATCH] Add stats script --- scripts/stats.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 scripts/stats.sh diff --git a/scripts/stats.sh b/scripts/stats.sh new file mode 100755 index 0000000..3bca932 --- /dev/null +++ b/scripts/stats.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# -e Exit immediately if a command exits with a non-zero status. +# -u Treat unset variables as an error when substituting. +set -eu + +START=`date +%s` + +echo "😎 Generate stats" + +docker cp histoiredunpied:/var/log/nginx/access.log access.log +goaccess access.log \ + -o public/stats.html \ + --real-os --ignore-crawlers --agent-list --hour-spec=min \ + --log-format=COMBINED \ + --anonymize-ip \ + --exclude-ip=192.168.1.254 --ignore-referer=176.174.163.152:443 \ + --html-prefs='{"theme":"brillant","perPage":20,"layout":"vertical","showTables":false,"visitors":{"plot":{"chartType":"bar"}}}' \ + --enable-panel=VISITORS --enable-panel=OS --enable-panel=BROWSERS --enable-panel=VISIT_TIMES --enable-panel=REFERRING_SITES \ + --ignore-panel=REQUESTS --ignore-panel=REQUESTS_STATIC --ignore-panel=NOT_FOUND --ignore-panel=HOSTS --ignore-panel=VIRTUAL_HOSTS --ignore-panel=REFERRERS --ignore-panel=KEYPHRASES --ignore-panel=STATUS_CODES --ignore-panel=REMOTE_USER --ignore-panel=GEO_LOCATION + +END=`date +%s` +echo "✨ Done in $((END-START))s"