show virtigod for now

This commit is contained in:
Jeff Carr 2025-03-21 23:43:40 -05:00
parent b5925dcdce
commit fc82e095ef
3 changed files with 35 additions and 5 deletions

22
exit.go Normal file
View File

@ -0,0 +1,22 @@
// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
// Use of this source code is governed by the GPL 3.0
package main
import (
"os"
"go.wit.com/log"
)
func okExit(thing string) {
if thing != "" {
log.Info("zookeeper exit:", thing, "ok")
}
os.Exit(0)
}
func badExit(err error) {
log.Info("zookeeper failed: ", err)
os.Exit(-1)
}

11
http.go
View File

@ -86,12 +86,12 @@ func okHandler(w http.ResponseWriter, r *http.Request) {
var bad int
for m := range me.machines.IterAll() {
count += 1
if m.SinceLastUpdate() > 10*time.Minute {
// skip machines that have not been updated in the last 10 minutes
log.Info("ignoring old machine", m.Hostname)
continue
}
if findVersion(m, "zood") != me.zood.version {
if m.SinceLastUpdate() > 10*time.Minute {
// skip machines that have not been updated in the last 10 minutes
log.Info("ignoring old machine", m.Hostname)
continue
}
bad += 1
}
}
@ -116,5 +116,6 @@ func startHTTP() {
err := http.ListenAndServe(p, nil)
if err != nil {
log.Println("Error starting server:", err)
badExit(err)
}
}

View File

@ -132,6 +132,13 @@ func AddMachinesPB(tbox *gui.Node, pb *zoopb.Machines) *zoopb.MachinesTable {
t.AddStringFunc("zood", func(m *zoopb.Machine) string {
return findVersion(m, "zood")
})
t.AddStringFunc("virtigod", func(m *zoopb.Machine) string {
ver := findVersion(m, "virtigod")
if ver == "n/a" {
return ""
}
return ver
})
delf := func(m *zoopb.Machine) string {
return "delete"
}