1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 00:05:10 +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 "======================"