Performance data, *nix


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Performance data, *nix
# 1  
Old 04-16-2008
Error Performance data, *nix

Hello,

I want to write a tool which fetches performance data from remote machines. Sounds easy? well there are some requirements:
No extra "client" software should be needed on the hosts, remote shell access (e.g. SSH) should be enough. -> I'm limited to a small amount of tools.
I want CPU, disk, memory and network data.
Monitoring should work on: Linux, Solaris, AIX, HP-UX

So what I'm working on right now is to find out what tools can be used for that task, on which systems they are available, how does the man page and output look like .. since that differs on every platform. The result of this should be an "intersection" of tools and their measured values.

Here are tools I've found so far:

procps
vmstat
free
df (useful: -k -P -l, -P not available on solaris)
uptime

sysstat
sar
iostat (-c, -d, -x no on solaris, -t solaris only)
mpstat

net-tools
netstat (-i, -s not on solaris)

Now what do you think of the idea?
One of my big problems is that I don't have access to Solaris, AIX, HP-UX at the moment, so I could just look up man pages on google, maybe you can help me?

Thanks in advance,
regards
# 2  
Old 04-16-2008
My advice would be to login into each machine, check what's installed, and then start writing the script. Then, you can wrap around a "case" for the respective OS. We don't know the versions of your OSes too.
# 3  
Old 04-17-2008
I don't have access to machines running these systems (except linux). Right now I'm doing feasibility analysis so I need as much data as possible.
And I wouldnt wrap a case around each OS/version, I'd rather write a robust parser which can handle different output formats automatically as far as that's possible.
# 4  
Old 04-21-2008
So if someone has access to one of those systems the output / man-pages of these commands would be very helpful.
# 5  
Old 04-21-2008
You can easily gather such data by yourself, just have to spend 30 minutes. Use the following when googling : <man command os>, as in :
man df solaris - on this example the very first result is exactly what you need.
Also, some of the suggested commands may not be installed on the particular machine, so in any way to have to login and check, different versions of the installed software may also be significant.
# 6  
Old 04-23-2008
google searches result in so much garbage.. :P
in the meantime I got access to machines running some of the platforms mentioned in the first post... Smilie
# 7  
Old 04-24-2008
hmm, how can I get the total swap size in solaris?
and how can i get used, free and total swap in AIX?
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Data Visualization For DNS, RADIUS Performance Logs

Hi there, I have a script running on some DNS servers to calculate TPS, Success Rate and other Performance Counters. My challenge is to get a Linux Data Visualization Software to collect these performance logs and produce a visualization that will be appealing to Business peeps. A sample of... (2 Replies)
Discussion started by: infinitydon
2 Replies

2. Infrastructure Monitoring

Performance data via HPOV tool

Hi, We have HP OpenView tool to extract utilization report and extract them in csv. Every month I pull 30 days CPU and Memory utilization, every 5 minutes via GUI and export it in csv (excel) format. It is always a time consuming process to run it on a set of servers and then pick next set because... (0 Replies)
Discussion started by: solaris_1977
0 Replies

3. Red Hat

What is the best tools for performance data gathering and analysis?

Dear Guru, IHAC who complaint that his CentOS is getting performance issue. I have to help him out of there. Could you please tell me which tools is better to gathering the whole system performance data? -- CPU/Memory/IO(disk & Network)/swap I would like the tools could be... (6 Replies)
Discussion started by: devyfong
6 Replies

4. IP Networking

Convert txt performance data into OID

Hey everyone, I want to ask you some questions, I have some network performance data in txt formatted. I want to change it to OID format, so it could be collected with snmptrap. How this could be done?? Thank you so much (0 Replies)
Discussion started by: franzramadhan
0 Replies

5. Red Hat

What is Performance data nad Event data?

What is Performance data and Event data? I want to write own discription about a data flow diagram but I don't understand exact meaning of following words. 1.Performance data 2.Event data I googled it but still no luck. Please guide me. (0 Replies)
Discussion started by: manalisharmabe
0 Replies

6. Shell Programming and Scripting

Severe performance issue while 'grep'ing on large volume of data

Background ------------- The Unix flavor can be any amongst Solaris, AIX, HP-UX and Linux. I have below 2 flat files. File-1 ------ Contains 50,000 rows with 2 fields in each row, separated by pipe. Row structure is like Object_Id|Object_Name, as following: 111|XXX 222|YYY 333|ZZZ ... (6 Replies)
Discussion started by: Souvik
6 Replies

7. UNIX for Advanced & Expert Users

Which is the most secure *nix?

Which is the most secure *nix for home business/ office use? Would have to be fairly well up to date browser and drivers wise. Myself I seem to have settled on RedHat - I've trialled the Desktop, and am part-way through a server trial. I've essentially not managed to keep the browser as secure... (2 Replies)
Discussion started by: GSO
2 Replies

8. UNIX for Dummies Questions & Answers

Looking for something like Citrix for *nix

Hi, I don't mean the client.... I mean the server - I have the client to connect to a windows citrix server already. The next best thing I can use at present is VNC (I only want remote desktop, not application sharing specifically). The thing with VNC is that when you go on you are... (3 Replies)
Discussion started by: d11wtq
3 Replies
Login or Register to Ask a Question