Changing the instance identificator 

Instances registered on Eureka are grouped by name, but each of them must send a unique ID, on the basis of which, the server is able to recognize it. Maybe you have noticed that instanceId is displayed in the dashboard for every service's group in the Status column. Spring Cloud Eureka automatically generates that number and it is equal to the combination of the following fields:

${spring.cloud.client.hostname}:${spring.application.name}:${spring.application.instance_id:${server.port}}}. 

This identificator may be easily overridden with the eureka.instance.instanceId property. For testing purposes, let's launch some instances of the client application with the following configuration settings and the  ...

Get Mastering Spring Cloud now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.