MozDef/cron/pruneIndexes.py

108 строки
3.5 KiB
Python
Исходник Обычный вид История

2014-04-14 03:18:06 +04:00
#!/usr/bin/env python
2014-04-14 03:18:06 +04:00
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
2019-08-02 02:41:37 +03:00
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
# Copyright (c) 2014 Mozilla Corporation
2014-12-19 03:54:25 +03:00
# set this to run as a cronjob (after backup has completed)
# to regularly remove indexes
2014-12-19 03:54:25 +03:00
# .conf file will determine what indexes are operated on
# Create a starter .conf file with backupDiscover.py
2014-04-14 03:18:06 +04:00
import sys
from datetime import datetime
from datetime import date
from datetime import timedelta
from configlib import getConfig, OptionParser
from mozdef_util.utilities.toUTC import toUTC
from mozdef_util.utilities.logger import logger
from mozdef_util.elasticsearch_client import ElasticsearchClient
2014-04-14 03:18:06 +04:00
def esPruneIndexes():
logger.debug('started')
try:
es = ElasticsearchClient((list('{0}'.format(s) for s in options.esservers)))
indices = es.get_indices()
# do the pruning
for (index, dobackup, rotation, pruning) in zip(options.indices, options.dobackup, options.rotation, options.pruning):
try:
if pruning != '0':
index_to_prune = index
if rotation == 'daily':
idate = date.strftime(toUTC(datetime.now()) - timedelta(days=int(pruning)), '%Y%m%d')
index_to_prune += '-%s' % idate
elif rotation == 'monthly':
idate = date.strftime(datetime.utcnow() - timedelta(days=31 * int(pruning)), '%Y%m')
index_to_prune += '-%s' % idate
2014-04-14 03:18:06 +04:00
if index_to_prune in indices:
2017-12-08 21:57:17 +03:00
logger.debug('Deleting index: %s' % index_to_prune)
es.delete_index(index_to_prune, True)
else:
logger.error('Error deleting index %s, index missing' % index_to_prune)
except Exception as e:
logger.error("Unhandled exception while deleting %s, terminating: %r" % (index_to_prune, e))
2014-04-14 03:18:06 +04:00
except Exception as e:
logger.error("Unhandled exception, terminating: %r" % e)
2014-04-14 03:18:06 +04:00
def initConfig():
# output our log to stdout or syslog
options.output = getConfig(
'output',
'stdout',
options.configfile
)
# syslog hostname
options.sysloghostname = getConfig(
'sysloghostname',
'localhost',
options.configfile
)
options.syslogport = getConfig(
'syslogport',
514,
options.configfile
)
2014-04-14 03:18:06 +04:00
options.esservers = list(getConfig(
'esservers',
'http://localhost:9200',
options.configfile).split(',')
)
options.indices = list(getConfig(
'backup_indices',
'events,alerts,.kibana',
options.configfile).split(',')
)
options.dobackup = list(getConfig(
'backup_dobackup',
'1,1,1',
options.configfile).split(',')
)
options.rotation = list(getConfig(
'backup_rotation',
'daily,monthly,none',
options.configfile).split(',')
)
options.pruning = list(getConfig(
'backup_pruning',
'20,0,0',
options.configfile).split(',')
)
2014-04-14 03:18:06 +04:00
2014-04-14 03:18:06 +04:00
if __name__ == '__main__':
parser = OptionParser()
parser.add_option("-c",
dest='configfile',
default=sys.argv[0].replace('.py', '.conf'),
2014-04-14 03:18:06 +04:00
help="configuration file to use")
(options, args) = parser.parse_args()
initConfig()
esPruneIndexes()