compass-core/monitor/run_sar.sh

10 lines
211 B
Bash
Executable File

#!/bin/bash
let loop=0
mkdir -p /var/log/statistic
chmod -R 644 /var/log/statistic
while true; do
echo "run sar in the ${loop} time"
sar -n DEV -u -r -b 10 1 > /var/log/statistic/sar${loop}.log
let loop+=1
done