cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Microsoft IIS extension problem

JohanZuleta
Observer

Good morning community.
I need to retrieve the metrics from the installed extension of an operating system, Windows Server 2003 Version 5.2 R2. The installed extension is MICROSOFT IIS.

JohanZuleta_0-1706708261580.png

 

The extension meets the installation requirements:
- ActiveGate 1.245.0 or higher
- ActiveGate Group: default

 

JohanZuleta_1-1706708284658.pngJohanZuleta_2-1706708300886.png

 

However, it generates the following error:
"Failed to assign monitoring configuration to ActiveGate. Reason: The monitoring configuration requires ActiveGate version 1.245.0 or later that supports data source WMI and belongs to group 'default.'"

10 REPLIES 10

DavidMass
Dynatrace Mentor
Dynatrace Mentor

Hi @JohanZuleta , 
Yes, as you mentioned the OA doesn't yet support Windows Server 2023 (EDIT : the OA no longer supports Windows 2003) (https://docs.dynatrace.com/docs/setup-and-configuration/technology-support#windows). I would need to defer to that team to know when that support would come. 

DavidMass_0-1706549161863.png

 

However, as this extension is based on WMI, another option is to use an ActiveGate to remotely monitor IIS. Please take a look at this documentation (under Remote enable permission on the host) to see how to get that set up : https://docs.dynatrace.com/docs/shortlink/wmi-extension#monitored-host 

"Thanks for the input. Do you have any solution or path to install the OneAgent on a Server 2003?"

@DavidMisa  actualizo información es Windows Server 2003 versión 5.2 R2

Hola Johan,

 

OneAgent no cuenta con soporte para Windows Server 2003, te podria recomendar las siguientes extensiones:

 

Para el sistema operativo windows 2003, puedes monitorear con la extension Remote Windows host monitoring.  Esto es realizado mediante WMI.

 

Para el IIS la extension Microsoft IIS, la cual tambien  usa WMI para el monitoreo.

--------------------------------------------------------------------------------------------------------

Hello Johan,

OneAgent does not have support for Windows Server 2003, I could recommend the following extensions:

  • For Windows 2003 operating system, you can monitor with the Remote Windows host monitoring extension. This is done through WMI.
  • For IIS the Microsoft IIS extension, which also uses WMI for monitoring.

 

 

 

Malaik
DynaMight Champion
DynaMight Champion

Hola,

 

I want help, but....

Need @dannemca here.

Sharing Knowledge

In fact we need @DanielS , nuestro Spanish master!!

Site Reliability Engineer @ Kyndryl

There is an update in English about the issue; the initial request has been edited.

I've edited the post with a quick translation to english.

The true delight is in the finding out rather than in the knowing.

JohanZuleta
Observer

Good afternoon community,

Let me tell you where I am at.

I installed two extensions: Remote Windows Host Monitoring and Microsoft IIS. The first one works well for me, and I can already see infrastructure metrics with a local user on the host being monitored. However, under the Microsoft IIS extension, we encountered the following error:

Content: Failed to assign monitoring configuration to ActiveGate. Reason: GENERIC_ERROR: Status GENERIC_ERROR (27) returned from 1 agent (x.x.x.x: Cannot execute query: IIS Site on device x.x.x.x err: Exception occurred (invalid query)); Attached is the log for reference.

x.x.x.x belongs to the IP of the host being monitored.

Thank you for your assistance.

Can you try executing the WMI queries directly on the host that you are trying to monitor? Here are the two main queries that the extension uses.

 

$query1 = "SELECT Name, TotalApplicationPoolUptime, CurrentWorkerProcesses, MaximumWorkerProcesses, TotalApplicationPoolRecycles, CurrentApplicationPoolUptime, TimeSinceLastWorkerProcessFailure FROM Win32_PerfFormattedData_APPPOOLCountersProvider_APPPOOLWAS WHERE Name != '_Total'"
$query2 = "SELECT Name, CacheHitRate, CurrentQueueSize FROM Win32_PerfFormattedData_Counters_HTTPServiceRequestQueues WHERE Name != '_Total'"

 

 

You can execute each query with the following commands: 

 

Get-WMIObject -query $query1
Get-WMIObject -query $query2

 

 

If the queries produce an error on the host you are trying to monitor, the extension will not work either. Please provide the OS version of the host and the version of Internet Information Services Manager. Also, check in the IIS Manager that the sites are present on the host. 

Featured Posts