We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba52512 commit 88efb49Copy full SHA for 88efb49
health.go
@@ -40,6 +40,7 @@ type HealthWorkerLicenseData struct {
40
41
type HealthHub struct {
42
Workers []HealthHubWorker `json:"workers"`
43
+ Nodes []HealthHubNode `json:"nodes"`
44
NodeName string `json:"nodeName"`
45
ClusterID string `json:"clusterID"`
46
Version string `json:"version"`
@@ -56,3 +57,8 @@ type HealthHubWorker struct {
56
57
Addr string `json:"addr"`
58
PodName string `json:"podName"`
59
}
60
+
61
+type HealthHubNode struct {
62
+ NodeName string `json:"nodeName"`
63
+ PodCount int `json:"podCount"`
64
+}
0 commit comments