From 420ceb49b53a8fa9d8ba8443e42e50cd7bd7cea9 Mon Sep 17 00:00:00 2001 From: Philip Wittamore Date: Sun, 12 Jul 2026 11:08:50 +0200 Subject: update --- .../2025/Using-Goaccess-to-view-web-stats.html | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 articles/2025/Using-Goaccess-to-view-web-stats.html (limited to 'articles/2025/Using-Goaccess-to-view-web-stats.html') diff --git a/articles/2025/Using-Goaccess-to-view-web-stats.html b/articles/2025/Using-Goaccess-to-view-web-stats.html new file mode 100755 index 0000000..8312fa5 --- /dev/null +++ b/articles/2025/Using-Goaccess-to-view-web-stats.html @@ -0,0 +1,32 @@ + + + + + + + Using Goaccess to view web stats + + +
+

Bloggings

+ Back + +
+ +
+
+

Using Goaccess to view web stats

+

2025-04-03

+

Using Goaccess locally

+

I have goaccess installed on my laptop to view the web stats on a vps

+

First install Goaccess on Arch Linux

+sudo pacman -S goaccess +

View the remote stats (adjust the path for your actual log location)

+ssh USER@SERVER 'zcat -f /var/log/nginx/access.log*' | goaccess -a --log-format=COMBINED +

I've added an alias in my .bashrc :

+alias stats="ssh USER@SERVER 'zcat -f /var/log/nginx/access.log*' | goaccess -a --log-format=COMBINED" +
+
+ + -- cgit v1.3.1