This commit is contained in:
Brandon Myers 2017-04-26 16:36:04 -05:00
Родитель aa497395a7
Коммит 48e008346e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8AA79AD83045BBC7
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -124,7 +124,11 @@ class RoleManager:
def esConnect():
'''open or re-open a connection to elastic search'''
return ElasticsearchClient((list('{0}'.format(s) for s in options.esservers)), options.esbulksize)
return ElasticsearchClient(
(list('{0}'.format(s) for s in options.esservers)),
bulk_amount=options.esbulksize,
bulk_refresh_time=options.esbulktimeout
)
class taskConsumer(object):
@ -201,7 +205,7 @@ class taskConsumer(object):
message['eventSource']
)
message['summary'] = summary_str
es.save_event(body=message, doc_type='cloudtrail')
es.save_event(body=message, doc_type='cloudtrail', bulk=True)
def registerPlugins():