summaryrefslogtreecommitdiff
path: root/openbsd
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-01-29 19:15:55 +0000
committerPaul Buetow <paul@buetow.org>2022-01-29 19:15:55 +0000
commited64ce345cf57e6cd81c0880b37a15e1c7336db7 (patch)
tree7398288141541cc24df5f16715dd36795a1fd3fc /openbsd
parent4de32df94689f5eb0f9712ab29a7b9b50f15c62b (diff)
add comment
Diffstat (limited to 'openbsd')
-rwxr-xr-xopenbsd/frontends/scripts/sitestats.sh20
1 files changed, 8 insertions, 12 deletions
diff --git a/openbsd/frontends/scripts/sitestats.sh b/openbsd/frontends/scripts/sitestats.sh
index 16738fd..184f8f1 100755
--- a/openbsd/frontends/scripts/sitestats.sh
+++ b/openbsd/frontends/scripts/sitestats.sh
@@ -1,5 +1,9 @@
#!/bin/sh
+# This is a quick and dirty script to get some stats for my site.
+# Yes, this could be programmed cleaner, but I wanted to do something quick
+# and dirty and this also with only tools available on OpenBSD.
+
STATSFILE=/tmp/sitestats.csv
BOTSFILE=/tmp/sitebots.txt
TOP=20
@@ -8,24 +12,17 @@ header () {
echo "proto,host,ip,day,month,time,path"
}
-indent () {
- sed 's/^/ /'
-}
-
http_stats () {
zgrep -h . /var/www/logs/access.log* |
perl -l -n -e 's/\.html/.suffix/; @s=split / +/; next if @s!=11;
- $s[4]=~s|\[(\d\d)/(...)/\d{4}:(.*)|$1,$2,$3|;
- print "http,".join ",",@s[0,1,4,7];'
+ $s[4]=~s|\[(\d\d)/(...)/\d{4}:(.*)|$1,$2,$3|; print "http,".join ",",@s[0,1,4,7];'
}
gemini_stats () {
zgrep -h . /var/log/daemon* |
perl -l -n -e '@s=split / +/; @v=@s and next if $s[4] eq "vger:";
- next if !/relayd.*gemini/;
- ($path) = $v[-1] =~ m|gemini://.*?(/.*)|;
- next if $path eq "";
- $path =~ s/\.gmi/.suffix/;
+ next if !/relayd.*gemini/; ($path) = $v[-1] =~ m|gemini://.*?(/.*)|;
+ next if $path eq ""; $path =~ s/\.gmi/.suffix/;
print "gemini,".(split("/", $v[6]))[2].",$s[12],$s[1],$s[0],$s[2],$path"'
}
@@ -58,7 +55,7 @@ top_n () {
descr="$2"
echo "Top $TOP `head -n 1 $STATSFILE | cut -d, -f"$fields"`$descr:"
- cut -d, -f"$fields" | sort | uniq -c | sort -nr | head -n $TOP | indent
+ cut -d, -f"$fields" | sort | uniq -c | sort -nr | head -n $TOP | sed 's/^/ /'
echo
}
@@ -66,7 +63,6 @@ ip_stats () {
for proto in http gemini; do
echo -n "Unique $proto IPv4 IPs:\t"
stats | grep "^$proto," | cut -d, -f3 | grep -F -v : | sort -u | wc -l
-
echo -n "Unique $proto IPv6 IPs:\t"
stats | grep "^$proto," | cut -d, -f3 | grep -F : | sort -u | wc -l
done