Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Go to the SQLDM installation folder path : C:\Program Files\Idera\Idera SQLdiagnostic manager
  2. Open SQLdmManagementService.exe.config Config or SQLdmCollectionService.exe. config Config as Administrator (depending on which SQLDM Performance Counters you want to enable)
  3. Edit it and add the following parameter : publishPerformanceCounters=”true” and restart the services.

Review the following examples:

Code Block
languagetext
titleSQLdmCollectionService.exe
<configuration>
<Idera.SQLdm>
<Services>

<CollectionService
instanceName="Default" managementServiceAddress="ServerName"
publishPerformanceCounters="true"/>

</Services>
</Idera.SQLdm>
</configuration>

...

Note

If you no longer want to publish the DM SQLDM Performance Counters, set the parameter as follows publishPerformanceCounters=”false” or just delete the property from the configuration and restart the services.

Info

Review the available internal SQLDM PerfMon counters list for the SQLdmManagementService and SQLdmCollectionService: Internal SQLDM perfmon counters.

...