4 WebLogic SNMP Command-Line Utility
This chapter includes the following sections:
Required Environment for the SNMP Command Line Utility
To set up your environment for the WebLogic Server SNMP command line utility:
Parent topic: WebLogic SNMP Command-Line Utility
Syntax and Commands for the SNMP Command-Line Utility
Invoke the SNMP command-line utility using the following syntax:
java weblogic.diagnostics.snmp.cmdline.Manager command [-?]
In the preceding syntax, command
represents one of the commands described in Table 4-1. Use the optional argument, -?
, to obtain usage information about the specified command.
Table 4-1 SNMP Commands
Command | Description |
---|---|
SnmpBulkWalk
|
Returns a collection of MIB object instances (MIB variables) by repeatedly invoking Starting from the first OID that you specify on the command line, the command invokes the The command increments the OID that you specified on the command line and repeats the pattern described in the previous paragraph. Optionally specify the |
SnmpInform |
Constructs an INFORM notification and distributes it to an SNMP manager or trap monitor. |
SnmpGet |
Retrieves the value of one or more MIB variables. This command does not accept OIDs for managed objects. You can specify an optional interval at which this command repeatedly retrieves the value of the specified variable. |
SnmpGetAll <columnOID>
|
Walks the table columns that you specify and groups the column values for each row in the output. All specified columns must be from the same table. |
SnmpGetBulk
|
Returns a collection of MIB variables by repeatedly invoking The The |
SnmpGetNext |
Returns managed objects or MIB variables. If you specify a tabular object, this command returns the first child managed object. If you specify a scalar object, this command returns the first object variable. Instead of the recursive listing that the |
SnmpTrap |
Constructs a TRAP notification and distributes it to an SNMP manager or trap monitor. |
SnmpTrapLogger |
Starts a process that listens for notifications. Writes each notification that it receives to a log file. |
SnmpTrapMonitor |
Starts a process that listens for notifications. Prints each notification that it receives to standard out. |
SnmpWalk |
Returns all managed objects or variables that are below a specified node in the MIB or within a specified range. If you specify the OID for a tabular object, the command returns all of its object variables along with all related (child) objects and variables. |
Parent topic: WebLogic SNMP Command-Line Utility
Examples
The examples in this section assume that you have created an SNMP agent on the Administration Server and that you have not modified the default values for the agent. (For example, the agent listens on UDP port 161 and uses public
as its community name.)
These examples use the following options for loading the MIB module, which enable you to refer to managed objects by their display names instead of OIDs:
-
-m
— Specifies the WebLogic Server MIB module,BEA-WEBLOGIC-MIB
-
-M
— Specifies either the directory to, or the resource classpath of, the compiled MIB. In these examples, the resource classpath is used.
To see the display names for all WebLogic Server managed objects, see MIB Module for WebLogic Server.
-
The following example displays usage information for the
SnmpWalk
command:java weblogic.diagnostics.snmp.cmdline.Manager SnmpWalk -?
-
The following example retrieves the names of all applications that are deployed in a domain.
java weblogic.diagnostics.snmp.cmdline.Manager SnmpWalk -m BEA-WEBLOGIC-MIB -M /weblogic/diagnostics/snmp/mib applicationRuntimeObjectName
-
The following command retrieves all variable bindings for all applications in the domain. To make the network communication more efficient, it groups 3
SnmpGetBulk
commands in each request:java weblogic.diagnostics.snmp.cmdline.Manager SnmpBulkWalk -v2 -Bm 3 -m BEA-WEBLOGIC-MIB -M /weblogic/diagnostics/snmp/mib applicationRuntimeTable
-
The following command retrieves the name of the first application that is deployed in the domain. Then it retrieves the name and Bytes Pending Count for the first two JMS servers in the domain:
java weblogic.diagnostics.snmp.cmdline.Manager SnmpGetBulk -v2 -Bn 1 -Bm 2 applicationRuntimeObjectName jmsServerRuntimeObjectName jmsServerRuntimeBytesPendingCount
Parent topic: WebLogic SNMP Command-Line Utility