我正在使用 gravitee 版本 3.6.0。我在我的机器上创建了 mongo db cluster 和 elstic cluster。我需要在 gravitee.yml 中配置它。但是 gravitee 没有选项可以指定 elasticsearch 和 mongodb 的集群名称。下面是我当前的配置。
management:
type: mongodb
mongodb:
servers:
- host: 127.0.0.1
port: 27017
- host: 127.0.0.1
port: 27018
- host: 127.0.0.1
port: 27019
dbname: ${ds.mongodb.dbname}
elasticsearch:
enabled: true # Is the reporter enabled or not (default to true)
endpoints:
- http://127.0.0.1:9200
- http://127.0.0.1:9201
- http://127.0.0.1:9202
是否必须指定集群名称?
任何帮助将不胜感激!!!!