Need all alerts data from Management Module
search cancel

Need all alerts data from Management Module

book

Article ID: 194736

calendar_today

Updated On:

Products

CA Application Performance Management Agent (APM / Wily / Introscope) CA Application Performance Management (APM / Wily / Introscope) INTROSCOPE DX Application Performance Management

Issue/Introduction

I need all the alerts details from a particular management module. I tried with CLW , but not getting any options to see all the details of alert. Could you let me know how can i get this data either from DB or CLW . or if there is any other way

Environment

Release : 10.7.0

Component : APM Agents

Resolution

CLW will only give you limited information like the alert name, management module, and status. 

 

Not available out of the box. A curl script to pull info from browser or a class decompiler of the MM may be needed

Additional Information

You may also want to script something --

Run a command like this to peek at the instances of 'Alert' inside the MM, but they would need to know more about the structure to know exactly what they would want to get out of it

[root@abctest000875 modules]# unzip -p APM-APIM-DashboardAlerts.jar ManagementModule.xml | grep -i Alert
              <alertid>
<constructname>Service Front End Average Response Times Alert</constructname>
              </alertid>
              <alertid>
<constructname>Service Back End Average Response Time Alert</constructname>
              </alertid>
        <widget>
              <alertid>
<constructname>Service Front End Average Response Times Alert</constructname>
              </alertid>
</widget>
This thing obviously strips XML tags..