1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-02-04 19:20:27 +01:00
Files
dotfiles/bin/cron/serverstats
2014-07-13 14:11:05 +02:00

22 lines
424 B
Bash
Executable File

#!/bin/bash
DATESTAMP=`date +%Y\-%m\-%d\ %H\:%M`
echo "== Server stats ======"
echo "Stats for: $DATESTAMP"
echo "uptime:"
uptime
echo "======================"
echo "w:"
w
echo "======================"
echo "last -n 20:"
last -n 20
echo "======================"
echo "vnstat"
/usr/bin/vnstat
echo "======================"
echo "top"
top -bn 1
echo "======================"
echo "End of report"
echo "======================"