SCOM DW Query to retrieve Web Application Transaction requests

Bruno Navarro 11 Reputation points
2022-09-01T07:44:03.657+00:00

Management is requesting monthly inventory reports of things we have monitored in our infrastructure. I have no problem retrieving all I need from the data warehouse, but I am stuck retrieving Web application transaction requests.

Some of our applications are "grouped" into web application transaction monitors. This produces one object of type 'Web Application Perspective' with a bunch of monitors underneath is (the requests):

236816-image.png

236836-image.png

Anybody knows a SQL query I can use to retrieve these request monitors?

The closes I have been to retrieve this has been joining vManagementPack and vMonitor:

*SELECT TOP (1000) *
FROM vManagementPack as MP
join vMonitor as MON on MP.ManagementPackRowId = MON.ManagementPackRowId
where MP.ManagementPackDefaultName like '%MPName%'*

This gets me the Monitor system & default names, but they do not contain the URLs:

236776-image.png

Any help is appreciated!

Operations Manager
Operations Manager
A family of System Center products that provide infrastructure monitoring, help ensure the predictable performance and availability of vital applications, and offer comprehensive monitoring for datacenters and cloud, both private and public.
1,515 questions
SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,961 questions
0 comments No comments
{count} vote

1 answer

Sort by: Most helpful
  1. Bruno Navarro 11 Reputation points
    2022-11-14T08:48:21.927+00:00

    Well I finally figured it out, but I had to do a request to the Operational Database. I could not gather this information form the warehouse.

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.