@@ -213,6 +212,14 @@
CWS Database Port |
${dbPort} |
+
+ CWS Elasticsearch URL |
+ ${esProtocol}://${esHost}:${esPort} |
+
+
+ CWS Elasticsearch Index Prefix |
+ ${esIndexPrefix} |
+
CWS Authentication Scheme |
${authScheme} |
@@ -252,7 +259,7 @@
Java Version |
${javaVersion} |
-
+
Java Home Path |
${javaHome} |
@@ -263,14 +270,14 @@
-
+
Database Disk Usage
${databaseSize}
-
+
System
-
+
Name |
@@ -307,10 +314,10 @@
Elasticsearch Server
-
+
-
+
Hostname |
127.0.0.1 |
diff --git a/install/cws-ui/cws-ui.properties b/install/cws-ui/cws-ui.properties
index d2f1c44c..d5bed0df 100755
--- a/install/cws-ui/cws-ui.properties
+++ b/install/cws-ui/cws-ui.properties
@@ -18,7 +18,7 @@ cws.db.password=__CWS_DB_PASSWORD__
cws.elasticsearch.protocol=__CWS_ES_PROTOCOL__
cws.elasticsearch.hostname=__CWS_ES_HOST__
-cws.elasticsearch.index=__CWS_ES_INDEX_NAME__
+cws.elasticsearch.index.prefix=__CWS_ES_INDEX_PREFIX__
cws.elasticsearch.port=__CWS_ES_PORT__
cws.elasticsearch.use.auth=__CWS_ES_USE_AUTH__
cws.elasticsearch.username=__CWS_ES_USERNAME__
diff --git a/install/installerPresets.properties b/install/installerPresets.properties
index 1c4fdf61..978ce267 100644
--- a/install/installerPresets.properties
+++ b/install/installerPresets.properties
@@ -15,7 +15,7 @@ default_cws_token_expiration_hours=24
default_smtp_hostname=smtp.localhost
default_smtp_port=25
default_elasticsearch_use_auth=n
-default_elasticsearch_index_name=cws
+default_elasticsearch_index_prefix=cws-index
default_elasticsearch_port=9200
default_user_provided_logstash=n
default_history_level=full
diff --git a/install/logging/cws-logstash.conf b/install/logging/cws-logstash.conf
index 0a805a25..7c701236 100644
--- a/install/logging/cws-logstash.conf
+++ b/install/logging/cws-logstash.conf
@@ -57,7 +57,7 @@ output {
elasticsearch {
hosts => ["__CWS_ES_PROTOCOL__://__CWS_ES_HOST__:__CWS_ES_PORT__"]
ilm_enabled => false
- index => "__CWS_ES_INDEX_NAME__-logstash-%{+YYYY.MM.dd}"
+ index => "__CWS_ES_INDEX_PREFIX__-logstash-%{+YYYY.MM.dd}"
ssl => __LOGSTASH_ES_USE_SSL__
__LOGSTASH_ES_USERNAME__
__LOGSTASH_ES_PASSWORD__
diff --git a/utils.sh b/utils.sh
index 26cbe019..d7e7480b 100755
--- a/utils.sh
+++ b/utils.sh
@@ -191,7 +191,7 @@ function auto_conf_data () {
DB_PASS=${9}
ES_PROTOCOL=${10}
ES_HOST=${11}
- ES_INDEX_NAME=${12}
+ ES_INDEX_PREFIX=${12}
ES_PORT=${13}
ES_USE_AUTH=${14}
ES_USERNAME=${15}
@@ -282,7 +282,7 @@ function auto_conf_data () {
database_password=${DB_PASS}
elasticsearch_protocol=${ES_PROTOCOL}
elasticsearch_host=${ES_HOST}
- elasticsearch_index_name=${ES_INDEX_NAME}
+ elasticsearch_index_prefix=${ES_INDEX_PREFIX}
elasticsearch_port=${ES_PORT}
elasticsearch_use_auth=${ES_USE_AUTH}
elasticsearch_username=${ES_USERNAME}