forked from gutocarvalho/zabbix-manual-housekeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zbxhs.sh
50 lines (44 loc) · 1.92 KB
/
zbxhs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
# Manual housekeeping for mediums and large installations
# running with Mysql
#
# Based on Jalexandre0 pgsql script => https://github.com/jalexandre0/zabbix/blob/master/scripts/housekeeping.sh
# Forked and Modified by Guto Carvalho on 2013-07-20 [email protected]
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#Setting atual date
echo $(date +%d/%m/%Y-%H:%M)
# Connection settings
ZBX_CONN="$(which mysql)"
read -p "Enter Database name" ZBX_DATA
read -p "Enter Database user" ZBX_USER
read -p "Enter Database password" ZBX_PASS
read -p "Enter Database host" ZBX_HOST
#One year and month ago in Unix Timestamp
ONE_YEAR_AGO=$(expr `date +%s` - 31536000)
ONE_MONTH_AGO=$(expr `date +%s` - 2678400)
#Queries for one month ago
MONTH_TABLES="history history_uint history_str history_text history_log"
for table in $MONTH_TABLES;do
echo "Deleting from table $table "
DELETES=$( $ZBX_CONN -u $ZBX_USER $ZBX_DATA -p$ZBX_PASS -h $ZBX_HOST -e "delete from $table where clock < $ONE_MONTH_AGO ;" )
echo " $DELETES from table $table "
done
#Queries for one year ago
YEAR_TABLES="alerts trends trends_uint"
for table in $YEAR_TABLES;do
echo "Deleting from table $table "
DELETES=$( $ZBX_CONN -u $ZBX_USER $ZBX_DATA -p$ZBX_PASS -h $ZBX_HOST -e "delete from $table where clock < $ONE_YEAR_AGO ;" )
echo "$DELETES from table $table"
done