-
Notifications
You must be signed in to change notification settings - Fork 160
Open
Labels
Description
Short description
If app version is being used (e.g. to guide shard handovers in rolling deploys), it can be useful to inspect this information (e.g. in deployment tooling, or just for debugging/observability).
For a given cluster member, the version information is in member.appVersion.version
.
Details
Could be added to the ClusterMember
object
Line 15 in 153f971
final case class ClusterMember(node: String, nodeUid: String, status: String, roles: Set[String]) |
Line 11 in 153f971
ClusterMember(s"${m.address}", s"${m.uniqueAddress.longUid}", s"${m.status}", m.roles) |
patriknw