본문 바로가기
Zabbix

[Zabbix] 디스크 모니터링 하는 방법

by freesunny 2019. 9. 10.

Zabbix Agent 설치 후 아래의 명령을 실행한다.

# diskstats user parameters config
sudo mkdir -p /etc/zabbix/zabbix_agentd.d/
sudo wget https://raw.githubusercontent.com/grundic/zabbix-disk-performance/master/userparameter_diskstats.conf -O /etc/zabbix/zabbix_agentd.d/userparameter_diskstats.conf

# low level discovery script
sudo wget https://raw.githubusercontent.com/grundic/zabbix-disk-performance/master/lld-disks.py -O /usr/local/bin/lld-disks.py
sudo chmod +x /usr/local/bin/lld-disks.py

 

Zabbix Server 에는 아래의 Template 를 Import 시켜준다.

#Template
https://share.zabbix.com/storage-devices/linux-disk-performance-monitoring


Ubuntu 18.04 일 경우 python 을 설치하여야 한다. 
apt install python -y