Committed by
Gerrit Code Review
Change summary command output: cluster -> SCC(s)
Change-Id: Iccc9cf002b9ae21a423de59869b18dcda1e46665
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -46,7 +46,7 @@ public class SummaryCommand extends AbstractShellCommand { | ... | @@ -46,7 +46,7 @@ public class SummaryCommand extends AbstractShellCommand { |
46 | .put("devices", topology.deviceCount()) | 46 | .put("devices", topology.deviceCount()) |
47 | .put("links", topology.linkCount()) | 47 | .put("links", topology.linkCount()) |
48 | .put("hosts", get(HostService.class).getHostCount()) | 48 | .put("hosts", get(HostService.class).getHostCount()) |
49 | - .put("clusters", topology.clusterCount()) | 49 | + .put("SCC(s)", topology.clusterCount()) |
50 | .put("paths", topology.pathCount()) | 50 | .put("paths", topology.pathCount()) |
51 | .put("flows", get(FlowRuleService.class).getFlowRuleCount()) | 51 | .put("flows", get(FlowRuleService.class).getFlowRuleCount()) |
52 | .put("intents", get(IntentService.class).getIntentCount())); | 52 | .put("intents", get(IntentService.class).getIntentCount())); |
... | @@ -54,7 +54,7 @@ public class SummaryCommand extends AbstractShellCommand { | ... | @@ -54,7 +54,7 @@ public class SummaryCommand extends AbstractShellCommand { |
54 | print("node=%s, version=%s", | 54 | print("node=%s, version=%s", |
55 | get(ClusterService.class).getLocalNode().ip(), | 55 | get(ClusterService.class).getLocalNode().ip(), |
56 | get(CoreService.class).version().toString()); | 56 | get(CoreService.class).version().toString()); |
57 | - print("nodes=%d, devices=%d, links=%d, hosts=%d, clusters=%s, paths=%d, flows=%d, intents=%d", | 57 | + print("nodes=%d, devices=%d, links=%d, hosts=%d, SCC(s)=%s, paths=%d, flows=%d, intents=%d", |
58 | get(ClusterService.class).getNodes().size(), | 58 | get(ClusterService.class).getNodes().size(), |
59 | get(DeviceService.class).getDeviceCount(), | 59 | get(DeviceService.class).getDeviceCount(), |
60 | get(LinkService.class).getLinkCount(), | 60 | get(LinkService.class).getLinkCount(), | ... | ... |
-
Please register or login to post a comment