![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| using TOPAS | pasion | AIX | 2 | 12-24-2007 11:20 AM |
| dump .snap question | thumper | UNIX for Dummies Questions & Answers | 3 | 03-23-2007 07:12 AM |
| unix screen shot | royal | UNIX for Dummies Questions & Answers | 7 | 07-14-2004 01:36 PM |
| Topas | cgatrader | UNIX for Advanced & Expert Users | 1 | 04-15-2004 05:22 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
can any one give me a script which take a snap shot of Topas at a fix interval of 15min and save it in a perticular file!!!!!!!!
|
| Forum Sponsor | ||
|
|
|
|||
|
What did you try on your own so far? Did you check the man page for topas if the output can be directed to a file?
As a starting point, read the man page for topas - if there is no such switch, maybe write a simple script using vmstat for example and put it into the crontab. Good luck. |
|
|||
|
True, nmon is the way to go: there is a switch which puts nmon in "daemon mode", where it writes its output to a logfile. The sampling interval is configurable. This output can be analysed with "nmon analyzer", another free tool downloadable on the IBM freeware webpage for AIX. Unfortunately (to me, at least) the analyzer part is basically an "Excel" application and "Excel" only runs on some outlandish OS which i have not installed on any of my machines.
Still, the point zaxxon raised holds: it is always a good idea to at least give the solution a try and invest at least some effort into solving the issue before coming here asking for advice. We have banned homework questions for a reason and similarly we are not all too fond of helping people unwilling to help themselves. I hope this helps. bakunin |
|
|||
|
cd /etc/perf/daily
ls -lrt topasout -a <<xmwlm>>.file sort -o <<file>>.csv <<file>>.csv ftp off and open in nmon shrug x='/etc/perf/daily' cd $x error=$? if [[ $error != '0' ]] then echo "There was an error running script: $0 $(date) please trouble shoot" echo "This script could not cd to $x to convert the files to the nmon format" exit fi #LIST=$(ls) LIST=$(ls | grep -v csv | grep xmwlm) #Do not grab any files that have been #coverted already for f in $LIST; do # make the file.csv files here "man topasout" for help topasout -a $f sleep 3 # sort the file and set back as the same file name # so the time stamps are right in nmon sort -o $f.csv $f.csv sleep 3 # encode so you can attach the file, and then send it to the exe person # checking the .forward file if it exists. uuencode $x/$f.csv $x/$f.csv | mail -s "Your-weekly-$f.csv-file" $USER error=$? sleep 3 if [[ $error == '0' ]] then rm $f.csv else echo "There were errors running script $0 at $(date) you will need to clean u p the CSV files" fi done |
|||
| Google UNIX.COM |