Comments on: Monitoring Microservices With Spring Boot Admin https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/ Java, Spring, Kotlin, microservices, Kubernetes, containers Fri, 11 Sep 2020 09:24:18 +0000 hourly 1 https://wordpress.org/?v=6.9.1 By: Chaos Monkey for Spring Boot Microservices – Piotr's TechBlog https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/#comment-369 Wed, 23 May 2018 14:26:30 +0000 https://piotrminkowski.wordpress.com/?p=4241#comment-369 […] this library in one of my previous articles Microservices API Documentation with Swagger2 (https://piotrminkowski.wordpress.com/2017/06/26/monitoring-microservices-with-spring-boot-admin). Today I’m going to show you how to include Codecentric’s Chaos Monkey in your Spring […]

]]>
By: Yiyux https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/#comment-368 Wed, 21 Feb 2018 20:43:19 +0000 https://piotrminkowski.wordpress.com/?p=4241#comment-368 Git repo here https://github.com/piomin/sample-spring-microservices/tree/admin

]]>
By: Nivedhan https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/#comment-367 Wed, 08 Nov 2017 21:21:19 +0000 https://piotrminkowski.wordpress.com/?p=4241#comment-367 In reply to Piotr Mińkowski.

ok , do you have any sample application atleast with git-hub that i could refer?? Would appreciate it if you would

]]>
By: Piotr Mińkowski https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/#comment-366 Wed, 08 Nov 2017 20:47:08 +0000 https://piotrminkowski.wordpress.com/?p=4241#comment-366 In reply to Nivedhan.

Well, spring boot admin fetches data from service discovery, right? So, you should see

]]>
By: Nivedhan https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/#comment-365 Tue, 07 Nov 2017 22:28:42 +0000 https://piotrminkowski.wordpress.com/?p=4241#comment-365 My question was were you able to see any applications registered on spring boot admin which were over https??

]]>
By: Nivedhan https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/#comment-364 Tue, 07 Nov 2017 22:09:34 +0000 https://piotrminkowski.wordpress.com/?p=4241#comment-364 In reply to Piotr Mińkowski.

thanks , do you have any sample application over https??

]]>
By: Piotr Mińkowski https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/#comment-363 Tue, 07 Nov 2017 14:32:01 +0000 https://piotrminkowski.wordpress.com/?p=4241#comment-363 In reply to Nivedhan.

Yes, I’m able. First you need to generate self-signed certificate, for example using keytool.
And then enable https for Spring Boot app and for Eureka client.

server:
port: ${PORT:8081}
ssl:
key-store: classpath:keystore.p12
key-store-password: 123456
keyStoreType: PKCS12
keyAlias: client

eureka:
client:
serviceUrl:
defaultZone: ${EUREKA_URL:http://localhost:8761/eureka/}
instance:
securePortEnabled: true
nonSecurePortEnabled: false
statusPageUrl: https://${eureka.hostname}:${server.port}/info
healthCheckUrl: https://${eureka.hostname}:${server.port}/health
homePageUrl: https://${eureka.hostname}:${server.port}/

You can take a look on that example https://github.com/piomin/sample-spring-cloud-netflix.git, branch secure_client.

]]>
By: Nivedhan https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/#comment-362 Mon, 06 Nov 2017 20:43:04 +0000 https://piotrminkowski.wordpress.com/?p=4241#comment-362 Hey there , thats some nice info , i had a question if you were able to register any https applications running ?? let it be eureka or consul?? Would be great if you could help me out in this.Thanks

]]>
By: koneruvijay https://piotrminkowski.com/2017/06/26/monitoring-microservices-with-spring-boot-admin/#comment-361 Mon, 02 Oct 2017 17:20:30 +0000 https://piotrminkowski.wordpress.com/?p=4241#comment-361 Did you try with Spring Boot Admin with Consul hosted on Https?

]]>