Analyze the problem of Zabbix 5.0 disk automatic discovery and read-write monitoring

Analyze the problem of Zabbix 5.0 disk automatic discovery and read-write monitoring

Automatically discover disks

Configuration Key Values

Note: This key value is only supported on Linux platforms.

This discovery key returns two macros:

  • {#DEVNAME} : device name
  • {#DEVTYPE} : Device type

For example:

[ 
   { 
      "{#DEVNAME}":"loop1",
      "{#DEVTYPE}":"disk"
   },
   { 
      "{#DEVNAME}":"dm-0",
      "{#DEVTYPE}":"disk"
   },
   { 
      "{#DEVNAME}":"sda",
      "{#DEVTYPE}":"disk"
   },
   { 
      "{#DEVNAME}":"sda1",
      "{#DEVTYPE}":"partition"
   }
]

Configuring Filters

Used to filter device type and device name, usually the disk name is sd* or vd* .

Test verification

Add disk read and write rate monitoring

Disk read and write key values:

vfs.dev.read[<device>,<type>,<mode>]
vfs.dev.write[<device>,<type>,<mode>]

illustrate:

device - disk device (default is all )

type - possible values: sectors , operations , bytes , sps , ops , bps
Because the default value varies between operating systems, this parameter must be specified.
sps , ops , bps represent: sectors, operations, bytes per second, respectively.

mode - possible values: avg1 (1 minute average, default), avg5 , avg15 .
This parameter supports only these類型: sps, ops, bps.

Note: The default value of the "type" parameter is different for different operating systems.

Therefore, the monitoring key value of disk read and write can be configured as:

  • Read: vfs.dev.read[{#DEVNAME},sps]
  • Write: vfs.dev.write[{#DEVNAME},sps]

The {#DEVNAME} macro is allowed when the key value is vfs.dev.read[] and vfs.dev.write[] .

The above is the details of Zabbix 5.0: automatic disk discovery and read-write monitoring. For more information about Zabbix disk discovery and read-write monitoring, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Distributed monitoring system Zabbix 3.2 adds automatic discovery of disk IO and registration monitoring (recommended)
  • Zabbix monitoring solution - the latest official version 4.4 [recommended]
  • How to obtain information from ZabbixAPI and implement Zabbix-API monitoring in Python
  • How to use zabbix to monitor mongodb
  • Basic tutorial on installing and configuring Zabbix to monitor MySQL
  • How to set up Zabbix monitoring switch

<<:  How to use border-image to implement text bubble border sample code

>>:  What qualities should a good advertisement have?

Recommend

Fixed a bug caused by scrollbar occupying space

background This bug was caused by滾動條占據空間. I check...

Summary of related functions for Mysql query JSON results

The JSON format field is a new attribute added in...

Detailed tutorial on installing MySQL offline on CentOS7

1. Delete the original mariadb, otherwise mysql c...

How to convert JavaScript array into tree structure

1. Demand The backend provides such data for the ...

Solution to the problem of repeated pop-up of Element's Message pop-up window

Table of contents 1. Use 2. Solve the problem of ...

Detailed explanation of Linux DMA interface knowledge points

1. Two types of DMA mapping 1.1. Consistent DMA m...

Solution for adding iptables firewall policy to MySQL service

If your MySQL database is installed on a centos7 ...

MySql inserts data successfully but reports [Err] 1055 error solution

1. Question: I have been doing insert operations ...

MySQL multi-instance configuration application scenario

Table of contents MySQL multiple instances Multi-...

Introduction to the properties of B-Tree

B-tree is a common data structure. Along with him...

How to use multi-core CPU to speed up your Linux commands (GNU Parallel)

Have you ever had the need to compute a very larg...

MySQL 8.0.15 winx64 installation and configuration method graphic tutorial

This article shares the installation and configur...

A simple way to call desktop exe programs on a web page

This article mainly introduces how to call desktop...