Azure app_insights 指标集

编辑

Azure app_insights 指标集编辑

此功能处于测试阶段,可能会发生变化。设计和代码不如正式 GA 功能成熟,并且按原样提供,没有任何担保。测试版功能不受正式 GA 功能支持 SLA 的约束。

这是 app_insights 指标集。

此指标集允许用户从指定应用程序检索应用程序见解指标。

识别资源的配置选项编辑

application_id
([]string) 应用程序的 ID。这是 Azure 门户中 API 访问设置刀片中的应用程序 ID。
api_key
([]string) 将生成的 API 密钥,有关步骤的更多信息,请访问 https://dev.applicationinsights.io/documentation/Authorization/API-key-and-App-ID

应用程序见解指标配置编辑

metrics
收集信息的各种指标列表
id
([]string) 报告的指标的 ID。通常,ID 足够描述性,可以帮助识别测量的指标。可以输入指标名称列表。默认指标集包括:requests/count requests/duration requests/failed users/count``users/authenticated pageViews/count pageViews/duration customEvents/count browserTimings/processingDuration browserTimings/receiveDuration browserTimings/networkDuration browserTimings/sendDuration browserTimings/totalDuration dependencies/count dependencies/duration dependencies/failed exceptions/count exceptions/browser exceptions/server sessions/count performanceCounters/requestExecutionTime performanceCounters/requestsPerSecond performanceCounters/requestsInQueue performanceCounters/memoryAvailableBytes performanceCounters/exceptionsPerSecond performanceCounters/processCpuPercentage performanceCounters/processIOBytesPerSecond performanceCounters/processPrivateBytes performanceCounters/processorCpuPercentage availabilityResults/count availabilityResults/availabilityPercentage availabilityResults/duration
interval
(string) 检索指标值时要使用的间隔。这是一个 ISO8601 持续时间。如果省略间隔,则指标值将在整个时间跨度内聚合。如果提供间隔,则结果可能会根据用于查询的时间跨度调整间隔以获得更合适的尺寸。
aggregation
([]string) 计算指标值时要使用的聚合。要一次检索多个聚合,请用逗号分隔它们。如果没有指定聚合,则使用指标的默认聚合。
segment
([]string) 用于按维度对指标值进行细分的维度的名称。此维度必须适用于您要检索的指标。在这种情况下,指标数据将按参数中列出的维度顺序进行细分。
top
(int) 要返回的段数。此值仅在指定 segment 时有效。
order_by
(string) 用于按聚合函数和方向对段进行排序。此值仅在指定 segment 时有效。
filter
(string) 用于筛选结果的表达式。此值应为有效的 OData 筛选表达式,其中每个子句的键应适用于您要检索的指标的维度。

示例配置

metrics:
 - id: ["requests/count", "requests/failed"]
   segment: "request/name"
   aggregation: ["sum"]

字段

有关指标集中每个字段的说明,请参阅导出字段部分。

以下是由此指标集生成的示例文档

{
    "@timestamp": "2017-10-12T08:05:34.853Z",
    "azure": {
        "app_insights": {
            "end_date": "2020-10-02T13:17:45.691Z",
            "start_date": "2020-10-02T13:12:45.691Z"
        },
        "application_id": "42cb59a9-d5be-400b-a5c4-69b0a00434fdf4",
        "metrics": {
            "requests_count": {
                "sum": 0
            }
        }
    },
    "cloud": {
        "provider": "azure"
    },
    "event": {
        "dataset": "azure.app_insights",
        "duration": 115000,
        "module": "azure"
    },
    "metricset": {
        "name": "app_insights",
        "period": 10000
    },
    "service": {
        "type": "azure"
    }
}