IIS webserver 度量集edit

这是 iis 模块的 webserver 度量集。

此度量集允许用户从 IIS 中检索相关指标。

指标值分为几个组

The process 对象包含 System/Process 计数器,例如 IIS 工作进程的整体服务器和 CPU 使用率以及内存(IIS 工作进程当前使用的内存和可用内存)。

The network 对象包含 IIS 性能计数器,例如:Web 服务:每秒接收的字节数(有助于跟踪以识别潜在的流量峰值)、Web 服务:每秒发送的字节数(有助于跟踪以识别潜在的流量峰值)、Web 服务:当前连接数(通过他们应用程序的经验,用户可以识别此值的正常值)等。

The cache 对象包含来自用户模式缓存和输出缓存的指标。

The asp_netasp_net_application 包含与 asp.net 相关的性能计数器值。

仪表盘edit

metricbeat iis webserver overview
metricbeat iis webserver process

这是一个默认度量集。如果主机模块未配置,则默认情况下会启用此度量集。

字段

有关度量集中的每个字段的描述,请参见 导出字段 部分。

以下是此度量集生成的示例文档

{
    "@timestamp": "2017-10-12T08:05:34.853Z",
    "event": {
        "dataset": "iis.webserver",
        "duration": 115000,
        "module": "iis"
    },
    "iis": {
        "webserver": {
            "asp_net": {
                "application_restarts": 0,
                "request_wait_time": 0
            },
            "asp_net_application": {
                "pipeline_instance_count": 3,
                "requests_executing": 0,
                "requests_in_application_queue": 0
            },
            "cache": {
                "current_file_cache_memory_usage": 696,
                "current_files_cached": 2,
                "current_uris_cached": 0,
                "file_cache_hits": 1,
                "file_cache_misses": 7,
                "maximum_file_cache_memory_usage": 696,
                "output_cache_current_items": 0,
                "output_cache_current_memory_usage": 0,
                "output_cache_total_hits": 0,
                "output_cache_total_misses": 8,
                "total_files_cached": 2,
                "total_uris_cached": 1,
                "uri_cache_hits": 0,
                "uri_cache_misses": 8
            },
            "network": {
                "current_anonymous_users": 0,
                "current_connections": 0,
                "current_nonanonymous_users": 0,
                "maximum_connections": 3,
                "service_uptime": 343447,
                "total_anonymous_users": 6,
                "total_bytes_received": 2715,
                "total_bytes_sent": 89432,
                "total_connection_attempts": 4,
                "total_delete_requests": 0,
                "total_get_requests": 6,
                "total_nonanonymous_users": 0,
                "total_post_requests": 0
            }
        }
    },
    "metricset": {
        "name": "webserver",
        "period": 10000
    },
    "service": {
        "type": "iis"
    }
}