show virtigod for now
This commit is contained in:
parent
b5925dcdce
commit
fc82e095ef
|
@ -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
11
http.go
|
@ -86,12 +86,12 @@ func okHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
var bad int
|
var bad int
|
||||||
for m := range me.machines.IterAll() {
|
for m := range me.machines.IterAll() {
|
||||||
count += 1
|
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 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
|
bad += 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -116,5 +116,6 @@ func startHTTP() {
|
||||||
err := http.ListenAndServe(p, nil)
|
err := http.ListenAndServe(p, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println("Error starting server:", err)
|
log.Println("Error starting server:", err)
|
||||||
|
badExit(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -132,6 +132,13 @@ func AddMachinesPB(tbox *gui.Node, pb *zoopb.Machines) *zoopb.MachinesTable {
|
||||||
t.AddStringFunc("zood", func(m *zoopb.Machine) string {
|
t.AddStringFunc("zood", func(m *zoopb.Machine) string {
|
||||||
return findVersion(m, "zood")
|
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 {
|
delf := func(m *zoopb.Machine) string {
|
||||||
return "delete"
|
return "delete"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue