Zabbix監控歷史資料清理
Zabbix監控執行一段時間以後,會留下大量的歷史監控資料,Zabbix資料庫一直在增大;可能會造成系統性能下降,檢視歷史資料室查詢速度緩慢。
Zabbix裡面最大的表就是history和history_uint兩個表,而且zabbix裡面的時間是使用的時間戳方式記錄,所以可以根據時間戳來刪除歷史資料
一、關閉zabbix、http服務
pkill -9 zabbix
service httpd stop
二、清理zabbix歷史資料
1、檢視資料庫目錄檔案
[[email protected] zabbix]# ls -lh | grep G
total 177G
-rw-r----- 1 mysql mysql 1.7G Dec 24 13:49 events.ibd
-rw-r----- 1 mysql mysql 60G Dec 24 13:49 history.ibd
-rw-r----- 1 mysql mysql 2.4G Dec 24 13:49 history_str.ibd
-rw-r----- 1 mysql mysql 99G Dec 24 13:49 history_uint.ibd
-rw-r----- 1 mysql mysql 4.6G Dec 24 13:02 trends.ibd
-rw-r----- 1 mysql mysql 9.5G Dec 24 13:49 trends_uint.ibd
[
生成Unix時間戳。時間定為2018年2月1日(暫定是儲存18年2月以後的監控資料)
[[email protected] zabbix]# date +%s -d "Feb 1, 2018 00:00:00" #執行此命令以後會生成一個ID
1517414400 #這是生成的ID
2、資料備份
3、 登入資料庫
[[email protected] zabbix]# mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 7
Server version: 5.5.60-MariaDB MariaDB Server
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
執行sql檢視指定日期之前的資料大小:
SELECT table_schema as `Database`,table_name AS `Table`,round(((data_length + index_length) / 1024 / 1024 / 1024), 2) `Size in MB`FROM information_schema.TABLES where CREATE_TIME < '2018-02-01 00:00:00' and table_name='history.ibd';
根據需要修改日期和查詢的表名稱(如果查詢出來的結果是0.0,需要將sql中的三個1024刪除一個,以G為單位顯示)
4、 執行以下命令,清理指定時間之前的資料、對zabbix資料庫執行sql命令
use zabbix;
delete from history where clock < 1517414400;
optimize table history;
delete from history_uint where clock < 1517414400;
optimize table history_uint;
delete from trends where clock < 1517414400;
optimize table trends;
delete from trends_uint where clock < 1517414400;
optimize table trends_uint;
注意:sql中的ID是生成Unix時間戳的ID號,需要改為自己生成的ID號
三、啟動服務
/usr/sbin/zabbix_server -c /etc/zabbix/zabbix_server.conf #zabbix server
/usr/sbin/zabbix_agentd -c /etc/zabbix/zabbix_agentd.conf #zabbix agent
service httpd start
===============分===========隔==========符============
1、使用truncate命令清空zabbix 所有監控資料
-------------------------------------------------------
truncate table history;
optimize table history;
-------------------------------------------------------
truncate table history_str;
optimize table history_str;
-------------------------------------------------------
truncate table history_uint;
optimize table history_uint;
-------------------------------------------------------
truncate table trends;
optimize table trends;
-------------------------------------------------------
truncate table trends_uint;
optimize table trends_uint;
-------------------------------------------------------
truncate table events;
optimize table events;
-------------------------------------------------------
注意:這些命令會把zabbix所有的監控資料清空,操作前注意備份資料庫
truncate是刪除了表,然後根據表結構重新建立,delete刪除的是記錄的資料沒有修改表
truncate執行刪除比較快,但是在事務處理安全性方面不如delete,如果我們執行truncat的表正在處理事務,這個命令退出並會產生錯誤資訊
一些Zabbix相關教程集合: