Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(load-balancer): Add health status to list output #542

Merged
merged 2 commits into from
Sep 20, 2023
Merged
Changes from 1 commit
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
75 changes: 74 additions & 1 deletion internal/cmd/loadbalancer/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
var ListCmd = base.ListCmd{
ResourceNamePlural: "Load Balancer",

DefaultColumns: []string{"id", "name", "ipv4", "ipv6", "type", "location", "network_zone", "age"},
DefaultColumns: []string{"id", "name", "health", "ipv4", "ipv6", "type", "location", "network_zone", "age"},
Fetch: func(ctx context.Context, client hcapi2.Client, cmd *cobra.Command, listOpts hcloud.ListOpts, sorts []string) ([]interface{}, error) {
opts := hcloud.LoadBalancerListOpts{ListOpts: listOpts}
if len(sorts) > 0 {
Expand Down Expand Up @@ -75,6 +75,10 @@ var ListCmd = base.ListCmd{
AddFieldFn("age", output.FieldFn(func(obj interface{}) string {
loadBalancer := obj.(*hcloud.LoadBalancer)
return util.Age(loadBalancer.Created, time.Now())
})).
AddFieldFn("health", output.FieldFn(func(obj interface{}) string {
loadBalancer := obj.(*hcloud.LoadBalancer)
return loadBalancerHealth(loadBalancer)
}))
},

Expand Down Expand Up @@ -167,3 +171,72 @@ var ListCmd = base.ListCmd{
return loadBalancerSchemas
},
}

func loadBalancerHealth(l *hcloud.LoadBalancer) string {
healthyCount := 0
unhealthyCount := 0
unknownCount := 0

for _, lbTarget := range l.Targets {
switch loadBalancerTargetHealth(&lbTarget) {
case string(hcloud.LoadBalancerTargetHealthStatusStatusHealthy):
healthyCount++

case string(hcloud.LoadBalancerTargetHealthStatusStatusUnhealthy):
unhealthyCount++

case "mixed":
return "mixed"

default:
unknownCount++
}
}

switch len(l.Targets) {
case healthyCount:
return string(hcloud.LoadBalancerTargetHealthStatusStatusHealthy)

case unhealthyCount:
return string(hcloud.LoadBalancerTargetHealthStatusStatusUnhealthy)

case unknownCount:
return string(hcloud.LoadBalancerTargetHealthStatusStatusUnknown)

default:
return "mixed"
}
}

func loadBalancerTargetHealth(t *hcloud.LoadBalancerTarget) string {
healthyCount := 0
unhealthyCount := 0
unknownCount := 0

for _, targetHealth := range t.HealthStatus {
switch targetHealth.Status {
case hcloud.LoadBalancerTargetHealthStatusStatusHealthy:
healthyCount++

case hcloud.LoadBalancerTargetHealthStatusStatusUnhealthy:
unhealthyCount++

default:
unknownCount++
}
}

switch len(t.HealthStatus) {
case healthyCount:
return string(hcloud.LoadBalancerTargetHealthStatusStatusHealthy)

case unhealthyCount:
return string(hcloud.LoadBalancerTargetHealthStatusStatusUnhealthy)

case unknownCount:
return string(hcloud.LoadBalancerTargetHealthStatusStatusUnknown)

default:
return "mixed"
}
}
cedi marked this conversation as resolved.
Show resolved Hide resolved
Loading