Applications Systems
Create SAM component report that includes Multivalue Messages and Component Messages
This article describes the steps on how to pull report information from the Component Messages in a SAM component.
First published date
Last published date
Overview
This article describes the steps on how to pull report information from the Component Messages in a SAM component.
Product section
Resolution
- Open the SQL Management Studio.
- Sign into SQL.
- Query the View 'APM_AlertsAndReportsData' in the database. For example,
SELECT TOP 1000 * FROM [dbo].[APM_AlertsAndReportsData]
- Select the columns you want to retain and remove the others. SolarWinds recommends that you retain MultivalueStatistics, MultivalueMessages, and ComponentMessage. Example query:
SELECT NodeId, NodeName, ComponentName, ApplicationName, ComponentMessage, MultiValueStatistics, MultiValueMessages, WindowsEventMessages FROM [dbo].[APM_AlertsAndReportsData] where ComponentName ='HTTP Port Monitor'