![]() |
|
|
google unix.com
|
|||||||
| Forums | Casino | Register | Forum Rules | Links | Albums | FAQ | Members List | 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. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| using TOPAS | pasion | AIX | 2 | 12-24-2007 02:20 PM |
| dump .snap question | thumper | UNIX for Dummies Questions & Answers | 3 | 03-23-2007 10:12 AM |
| unix screen shot | royal | UNIX for Dummies Questions & Answers | 7 | 07-14-2004 04:36 PM |
| Topas | cgatrader | UNIX for Advanced & Expert Users | 1 | 04-15-2004 08:22 PM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Rate Thread | 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!!!!!!!!
|
| Sponsored Links |
|
|||
|
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 |
|
||||
|
hey brother you can use one of the following tricks1) you can use xwd command which takes the dump of the screen into some file.go through the man page2) simply u can use tee command which will display the o/p on screen at the same time copy it to the file
|
|
|||
|
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 The UNIX and Linux Forums |
![]() |
| Bookmarks |
| Tags |
| monitoring |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|