Contents
This sample demonstrates the use of the TIBCO StreamBase® SNMP Input Adapter.
-
In the Package Explorer view, double-click
snmp.sbapp
. -
If you wish the adapter to listen on a UDP port different from the standard for SNMP traps (port 162):
-
Select the adapter icon to open the Properties view for the adapter.
-
Select the Adapter Properties tab and enter the desired UDP port number.
-
Save the application.
-
-
Click the Run button. This opens the SB Test/Debug perspective and starts the application.
-
In the Test/Debug Perspective, open the Application Output view. Look for a tuple emitted on the Status stream with its
action
value set toConnected
, indicating that the adapter has established a connection to the configured port and is listening for traps. -
In the Manual Input view, select the
Commands
stream. Enterdisconnect
in thecommand
field. Click and observe that a tuple has been emitted on theStatus
stream, and a message has been printed to the console to indicate the adapter has disconnected from the configured port. -
In the Manual Input view, select the
Commands
stream again. Enterconnect
in thecommand
field. Click and observe that a tuple has been emitted on theStatus
stream, and a message has been printed to the console to indicate the adapter has reconnected to the port and is again listening for traps. -
To see traps being emitted by the adapter, you may cause one to be sent via the use of an application capable of acting as an SNMP agent and sending traps, such as the snmptrap utility included in the open-source Net-SNMP project. You can use the following snmptrap command to generate a v1 trap:
snmptrap -v 1 -c private localhost NET-SNMP-EXAMPLES-MIB::netSnmpExampleHeartbeatNotification "" 6 17 "" netSnmpExampleHeartbeatRate i 123456
(Lines in the single command above are shown wrapped for clarity.)
-
As traps are received by the adapter you will see a tuple emitted on the Traps stream describing its contents.
-
When done, press F9 or click the Stop Running Application button.
This section describes how to run the sample in UNIX terminal windows or Windows command prompt windows. On Windows, be sure to use the StreamBase Command Prompt from the Start menu as described in the Test/Debug Guide, not the default command prompt.
-
Open three terminal windows on UNIX, or three StreamBase Command Prompts on Windows. In each window, navigate to your workspace copy of the sample, as described above.
-
In window 1, type:
sbd snmp.sbapp
-
In window 2, type:
sbc dequeue -v
This window displays the tuples dequeued from the adapter's output ports.
-
In window 3, disconnect from the UDP port:
echo disconnect | sbc enqueue Commands
-
Observe in window 2 that a
Disconnected
Tuple is emitted from theStatus
port and a message is issued in window 1 to indicate the adapter has disconnected from the UDP port and is no longer listening for traps. -
In window 3, reconnect to the UDP port:
echo connect | sbc enqueue Commands
-
Observe in window 2 that a
Connected
Tuple is again emitted from theStatus
stream. A message is issued in window 1 to indicate the adapter has reconnected to the UDP port and listening to SNMP traps. -
To see traps being emitted by the adapter, you may cause one to be sent via the use of an application capable of acting as an SNMP agent and sending traps, such as the snmptrap utility included in the open-source Net-SNMP project. You can use the following snmptrap command in window 3 to generate a v1 trap:
snmptrap -v 1 -c private localhost NET-SNMP-EXAMPLES-MIB::netSnmpExampleHeartbeatNotification "" 6 17 "" netSnmpExampleHeartbeatRate i 123456
-
Observe in window 2 that a new tuple has been emitted on the Traps stream for each trap received by the adapter.
-
In window 3, type the following command to terminate the server and dequeuer:
sbadmin shutdown
In StreamBase Studio, import this sample with the following steps:
-
From the top menu, click
→ . -
Select this sample from the Embedded Input Adapters list.
-
Click OK.
StreamBase Studio creates a project for this sample.
When you load the sample into StreamBase Studio, Studio copies the sample project's files to your Studio workspace, which is normally part of your home directory, with full access rights.
Important
Load this sample in StreamBase Studio, and thereafter use the Studio workspace copy of the sample to run and test it, even when running from the command prompt.
Using the workspace copy of the sample avoids permission problems. The default workspace location for this sample is:
studio-workspace
/sample_adapter_embedded_snmp
See Default Installation Directories for the default location of studio-workspace
on your system.
In the default TIBCO StreamBase installation, this sample's files are initially installed in:
streambase-install-dir
/sample/adapter/embedded/snmp
See Default Installation Directories for the default location of studio-workspace
on your system.