System diskio 度量集

编辑

System diskio 度量集提供从操作系统收集的磁盘 IO 指标。系统上每个挂载的磁盘都会创建一个事件。

此度量集适用于

  • Linux
  • macOS(需要 10.10 或更高版本)
  • Windows
  • FreeBSD (amd64)

配置

编辑
diskio.include_devices

启用 diskio 度量集后,可以使用 diskio.include_devices 选项定义一个设备名称列表,以预先过滤要报告的设备。过滤器仅匹配完全匹配项。如果未设置或给出 [] 空数组,则返回所有磁盘设备

以下示例配置返回与 include_devices 匹配的设备的指标

metricbeat.modules:
- module: system
  metricsets: ["diskio"]
  diskio.include_devices: ["sda", "sda1"]

字段

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

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

{
    "@timestamp": "2017-10-12T08:05:34.853Z",
    "event": {
        "dataset": "system.diskio",
        "duration": 115000,
        "module": "system"
    },
    "metricset": {
        "name": "diskio",
        "period": 10000
    },
    "service": {
        "type": "system"
    },
    "system": {
        "diskio": {
            "io": {
                "ops": 0,
                "time": 545105
            },
            "name": "sda",
            "read": {
                "bytes": 4242313728,
                "count": 181371,
                "time": 2744086
            },
            "write": {
                "bytes": 9611375104,
                "count": 352596,
                "time": 10641320
            }
        }
    }
}