script which take a snap shot of Topas


 
Thread Tools Search this Thread
Operating Systems AIX script which take a snap shot of Topas
# 1  
Old 07-24-2008
Question script which take a snap shot of Topas

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!!!!!!!!
# 2  
Old 07-25-2008
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.
# 3  
Old 07-25-2008
if u can give me a Idea of how to do it....then i'll proceed b'coz i dont find a way how to go thru...
# 4  
Old 07-25-2008
Why bother with any of this when NMON is a free tool and NMON Analyser is also free. Save your self the pain!
# 5  
Old 07-25-2008
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
# 6  
Old 08-06-2008
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
# 7  
Old 08-18-2008
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
This User Gave Thanks to pagink For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. AIX

How to get data from SNAP file?

Hi Everyone, Does anyone know if can access /etc/environment from SNAP file to check the time zone from the snap file Objective: The timezone on the server was changed by someone to another timezone, so I want to check what is the old timezone was ? I have an old SNAP file. Does... (4 Replies)
Discussion started by: filosophizer
4 Replies

2. Ubuntu

Ubuntu snap deduplication

Hi, I think the ubuntu snap is great idea. However the fact that it may contain duplications has two disadvantages. 1) eating more space in the storage. 2) eating more space in the internal memory (RAM), it will load the same library more than once to the memory. Now the solution for this is... (0 Replies)
Discussion started by: programAngel
0 Replies

3. AIX

Need to grep two lines from the topas command through a Korn Script

I need to grep two lines from topas command in one of my AIX server. Topas Monitor for host: semas001 EVENTS/QUEUES FILE/TTY Wed Jan 29 10:12:06 2014 Interval: 2 Cswitch 764 Readch 4473.1K Syscall 5166 ... (4 Replies)
Discussion started by: rpm120
4 Replies

4. AIX

Unable to execute snap command

Hi Friends, I am not able to execute snap -a command in AIX 6 system. Could you please let me know how to make work this command and Path to be set. Thanks in Advance Siva. (4 Replies)
Discussion started by: sivakumarl
4 Replies

5. Red Hat

SNAP EDR issue.

Hi, Does anybody use Enterprise Data Replicator for Network Attached Storage replication. If you do, Do you get the following message in replication logs. "Replication Source file agent No heart beats from the remote target agent on snap01 for 300 seconds: Assuming connection failure" ... (1 Reply)
Discussion started by: uxadmin007
1 Replies

6. UNIX for Dummies Questions & Answers

snap file for other system?

Hi all For AIX we can snap -gc gather the info how abt other systems is solaris and linux? thanks in advance jiajin (0 Replies)
Discussion started by: lijiajin
0 Replies

7. Shell Programming and Scripting

My first shot at variables

Okay, so im setting up a script to start my internet dependent scripts once I am connected to the net. It got complicated because of the different networks I frequent but it goes something like this: n=1 iwconfig wlan0 > wireless.txt m= grep -c MGHS /home/jake/Scripts/wireless.txt o= grep -c... (7 Replies)
Discussion started by: arcnsparc
7 Replies

8. UNIX for Dummies Questions & Answers

dump .snap question

When using dump, a .snap directory is created in the partition being dumped. I have searched for the reason this directory is created but haven't found any information on its purpose. I have monitored the .snap directory during a dump and I have never seen any files appear in during the dump so... (3 Replies)
Discussion started by: thumper
3 Replies
Login or Register to Ask a Question