newrelic / nri-perfmon

Windows Perfmon / WMI On-Host Integration for New Relic Infrastructure
Other
13 stars 19 forks source link

Failed to add custom perfmon counters #37

Open oferpld opened 2 years ago

oferpld commented 2 years ago

nri-perfmon.zip

Hi guys,

Attached our perfmon files from one of our windows hosts. We try to add custom performance counters to our NR account, without any luck though.

Below is "GRT.Core.GeoService" configuration in config.json without results in NR query (see below it):

{ "provider": "GRT.Services", "category": "GRT.Core.GeoService", "counters": [ { "counter": "AverageGoogleProcessingTime" }, { "counter": "AverageQueueWaitTime" }, { "counter": "GoogleRequestsSent" }, { "counter": "GoogleRequestsSentPerSecond" }, { "counter": "QueuedRequests" }, { "counter": "RequestsFailedAndWillBeRetried" }, { "counter": "RequestsPermanentlyFailed" }, { "counter": "RequestsRetryLimitReached" }, { "counter": "RequestsSucceeded" }, { "counter": "RequestsSucceededPerSecond" }, { "counter": "RequestsWaitingForResponse" }, ] },

I find no evidence for GRT.Core.GeoService:

image

Good reference: Below is ASPNET configuration in config.json and results in NR query:

{
  "provider": "ASPNET",
  "category": "ASPNETApplications",
  "counters": [
    {
      "counter": "ErrorsTotal"
    },
    {
      "counter": "RequestsPerSec"
    }
  ]
},

image

Kindly advise what might be missing.

Thanks in advance,