lepus監控redis執行python check_redis.py報錯


python check_redis.py  python

2017-08-02 11:00:58 [INFO] check redis controller started.  mysql

./include/functions.py:45: Warning: Out of range value for column 'rdb_changes_since_last_save' at row 1  redis

  curs.execute(sql,param)  sql

./include/functions.py:45: Warning: Out of range value for column 'rdb_changes_since_last_save' at row 1  ide

  curs.execute(sql,param)  spa

./include/functions.py:45: Warning: Out of range value for column 'rdb_changes_since_last_save' at row 1  it

  curs.execute(sql,param)  io

./include/functions.py:45: Warning: Out of range value for column 'keyspace_hits' at row 1  table

2017-09-12 09:54:00 [INFO] check redis controller started.ast

se "encoding" instead

  '"charset" is deprecated. Use "encoding" instead'))

mysql execute: (1264, "Out of range value for column 'rdb_changes_since_last_save' at row 1")

mysql execute: (1264, "Out of range value for column 'rdb_changes_since_last_save' at row 1")


修改lepus庫的的redis表字段結構解決:

mysql> alter table redis_status modify rdb_changes_since_last_save int(10);  

Query OK, 15 rows affected (0.01 sec)  

Records: 15  Duplicates: 0  Warnings: 0  

  

mysql> alter table redis_status modify keyspace_hits bigint(4);  

Query OK, 15 rows affected (0.02 sec)  

Records: 15  Duplicates: 0  Warnings: 0  

mysql> alter table redis_status_history modify keyspace_hits bigint(4);  

Query OK, 187 rows affected (0.02 sec)  

Records: 187  Duplicates: 0  Warnings: 0  

  

mysql> alter table redis_status_history modify rdb_changes_since_last_save int(10);  

Query OK, 187 rows affected (0.02 sec)  

Records: 187  Duplicates: 0  Warnings: 0 


[root@cacti lepus]# python check_redis.py

2017-09-13 12:01:38 [INFO] check redis controller started.

2017-09-13 12:01:39 [INFO] check redis controller finished.

相關文章
相關標籤/搜索