应用程序洞察接收器选项未在服务结构的应用程序洞察中显示性能计数器

时间:2019-07-16 00:08:47

标签: azure-service-fabric azure-application-insights

以下是我为Application Insights接收器设置的配置,用于发送EtwEventSourceProviderConfiguration和EtwManifestProviderConfiguration和PerformanceCounters。

                "WadCfg": {
                  "DiagnosticMonitorConfiguration": {
                    "overallQuotaInMB": "50000",
                    "sinks": "applicationInsights",
                    "EtwProviders": {
                      "EtwEventSourceProviderConfiguration": [
                        {
                          "provider": "Microsoft-ServiceFabric-Actors",
                          "scheduledTransferKeywordFilter": "1",
                          "scheduledTransferPeriod": "PT5M",
                          "DefaultEvents": {
                            "eventDestination": "ServiceFabricReliableActorEventTable"
                          }
                        },
                        {
                          "provider": "Microsoft-ServiceFabric-Services",
                          "scheduledTransferPeriod": "PT5M",
                          "DefaultEvents": {
                            "eventDestination": "ServiceFabricReliableServiceEventTable"
                          }
                        }
                      ],
                      "EtwManifestProviderConfiguration": [
                        {
                          "provider": "cbd93bc2-xxxx-4566-b3a7-xxxxxxxx",
                          "scheduledTransferLogLevelFilter": "Information",
                          "scheduledTransferKeywordFilter": "4611686018427387904",
                          "scheduledTransferPeriod": "PT5M",
                          "DefaultEvents": {
                            "eventDestination": "ServiceFabricSystemEventTable"
                          }
                        }
                      ]
                    },
                    "PerformanceCounters": {
                      "scheduledTransferPeriod": "PT1M",
                      "PerformanceCounterConfiguration": [
                        {
                          "counterSpecifier": "\\Processor(_Total)\\% Processor Time",
                          "sampleRate": "PT1M",
                          "unit": "Percent",
                          "sinks": "applicationInsights"
                        },
                        {
                          "counterSpecifier": "\\Process(My.WebAPI)\\Private Bytes",
                          "sampleRate": "PT1M",
                          "sinks": "applicationInsights"
                        }
                      ]
                    }
                  },
                  "SinksConfig": {
                    "Sink": [
                      {
                        "name": "applicationInsights",
                        "ApplicationInsights": "d504ba9a-xxx-42b7-xxxx-xxxxxxxxxx"
                      },
                      {
                        "name": "MyApplicationInsightsProfilerSink",
                        "ApplicationInsightsProfiler": "d504ba9a-xxxx-42b7-xxxx-xxxxxxxxx"
                      }
                    ]
                  }
                },
                "StorageAccount": "sfdgjsxxxxxxxxxxxx"
              }
            }
          },

我在Log中看不到任何事件或性能计数器。

Application Insights Log

0 个答案:

没有答案