2012. 2. 28. 22:30
Non-Windows 계열에 대한 인벤토리 및 성능 수집 Etc.2012. 2. 28. 22:30
Non-Windows 계열에 대한 인벤토리 및 성능 수집
Hyper-V 가상화 Virtualization Collect Performance Metric Shell Script 쉘 스크립트
# File description
ddk_perf.sh : Collect operating system performance
ddk_inv.sh : Collect system & operating system information
# Make directory
umask 022
mkdir -p /usr/DDK/
# Check crond deamon
ps -ef | grep crond
# Start crond deamon
/etc/rc.d/cron start
# Collect performance every 5 min.
0,5,10,15,20,25,30,35,40,45,50,55 * * * * /usr/DDK/ddk_perf.sh >> /usr/DDK/perf_5min.csv
# Collect performance every 5 min.(AM 9 ~ PM 6)
0,5,10,15,20,25,30,35,40,45,50,55 9,10,11,12,13,14,15,16,17 * * * /usr/DDK/ddk_perf.sh >> /usr/DDK/perf_5min_workhour.csv