Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Unix performance monitoring via Windows/NT Post 7446 by btrout on Wednesday 26th of September 2001 12:19:39 PM
Old 09-26-2001
Unix performance monitoring via Windows/NT

We are trying to Monitor Unix via Window95/98 on an NT network. Is there anyone that could point us in the direction on software that runs in Windows on a Telnet connection that we could use to accomplish this? We have tried a program called Unix Watcher by Etasoft and can' get it to connect.

Any help would be greatly appreciated.:confused
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

performance monitoring

hi, can any one tell me, is there is any way i can check the performance of my solaris 8 os on an Ent 3500. Other than top to check for the top most processes, how to make the calculations with vmstat, iostat, mpstat and nfsstat. Or is there any other tools that i can use? cheers. (3 Replies)
Discussion started by: i2admin
3 Replies

2. AIX

Performance monitoring

Hi All I am looking for a script that would collect statistics in a summarised format. CPU, Memory,Swap, Wait queue, Run queue and disk activity. Something that would allow me to profile the environment based on a 1 line output that I could run every 15 min. Thx Junaid (1 Reply)
Discussion started by: jhansrod
1 Replies

3. UNIX for Dummies Questions & Answers

File Upload Performance using IE from Windows to Unix via HTTPS

Hi, Is there any performance issue uploading a file using IE from Windows client to UNIX server via HTTPS? Before that, we were using HTTP protocol and everything run smooth Once we change to HTTPS, we might hit the "HTTP 500 Internal server error" Even though this does not happen all the... (1 Reply)
Discussion started by: darontan
1 Replies

4. UNIX for Dummies Questions & Answers

Performance monitoring

Hello, I am trying to find a way to view current CPU and disk usage. I used to use nmon which worked fine but since an upgrade to our servers this is no longer available. I have tried to get it reinstalled to no avail! Are there any other commands you can use within unix which will allow me... (4 Replies)
Discussion started by: johnwilliams
4 Replies

5. UNIX for Dummies Questions & Answers

Unix performance monitoring counters

Which performance counters you might to define as "The most important counters in checking unix performance" (3 Replies)
Discussion started by: gen4ik
3 Replies

6. UNIX for Dummies Questions & Answers

Unix Performance Monitoring

In the vmstat , there are many columns you can see. Can someone tell me what is the most important column that i need to be watched on, and what value or average value should i watch inorder to determine that im experiencing a cpu bottle neck. What should be my basis. or if you use glance ... (2 Replies)
Discussion started by: kaibiganmi
2 Replies

7. Linux

Linux/Unix performance monitoring

This is my first post (yes I'm a newbie).... :D I'm looking for a list of Linux and Unix commands for performance monitoring and a good sight or area on this site that would have man pages and or information on those commands..... Thanks if anyone can take the time to post..... :cool: (14 Replies)
Discussion started by: harrisjl
14 Replies

8. Solaris

Performance Monitoring

Hi all, I am planning to give a presentation on performance measure. I have decided to focus on the commands which are used to know the performance of the server. I have a idea of prstat,vmstat,netstat, and iostat. Could anybody suggest me any other commands which are used for perforamance... (7 Replies)
Discussion started by: priky
7 Replies

9. Shell Programming and Scripting

Performance Monitoring script for UNIX servers

Hi, I have been working on writing an automated script that will run 24x7 to monitor the performance parameters like CPU,Memory,Disk I/O,Network,SWAP Space etc for all types of Unix servers ( HP-UX,AIX,SOLARIS,LINUX). Problem is I am confused with the commands top,prstat,vmstat,free,sar etc.... (4 Replies)
Discussion started by: ssk250
4 Replies
Net::CLI::Interact::Transport(3pm)			User Contributed Perl Documentation			Net::CLI::Interact::Transport(3pm)

NAME
Net::CLI::Interact::Transport - Spawns an Interactive CLI Session VERSION
version 1.121640 DESCRIPTION
This module provides a generic cross-platform interface with the purpose of interacting with a command line interface. On Windows the IPC::Run module is used and on Unix, Net::Telnet. In both cases, a program such as openssh is started and methods provided to send and receive data from the interactive session. You should not use this class directly, but instead inherit from it in specific Transport that will set the application command line name, and marshall any runtime options. The OS platform is detected automatically. INTERFACE
init This method must be called before any other, to bootstrap the application wrapper module (IPC::Run or Net::Telnet). However, via Net::CLI::Interact's "cmd", "match" or "find_prompt" it will be called for you automatically. Two attributes of the specific loaded Transport are used. First the Application set in "app" is of course required, plus the options in the Transport's "runtime_options" are retrieved, if set, and passed as command line arguments to the Application. connect_ready Returns True if "connect" has been called successfully, otherwise returns False. disconnect Undefines the application wrapper flushes any output data buffer such that the next call to "cmd" or "macro" will cause a new connection to be made. Useful if you intentionally timeout a command and end up with junk in the output buffer. do_action When passed a Net::CLI::Interact::Action instance, will execute the contained instruction on the connected CLI. This might be a command to "send", or a regular expression to "match" in the output. Features of the commands and prompts are supported, such as Continuation matching (and slurping), and sending without an output record separator. On failing to succeed with a Match, the module will time-out (see "timeout", below) and raise an exception. Output returned after issuing a command is stored within the Match Action's "response" and "response_stash" slots by this method, with the latter then marshalled into the correct "send" Action by the ActionSet. put( @data ) Items in @data are joined together by an empty string and sent as input to the connected program's interactive session. pump Attempts to retrieve pending output from the connected program's interactive session. Returns true if there is new data available in the buffer, else will time-out and raise a Perl exception. See "buffer" and "timeout". flush Empties the buffer used for response data returned from the connected CLI, and returns that data as a single text string (possibly with embedded newlines). timeout( $seconds? ) When "do_action" is polling for response data matching a regular expression Action, it will eventually time-out and throw an exception if nothing matches and no more data arrives. The number of seconds to wait is set via this method, which will also return the current value of "timeout". The default value is 10 seconds. irs_re Returns the Regular Expression reference used to split lines of reponse from the connected device. In the end, you will only receive data from this module separated by the "ors" value (by default a newline character). The "irs_re" is used internally by the module and is: qr/(?:1512|15|12)/ # i.e. CRLF or CR or LF ors Line separator character(s) appended to a command sent to the connected CLI. This defaults to a newline on the application's platform. logger Slot for storing a reference to the application's Logger object. is_win32 Returns true if the current platform is Windows. Can be called as either a class or instance method. app Location and name of the program used to establish an interactive CLI session. On Unix platforms this will be "ssh" (openssh), "telnet", or "cu" (serial line). On Windows this must be the "plink.exe" program. connect_options Slot for storing a set of options for the specific loaded Transport, passed by the user of Net::CLI::Interact as a hash ref. Do not access this directly, but instead use "runtime_options" from the specific Transport class. wrapper Slot for storing the application wrapper instance (IPC::Run or Net::Telnet). Do not mess with this unless you know what you are doing. buffer After "pump" returns successfully, the output most recently received is stored in this slot. Do not access this directly, but instead use the "flush" method. stash During long sections of output, this slot allows more efficient detection of matches. Older data is placed here, and only the most recent line of data is stored in the "buffer". That's why "flush" is the only way to ensure you get all the output data in one go. AUTHOR
Oliver Gorwits <oliver@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Oliver Gorwits. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-12 Net::CLI::Interact::Transport(3pm)
All times are GMT -4. The time now is 07:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy