T
Size: a a a
MM
ДК
LK
# Build the Elasticsearch client.
es = Elasticsearch(
hosts = [{'host': es_host, 'port': 443}],
http_auth = (es_username, es_password),
use_ssl = True,
verify_certs = True,
connection_class = RequestsHttpConnection
)
print("es initialized..")
index_list = curator.IndexList(es)
DS
DS
DS
s