10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
I am writing a script to kick off a process to gather logs on multiple nodes in parallel using "&". These processes create individual log files. Which I would like to filter and convert in CSV format after they are complete. I am facing following issues:
1. Monitor all Processes parallelly.... (5 Replies)
Discussion started by: shunya
5 Replies
2. Infrastructure Monitoring
Hi,
I have below IP address configured in my server. Recently i installed SNMP in Linux 64x bit. While checking the snmp using snmpwalk i get Time out error for all IP except loopback IP(127.0.0.1).
How to make all my IPs listen to SNMP
eth0
BOOTPROTO=static
DEVICE=eth0... (1 Reply)
Discussion started by: Paulwintech
1 Replies
3. Shell Programming and Scripting
GM everyone,
I have this script that goes to multiple servers and monitor a certain process and send the output to a file on servers1, the script looks like this
Code:
exec < server.listwhile read SERVER do ssh $SERVER "ps -ef | grep process_name" >> /tmp/reportdone
can someone help me... (2 Replies)
Discussion started by: baders
2 Replies
4. Shell Programming and Scripting
GM everyone,
I have this script that goes to multiple servers and monitor a certain process and send the output to a file on servers1, the script looks like this
exec < server.list
while read SERVER
do
ssh $SERVER "ps -ef | grep process_name" >> /tmp/report
done
can someone help ad... (0 Replies)
Discussion started by: baders
0 Replies
5. Shell Programming and Scripting
Can someone please explain to me how come snmpwalk doesn't always find a running process that's on a remote server?
I prefer to use snmp to monitor processes remotely because this doesn't require me to put a script on that remote box. but the problem is, there are times that my snmp command... (2 Replies)
Discussion started by: SkySmart
2 Replies
6. Infrastructure Monitoring
Hi,
I am trying to monitor temperature of telecom devices of avaya and polycom. I have setup SNMP. can somebody help me to know what are the requirements to have a SNMP command working for this
thanks in advance (1 Reply)
Discussion started by: Subhash Chauhan
1 Replies
7. Infrastructure Monitoring
Can someone please tell me how to calculate the CPU usage from what one gets back from snmpwalk?
I have searched and dug through the internet and apparently, no one has the answer to this?
i can use snmpwalk to pull out relevant information about cpu. but i have no clue what values are to be... (1 Reply)
Discussion started by: SkySmart
1 Replies
8. Shell Programming and Scripting
hi all,
i would like to write the shell script to monitoring the processing, but if i passing the parameter the number of process is incorrect
how to slove it? many thx
got the correct number of process as following script:
===========================================================... (3 Replies)
Discussion started by: eric_wong_ch
3 Replies
9. Shell Programming and Scripting
I have a shell script which runs from 7AM to 3AM every day. The script performs certain monitoring functions and if it has a problem it may need to email someone about it. The problem is that the notification process was never modified to handle running past midnight (from 23:59:59 till 3AM). ... (0 Replies)
Discussion started by: rdc69
0 Replies
10. UNIX for Advanced & Expert Users
Hi
I would like to monitor CPU usage ( %) , memory utilization and such on an AIX 5.3 with snmp.
How would I do that ? :confused:
If I do "snmpwalk -c public -v1 hosttomonitor" I get nothing about the CPU.
I've done this on Linux ( not much trouble doing it on linux ) but I'm having a hard... (2 Replies)
Discussion started by: art
2 Replies
TORRUS_COLLECTOR(8) torrus TORRUS_COLLECTOR(8)
NAME
collector - Torrus data Collector.
SYNOPSIS
torrus collector --tree=TREENAME [options...]
DESCRIPTION
This command starts the Collector process for the tree TREENAME. By default it forks into a daemon, sets the log output file to
/var/log/torrus/collector.TREENAME.log, performs one Collector cycle, and sleeps until the next cycle is scheduled. In daemon mode the log
file can be reopened by sending it a SIGHUP signal.
Collector cycle scheduling is controlled by two parameters defined for each individual configuration leaf: "collector-period" and
"collector-timeoffset". See the Torrus Configuration Guide for more details.
The number of OID (Object IDentifier) variable bindings sent by Collector is controlled by the datasource parameter "snmp-oids-per-pdu".
It is set to a default value of 40 in snmp-defs.xml, and may be overwritten at the host level.
OPTIONS
--instance=N
Defines the collector instance. A single tree can allow more than one collector instance. The number of instances is defined in "run"
hash in the torrus-siteconfig.pl's %Torrus::Global::treeConfig. If the number of instances is more than one, this option is mandatory.
The collecting job is split between the instances, and normally all instances should be started by the startup scripts. The tree should
be re-compiled after the number of instances is changed in the siteconfig. In the example below the tree tree_A will be served by
three collector instances:
%Torrus::Global::treeConfig = (
'tree_A' => {
'description' => 'The First Tree',
'xmlfiles' => [qw(a1.xml a2.xml a3.xml)],
'run' => { 'collector' => 3, 'monitor' => 1 } },
);
--nodaemon
Prevents the process from becoming a daemon and sets the log to STDERR.
--runonce
Instructs the collector to run once and exit. Implies --nodaemon.
--runalways
Instructs the collector process to continue running even if no collector datasources are defined in the tree. In this case, the process
will check once per hour if the configuration has changed.
--debug
Sets the log level to debug.
--verbose
Sets the debug level to info.
--help
Displays a help message.
FILES
/etc/torrus/conf/torrus-siteconfig.pl
Torrus site configuration script.
/var/log/torrus/collector.TREENAME.log
Collector's log for the tree TREENAME.
/usr/share/torrus/xmlconfig/snmp-defs.xml
Basic variable definitions for the SNMP collector.
SEE ALSO
torrus(8)
NOTES
See more documentation at Torrus home page: http://torrus.org
AUTHOR
Stanislav Sinyagin <ssinyagin@yahoo.com>
torrus 2.03 2013-07-26 TORRUS_COLLECTOR(8)