Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api.go
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,7 @@ type TcpReader interface {
GetEmitter() Emitter
GetIsClosed() bool
GetCapture() *Capture
GetLayer4() string
Rewind()
Lock()
Unlock()
Expand Down
6 changes: 6 additions & 0 deletions health.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ type HealthWorkerLicenseData struct {

type HealthHub struct {
Workers []HealthHubWorker `json:"workers"`
Nodes []HealthHubNode `json:"nodes"`
NodeName string `json:"nodeName"`
ClusterID string `json:"clusterID"`
Version string `json:"version"`
Expand All @@ -54,3 +55,8 @@ type HealthHubWorker struct {
Addr string `json:"addr"`
PodName string `json:"podName"`
}

type HealthHubNode struct {
NodeName string `json:"nodeName"`
PodCount int `json:"podCount"`
}