Table of Contents

Introduction

Lamaxu intergates with Solarwinds SAM using Java Management Extensions (JMX), https://en.wikipedia.org/wiki/Java_Management_Extensions.

Lamaxu connects to MQ queue managers and exposes MQ's metrics as JMX MBeans. 

Before attempting to integrate Lamaxu with Solarwinds, it's important to confirm that Lamaxu is operating correctly and is able to both access the MQ manager and expose metrics via JMX. The easiest way to do this is to obtain a copy of the Java 8 JDX and use the bundled utility called 'jconsole'

Please follow the instructions below.

First Set up the Lamaxu JMX Gateway

The JMX Gateway can be accessed using an RFC2609 compliant service URL:

service:jmx:rmi://<TARGET_MACHINE>:<JMX_RMI_SERVER_PORT>/jndi/rmi://<TARGET_MACHINE>:<RMI_REGISTRY_PORT>/jmxrmi

Given the above and the following parameters:

TARGET_MACHINE = localhost
JMX_RMI_SERVER_PORT = 3098
RMI_REGISTRY_PORT = 3099

We can derive the following functional URL:

service:jmx:rmi://localhost:3098/jndi/rmi://localhost:3099/jmxrmi

For your convenience, this URL is also generated by the LAMAXU process and written to the log file at start-up: Please substitute someHostName for the correct IP or DNS address for the Lamaxu agent.

2018-06-23 18:07:37,039 [main] JmxGateway remote URL is: service:jmx:rmi://localhost:3098/jndi/rmi://localhost:3099/jmxrmi

 

 

IMPORTANT: While it is possible to define a (:) colon character as part of an MQ object name, the JMX standard prohibits its use. Please be aware that any (:) colon characters in names will be stripped out when generating the MBean tree.

 

Testing JMX Connectivity with JConsole

JConsole is a JMX utility that is bundled with the Java JDK edition.

Locate and run jconsole from you JDK bin directory. You should be prompted for a URL, username and password. Assuming you have a local user called “admin” with password “password” and role of “admin”, you should be able to connect to the Lamaxu successfully.

As shown in the screenshot on the left, the information is displayed under the MBeans tab.

A successful connection via jconsole means you can now proceed to connecting your enterprise monitoring solution using the same parameters.

SSL Secured Communications

A Lamaxu process secured by SSL can be accessed by specifying an appropriately configured JKS trust store.

The command below can be specified on the jconsole command line:

jconsole –J -Djavax.net.ssl.trustStore=/app/LAMAXU/keystore.jks -J-Djavax.net.ssl.trustStorePassword=password


 

Once JConsole is able to connect to the Lamaxu agent, the defined queue managers will appear as MBeans as shown in the tree list example shown below.

 

Adding a JMX Component Monitor to SAM

To add a JMX Monitor to a node using the wizard, perform the following steps from the SAM web console.

1. Click SAM Settings.

2. Click Component Monitor Wizard

3. Select JMX Monitor from the dropdown list.

Note: For the next step, the defaults are sufficient for most environments. If they are not, you can change them to suit your environment.

4. Click Browse to find the Server IP Address of the node you want to monitor.

5. Add the Port number, Protocol type, URL path, and Credentials for the remaining fields. Use the customized URL below:

6. Choose a credential from the Credential Library or create a new one using the Username and Password fields.

It's important to use the structure shown below as Solarwinds has a string limit to the size of the custom URL provided.

service:jmx:rmi://${IP}:${PORT}/jndi/${PROTOCOL}://${IP}:3099${PATH}

7. Click Next. The following MBean selection screen appears

 

Configuring Solarwinds SAM 

Note: Only values that return numerical data can be monitored. String data is not supported by SolarWinds at this time. Non-numerical data will be shown without a check box when selecting MBeans to poll from within SAM, as illustrated above

 

Select the MQ Monitoring MBeans

Queue Manager Status

Queue Status

Channel Status

Channel Status Attributes

PUB/SUB Status

Solarwinds Component Statistics Dashboard

MQ Status Value Map for Solarwinds

CHANNEL_STATUS

PropertyValueAlertDescription
STATUS1GoodINACTIVE. The channel state is not in error however it is not currently running.
STATUS2GoodRUNNING. The channel is in a good running state
STATUS3WarnSTARTING. The channel is currently starting. This is a transient state.
STATUS4WarnSTOPPING. The channel is currently stopping. This is a transient state.
STATUS5WarnSTOPPED. The channel is currently stopped. This should be considered an error state however administrators may STOP a channel during change activity.
STATUS6WarnREQUESTING. The channel is currently requesting. This is a transient state for Requester channels.
STATUS7WarnINITIALIZING. The channel is currently initializing. This is a transient state for Requester channels.
STATUS8WarnSWITCHING. The channel is currently switching. This is a transient state.
STATUS9

Warn

Critical

BINDING. The channel is currently binding and trying to connect to the remote end. Binding is a transient state however it should be considered an error if this state lasts for more than a few minutes. Some in error channels can get stuck in a binding state.
STATUS10CriticalRETRYING. The channel is currently retrying and trying to connect to the remote end. Retrying should be considered an error state.
STATUS11CriticalPAUSED. The channel is currently paused. This is a transient state however it should be considered an error if this state lasts for more than a few minutes.
STATUS12CriticalDISCONNECTED. The channel is currently disconnected. This is a transient state however it should be considered an error if this state lasts for more than a few minutes.
CONNS< 1

Warn

Critical

This is the number of ACTIVE connections made to the SVRCONN channel.

QUEUE_STATUS

Suggested values only.

PropertyValueAlertDescription
QUEUEString nameNAThe is the name of the queue to filter the status values on.
OPPROCS< 1WarnThis is the number of handles that are currently open for output for the queue.
IPPROCS< 1WarnThe number of handles/connections that are currently open for input for the queue (either input-shared or input-exclusive). This number does not include handles that are open for browse.
CURDEPTH> 50WarnThe current depth of the queue, that is, the number of messages on the queue, including both committed messages and uncommitted messages.
CURDEPTH> 100CriticalThe current depth of the queue, that is, the number of messages on the queue, including both committed messages and uncommitted messages.
lastGetIntervalSecs> 5Warn

This gives the relative number of seconds since the last get was performed on the queue. The number of seconds is calculated from;

(Current System time - Last Get Time) = interval

A value of -1 means the metric is invalid

NOTE: If a -1 is not expected then you may need to set the MONQ property on the queue manager to MEDIUM.

ALTER QMGR MONQ(MEDIUM)

lastGetIntervalSecs> 10Critical

This gives the relative number of seconds since the last Get was performed on the queue. The number of seconds is calculated from;

(Current System time - Last Get Time) = interval

A value of -1 means the metric is invalid

NOTE: If a -1 is not expected then you may need to set the MONQ property on the queue manager to MEDIUM.

ALTER QMGR MONQ(MEDIUM)

lastPutIntervalSecs> 5Warn

This gives the relative number of seconds since the last Put was performed on the queue. The number of seconds is calculated from;

(Current System time - Last Put Time) = interval

A value of -1 means the metric is invalid

NOTE: If a -1 is not expected then you may need to set the MONQ property on the queue manager to MEDIUM.

ALTER QMGR MONQ(MEDIUM)

lastPutIntervalSecs> 10Critical

This gives the relative number of seconds since the last Put was performed on the queue. The number of seconds is calculated from;

(Current System time - Last Put Time) = interval

A value of -1 means the metric is invalid

NOTE: If a -1 is not expected then you may need to set the MONQ property on the queue manager to MEDIUM.

ALTER QMGR MONQ(MEDIUM)

MSGAGE> 5WarnAge, in seconds, of the oldest message on the queue. The maximum displayable value is 999999999; if the age exceeds this value, 999999999 is displayed.

 

 

PUBSUB_STATUS

Property

Value

AlertDescription

STATUS

0

CriticalERROR

STATUS

1

CriticalREFUSED

STATUS

2

WarnSTOPPING

STATUS

3

WarnINACTIVE

STATUS

4

WarnSTARTING

STATUS

5

GoodCOMPAT

STATUS

6

GoodACTIVE

QMGR_STATUS

Property

Value

AlertDescription

STATUS

0

Critical

STOPPED. The queue manager is not running or cannot be contacted.

NOTE: In some cases the queue manager may still actually be running but cut off from Lamaxu due to network issues.

STATUS

1

WarnQUIESCING. The queue manager is in the process of being shut down.

STATUS

2

GoodSTANDBY. The queue manager is running as standby.

STATUS

3

GoodSTARTING. The queue manager is starting up.

STATUS

4

GoodRUNNING. The queue manager is running normally.

LISTENER_STATUS 

Property

Value

AlertDescription

STATUS

1

Critical

Warn

STOPPED. The listener is stopped or not running.

STATUS

2

GoodRUNNING. The listener is running normally.

PAGESET_USAGE (ZOS Only)

Property

Value

AlertDescription
STATUS0GoodThe PAGE SET is AVAILABLE
STATUS

2

Critical

The PAGE SET is OFFLINE
STATUS4WarnThe PAGE SET is SUSPENDED
PAGESET_ID

Page set ID value

NAThe pageset id value to filter on
UNUSED_PAGESInteger Value This is the number of free pages for the PAGESET_ID. An alert should be raised if this falls below a specified value.

SUBSCRIPTION_STATUS

PropertyValueAlertDescription
CURDEPTH> 50WarnThe current depth of the base subscriber queue, that is, the number of messages on the queue, including both committed messages and uncommitted messages.
CURDEPTH> 100CriticalThe current depth of the base subscriber queue, that is, the number of messages on the queue, including both committed messages and uncommitted messages.
lastMsgIntervalSecs> 5Warn

This gives the relative number of seconds since the last message was sent to the subscriber. The number of seconds is calculated from;

(Current System time - Last Message Time) = interval

A value of -1 means the metric is invalid

lastMsgIntervalSecs> 10Critical

This gives the relative number of seconds since the last message was sent to the subscriber. The number of seconds is calculated from;

(Current System time - Last Message Time) = interval

A value of -1 means the metric is invalid

Solarwinds Error: JMX polling is not supported

To fix the "JMX polling is not supported, use  Agentless polling instead" Solarwinds error, change the preferred polling method to for the application monitor Agentless. 

To do this, open the Solarwinds SAM Web Console and do the following;

  1. Go the Settings->All Settings
  2. Go to SAM Settings
  3. Go to Manage Application Monitors
  4. Click on the application monitor.
  5. Go to Edit Application Monitor
  6. Click on Advanced and change the preferred polling method to Agentless.



  • No labels