You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--- added TurbineStreamServlet extends com.netflix.turbine.streaming.servlet.TurbineStreamServlet with below bean configured
@Bean
public ServletRegistrationBean turbineStreamServlet() {
return new ServletRegistrationBean(new TurbineStreamServlet(), "/api/turbine/stream");
}
Here I increased the instances from clould which has same domain name like 'app1.dev.welcome.com',
but not able to see spring boot registering multiple instances and trubine always shows Host:1 in admin page.
Can you please guide do we need any other configurations.
The text was updated successfully, but these errors were encountered:
I am trying to register multiple instances to spring admin server and trying to read turbine stream.
I am able to get the hystrix.stream after serving first request.
I am able to get the turbine stream with below URL:
http://localhost:8080/springadmins/api/turbine/stream?cluster=app1-dev
Below is the configuration for turbine.
config.properties - I didn't configure any properties.
---> application.properties has the below configuration.
turbine.aggregator.clusterConfig=app1-dev
turbine.instanceUrlSuffix.default=/app1/admin/hystrix.stream
turbine.instanceUrlSuffix.app1-dev=/admin/hystrix.stream
turbine.instanceUrlSuffix.app1-dev2=/admin/hystrix.stream
turbine.ConfigPropertyBasedDiscovery.default.instances=localhost,localhost:8080
turbine.ConfigPropertyBasedDiscovery.app1-dev.instances=app1.dev.welcome.com
turbine.ConfigPropertyBasedDiscovery.app1-dev2.instances=app1.dev2.welcome.com
---> application.yml file has below details:
spring.boot.admin.routes.endpoints:
env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,hystrix.stream
spring.boot.admin.turbine:
clusters: default,app1-dev
url: /api/turbine/stream
--- added TurbineStreamServlet extends com.netflix.turbine.streaming.servlet.TurbineStreamServlet with below bean configured
Here I increased the instances from clould which has same domain name like 'app1.dev.welcome.com',
but not able to see spring boot registering multiple instances and trubine always shows Host:1 in admin page.
Can you please guide do we need any other configurations.
The text was updated successfully, but these errors were encountered: