Replace OpenSearch with Elasticsearch

This commit is contained in:
2022-11-21 07:20:29 +00:00
parent 7702e04286
commit 61f93390d9
8 changed files with 28 additions and 28 deletions

View File

@@ -1,9 +1,9 @@
# OpenSearch settings
OPENSEARCH_URL = "10.1.0.1"
OPENSEARCH_PORT = 9200
OPENSEARCH_TLS = True
OPENSEARCH_USERNAME = "admin"
OPENSEARCH_PASSWORD = "secret"
# Elasticsearch settings
ELASTICSEARCH_URL = "10.1.0.1"
ELASTICSEARCH_PORT = 9200
ELASTICSEARCH_TLS = True
ELASTICSEARCH_USERNAME = "admin"
ELASTICSEARCH_PASSWORD = "secret"
# Manticore settings
MANTICORE_URL = "http://example-db-1:9308"
@@ -58,7 +58,7 @@ DRILLDOWN_DEFAULT_PARAMS = {
# # Delay results by this many days
# DELAY_DURATION = 10
OPENSEARCH_BLACKLISTED = {
ELASTICSEARCH_BLACKLISTED = {
}