系统 diskio 指标集

编辑

系统 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
            }
        }
    }
}