Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: suport for multi es instances #3109

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion elastalert/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __init__(self, conf):
"""
:arg conf: es_conn_config dictionary. Ref. :func:`~util.build_es_conn_config`
"""
super(ElasticSearchClient, self).__init__(host=conf['es_host'],
super(ElasticSearchClient, self).__init__(hosts=conf['es_host'],
port=conf['es_port'],
url_prefix=conf['es_url_prefix'],
use_ssl=conf['use_ssl'],
Expand Down
22 changes: 20 additions & 2 deletions elastalert/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,10 @@ def build_es_conn_config(conf):
parsed_conf['es_password'] = None
parsed_conf['aws_region'] = None
parsed_conf['profile'] = None
parsed_conf['es_host'] = os.environ.get('ES_HOST', conf['es_host'])
parsed_conf['es_port'] = int(os.environ.get('ES_PORT', conf['es_port']))
es_host = os.environ.get('ES_HOST', conf['es_host'])
es_port = int(os.environ.get('ES_PORT', conf['es_port']))
parsed_conf['es_host'] = parse_host(es_host, es_port)
parsed_conf['es_port'] = es_port
parsed_conf['es_url_prefix'] = ''
parsed_conf['es_conn_timeout'] = conf.get('es_conn_timeout', 20)
parsed_conf['send_get_body_as'] = conf.get('es_send_get_body_as', 'GET')
Expand Down Expand Up @@ -460,3 +462,19 @@ def should_scrolling_continue(rule_conf):
stop_the_scroll = 0 < max_scrolling <= rule_conf.get('scrolling_cycle')

return not stop_the_scroll

def parse_host(host, port=9200):
"""
Convet host str like "host1:port1, host2:port2" to list

:param host str: hostnames (separated with comma ) or single host name
:param port: default to 9200
:return: list of hosts
"""
if "," in host:
host_list = host.split(",")
host_list = [x.strip() for x in host_list]
return host_list
else:
return ["{host}:{port}".format(host=host, port=port)]

20 changes: 19 additions & 1 deletion tests/util_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import pytest
from dateutil.parser import parse as dt

from elastalert.util import add_raw_postfix
from elastalert.util import add_raw_postfix, parse_host, build_es_conn_config
from elastalert.util import format_index
from elastalert.util import lookup_es_key
from elastalert.util import parse_deadline
Expand Down Expand Up @@ -228,3 +228,21 @@ def test_should_scrolling_continue():
assert should_scrolling_continue(rule_before_first_run) is True
assert should_scrolling_continue(rule_before_max_scrolling) is True
assert should_scrolling_continue(rule_over_max_scrolling) is False


def test_parse_host():
assert parse_host("localhost", port=9200) == ["localhost:9200"]
assert parse_host("host1:9200, host2:9200, host3:9300") ==["host1:9200",
"host2:9200",
"host3:9300"]

def test_build_cofig_for_multi():
assert build_es_conn_config({
"es_host":"localhost",
"es_port": 9200
})['es_host'] == ['localhost:9200']

assert build_es_conn_config({
"es_host": "host1:9200, host2:9200, host3:9300",
"es_port": 9200
})['es_host'] == ["host1:9200","host2:9200","host3:9300"]