Skip to content

Instantly share code, notes, and snippets.

@FilBot3
Last active July 4, 2018 02:43
Show Gist options
  • Save FilBot3/709f52b03a59a45f5c5c to your computer and use it in GitHub Desktop.
Save FilBot3/709f52b03a59a45f5c5c to your computer and use it in GitHub Desktop.
Zabbix SQL queries to help "fix" issues
USE zabbix_proxy;
TRUNCATE TABLE proxy_history;
DELETE FROM ids;
USE zabbix;
DELETE FROM escalations;
UPDATE alerts SET status=1 WHERE status=0;
SELECT count(*) FROM escalations;
SELECT count(*) FROM alerts WHERE status=0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment