Skip to content

Commit 4004a46

Browse files
authored
Cluster Snapshot is missing column for members (#118)
1 parent 1a647f1 commit 4004a46

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

coherence-visualvm-plugin/src/main/java/com/oracle/coherence/plugin/visualvm/panel/CoherenceClusterSnapshotPanel.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2024 Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2025 Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -333,6 +333,7 @@ private String membersOverview()
333333
sb.append("<tr>")
334334
.append(td(entry.getValue().getColumn(MemberData.NODE_ID).toString()))
335335
.append(td(entry.getValue().getColumn(MemberData.MACHINE_NAME).toString()))
336+
.append(td(entry.getValue().getColumn(MemberData.UNICAST_ADDRESS).toString()))
336337
.append(td(entry.getValue().getColumn(MemberData.PORT).toString()))
337338
.append(td(entry.getValue().getColumn(MemberData.ROLE_NAME).toString()))
338339
.append(td(getPublisherValue(entry.getValue().getColumn(MemberData.PUBLISHER_SUCCESS).toString())))

0 commit comments

Comments
 (0)