Details
-
Type:
Enhancement
-
Status: Closed (View Workflow)
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 1.8.12
-
Fix Version/s: 14.0.3
-
Component/s: Data Collection - WMI
-
Security Level: Default (Default Security Scheme)
-
Labels:
Description
There is no WMI class Win32_PerfFormattedData_TermService_TerminalServices on Windows 2008 server.
I would like you to add to the default wmi-configuration.xml:
<wpm name="win32_terminalservices2k8" wmiClass="Win32_PerfFormattedData_LocalSessionManager_TerminalServices" keyvalue="ActiveSessions" recheckInterval="3600000" ifType="all" resourceType="node"> <!-- Collect these attributes. * Name is the unique name used for keyvalue. * Alias is the local name for the RRD file. * wmiObject is the WMI object instance. * Type is used to convert values around. The number of active sessions, including the console. --> <attrib name="ActiveSessions" alias="wmiTSSessActive" wmiObject="ActiveSessions" type="Gauge"/> <!-- The number of inactive (idle, disconnected) sessions. --> <attrib name="InactiveSessions" alias="wmiTSSessInactive" wmiObject="InactiveSessions" type="Gauge"/> <!-- The total number of sessions. --> <attrib name="TotalSessions" alias="wmiTSSessTotal" wmiObject="TotalSessions" type="Gauge"/> </wpm>
This is a copy of the setting just with another class Win32_PerfFormattedData_LocalSessionManager_TerminalServices and of course a different name.