Reputation: 549
I want to register servers of different project on one consul server.
Do we have a method to filter consul members
on basis of their "type" or "project"? How do I segregate or filter the result?
Upvotes: 1
Views: 82
Reputation: 5672
cli
commands you can specify -http-addr
. So, for example, with default settings consul members
is the same as consul members -http-addr=http://127.0.0.1:8500
.Upvotes: 1