2024-10-12 10:59:11 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-10-13 01:13:19 -05:00
|
|
|
"fmt"
|
2024-10-12 10:59:11 -05:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"go.wit.com/lib/gui/shell"
|
2024-10-23 19:15:51 -05:00
|
|
|
pb "go.wit.com/lib/protobuf/virtbuf"
|
2024-10-12 10:59:11 -05:00
|
|
|
"go.wit.com/log"
|
2024-10-26 08:54:28 -05:00
|
|
|
"google.golang.org/protobuf/types/known/timestamppb"
|
2024-10-12 10:59:11 -05:00
|
|
|
)
|
|
|
|
|
2024-10-13 00:40:22 -05:00
|
|
|
func (h *HyperT) pollHypervisor() {
|
2024-10-22 17:27:24 -05:00
|
|
|
url := "http://" + h.pb.Hostname + ":2520/vms"
|
2024-10-12 12:45:43 -05:00
|
|
|
log.Log(POLL, "wget url =", url)
|
2024-10-12 10:59:11 -05:00
|
|
|
s := shell.Wget(url)
|
|
|
|
if s == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var bytesSplice []byte
|
|
|
|
bytesSplice = s.Bytes()
|
|
|
|
// fmt.Fprintln(w, string(bytesSplice))
|
|
|
|
for _, line := range strings.Split(string(bytesSplice), "\n") {
|
|
|
|
if line == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fields := strings.Fields(line)
|
|
|
|
if len(fields) < 2 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
state := fields[0]
|
|
|
|
name := fields[1]
|
|
|
|
if state == "ON" {
|
2024-10-22 17:27:24 -05:00
|
|
|
log.Log(POLL, h.pb.Hostname, "STATE:", state, "HOST:", name, "rest:", fields[2:])
|
2024-10-12 12:45:43 -05:00
|
|
|
d := findDroplet(name)
|
2024-10-17 15:29:47 -05:00
|
|
|
if d == nil {
|
2024-10-26 08:54:28 -05:00
|
|
|
// not sure whawt now?
|
2024-10-17 15:29:47 -05:00
|
|
|
}
|
2024-10-26 08:54:28 -05:00
|
|
|
log.Log(INFO, "ALREADY RECORDED", d.Hostname)
|
2024-10-17 15:29:47 -05:00
|
|
|
|
2024-10-26 09:33:31 -05:00
|
|
|
// update the status to ON
|
2024-10-23 19:15:51 -05:00
|
|
|
d.CurrentState = pb.DropletState_ON
|
2024-10-17 15:29:47 -05:00
|
|
|
|
2024-10-26 09:33:31 -05:00
|
|
|
// set the LastPoll time to now
|
2024-10-26 08:54:28 -05:00
|
|
|
now := time.Now()
|
|
|
|
d.LastPoll = timestamppb.New(now)
|
|
|
|
|
2024-10-26 09:33:31 -05:00
|
|
|
if d.CurrentHypervisor == "" {
|
2024-10-17 15:29:47 -05:00
|
|
|
// this means the droplet was in the config file
|
|
|
|
// but this is the first time it's shown up as running
|
|
|
|
|
|
|
|
// this should mean a droplet is running where the config file says it probably should be running
|
2024-10-26 08:54:28 -05:00
|
|
|
if d.PreferredHypervisor == h.pb.Hostname {
|
2024-10-26 09:33:31 -05:00
|
|
|
log.Log(EVENT, "poll shows new droplet", d.Hostname, "(matches config hypervisor", h.pb.Hostname+")")
|
|
|
|
d.CurrentHypervisor = h.pb.Hostname
|
2024-10-17 15:29:47 -05:00
|
|
|
continue
|
2024-10-12 10:59:11 -05:00
|
|
|
}
|
2024-10-17 15:29:47 -05:00
|
|
|
|
2024-10-26 09:33:31 -05:00
|
|
|
log.Log(EVENT, "poll shows new droplet", d.Hostname, "on", h.pb.Hostname, "(in config file without preferred hypervisor)")
|
|
|
|
d.CurrentHypervisor = h.pb.Hostname
|
2024-10-22 19:19:22 -05:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-10-26 09:33:31 -05:00
|
|
|
// this means the droplet has moved
|
|
|
|
if d.CurrentHypervisor != h.pb.Hostname {
|
2024-10-26 08:54:28 -05:00
|
|
|
log.Log(EVENT, "droplet", d.Hostname, "moved to", h.pb.Hostname)
|
2024-10-22 19:19:22 -05:00
|
|
|
continue
|
2024-10-12 10:59:11 -05:00
|
|
|
}
|
2024-10-26 09:33:31 -05:00
|
|
|
d.CurrentHypervisor = h.pb.Hostname
|
2024-10-12 10:59:11 -05:00
|
|
|
}
|
2024-10-17 15:29:47 -05:00
|
|
|
continue
|
2024-10-12 10:59:11 -05:00
|
|
|
}
|
2024-10-13 00:40:22 -05:00
|
|
|
h.lastpoll = time.Now()
|
2024-10-13 00:57:29 -05:00
|
|
|
h.killcount = 0 // poll worked. reset killcount
|
2024-10-12 10:59:11 -05:00
|
|
|
}
|
2024-10-12 12:45:43 -05:00
|
|
|
|
2024-10-26 08:54:28 -05:00
|
|
|
/*
|
2024-10-13 03:04:46 -05:00
|
|
|
func findHypervisor(name string) *HyperT {
|
2024-10-26 08:54:28 -05:00
|
|
|
if h, ok := me.hmap[name]; ok {
|
|
|
|
return h
|
|
|
|
}
|
|
|
|
return nil
|
2024-10-13 03:04:46 -05:00
|
|
|
for _, h := range me.hypers {
|
2024-10-22 17:27:24 -05:00
|
|
|
if h.pb.Hostname == name {
|
2024-10-13 03:04:46 -05:00
|
|
|
return h
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2024-10-26 08:54:28 -05:00
|
|
|
*/
|
2024-10-13 03:04:46 -05:00
|
|
|
|
2024-10-13 01:13:19 -05:00
|
|
|
// check the state of the cluster and return a string
|
|
|
|
// that is intended to be sent to an uptime monitor like Kuma
|
|
|
|
func clusterHealthy() (bool, string) {
|
|
|
|
var good bool = true
|
2024-10-13 01:33:32 -05:00
|
|
|
var total int
|
2024-10-13 01:13:19 -05:00
|
|
|
var working int
|
|
|
|
var failed int
|
2024-10-13 01:38:35 -05:00
|
|
|
var missing int
|
|
|
|
var unknown int
|
2024-10-15 11:02:34 -05:00
|
|
|
var unknownList []string
|
2024-10-13 01:38:35 -05:00
|
|
|
|
2024-10-26 08:54:28 -05:00
|
|
|
for _, d := range me.cluster.Droplets {
|
2024-10-13 01:33:32 -05:00
|
|
|
total += 1
|
2024-10-26 08:54:28 -05:00
|
|
|
if d.StartState != pb.DropletState_ON {
|
2024-10-12 13:01:31 -05:00
|
|
|
continue
|
|
|
|
}
|
2024-10-26 08:54:28 -05:00
|
|
|
dur := time.Since(d.LastPoll.AsTime()) // Calculate the elapsed time
|
2024-10-23 19:15:51 -05:00
|
|
|
if d.CurrentState == pb.DropletState_UNKNOWN {
|
2024-10-26 08:54:28 -05:00
|
|
|
// log.Info("SKIP. hostname has not been polled yet", d.Hostname, d.hname)
|
2024-10-13 01:38:35 -05:00
|
|
|
unknown += 1
|
2024-10-26 08:54:28 -05:00
|
|
|
unknownList = append(unknownList, d.Hostname)
|
2024-10-13 00:40:22 -05:00
|
|
|
continue
|
|
|
|
}
|
2024-10-22 18:19:21 -05:00
|
|
|
var hname string
|
2024-10-26 08:54:28 -05:00
|
|
|
if d.CurrentHypervisor != "" {
|
|
|
|
hname = d.CurrentHypervisor
|
2024-10-22 18:19:21 -05:00
|
|
|
}
|
2024-10-23 19:15:51 -05:00
|
|
|
if d.CurrentState != pb.DropletState_ON {
|
2024-10-26 08:54:28 -05:00
|
|
|
log.Info("BAD STATE", d.StartState, d.Hostname, hname, "CurrentState =", d.CurrentState, shell.FormatDuration(dur))
|
2024-10-12 13:01:31 -05:00
|
|
|
good = false
|
2024-10-13 01:33:32 -05:00
|
|
|
failed += 1
|
2024-10-12 13:01:31 -05:00
|
|
|
} else {
|
2024-10-26 08:54:28 -05:00
|
|
|
dur := time.Since(d.LastPoll.AsTime()) // Calculate the elapsed time
|
2024-10-12 13:01:31 -05:00
|
|
|
if dur > time.Minute {
|
2024-10-26 08:54:28 -05:00
|
|
|
log.Info("GOOD STATE MISSING", d.Hostname, hname, shell.FormatDuration(dur))
|
2024-10-12 13:01:31 -05:00
|
|
|
good = false
|
2024-10-23 19:15:51 -05:00
|
|
|
d.CurrentState = pb.DropletState_UNKNOWN
|
2024-10-13 01:13:19 -05:00
|
|
|
failed += 1
|
|
|
|
continue
|
2024-10-12 13:01:31 -05:00
|
|
|
}
|
2024-10-13 00:57:29 -05:00
|
|
|
l := shell.FormatDuration(dur)
|
2024-10-13 00:40:22 -05:00
|
|
|
if l == "" {
|
|
|
|
log.Info("DUR IS EMPTY", dur)
|
2024-10-13 01:38:35 -05:00
|
|
|
missing += 1
|
2024-10-13 01:13:19 -05:00
|
|
|
continue
|
2024-10-13 00:40:22 -05:00
|
|
|
}
|
2024-10-13 01:13:19 -05:00
|
|
|
working += 1
|
2024-10-26 08:54:28 -05:00
|
|
|
// log.Info("GOOD STATE ON", d.Hostname, d.hname, "dur =", l)
|
2024-10-12 13:01:31 -05:00
|
|
|
}
|
|
|
|
}
|
2024-10-13 01:13:19 -05:00
|
|
|
var summary string = "("
|
2024-10-13 01:33:32 -05:00
|
|
|
summary += fmt.Sprintf("total = %d ", total)
|
2024-10-13 01:38:35 -05:00
|
|
|
summary += fmt.Sprintf("working = %d ", working)
|
|
|
|
if missing > 0 {
|
|
|
|
summary += fmt.Sprintf("missing = %d ", missing)
|
|
|
|
}
|
|
|
|
if unknown > 0 {
|
2024-10-15 11:02:34 -05:00
|
|
|
summary += fmt.Sprintf("unknown = %d ", unknown, unknownList)
|
2024-10-13 01:13:19 -05:00
|
|
|
}
|
|
|
|
if failed > 0 {
|
2024-10-13 01:33:32 -05:00
|
|
|
summary += fmt.Sprintf("failed = %d ", failed)
|
2024-10-13 01:13:19 -05:00
|
|
|
}
|
2024-10-13 01:33:32 -05:00
|
|
|
summary = strings.TrimSpace(summary)
|
2024-10-13 01:13:19 -05:00
|
|
|
summary += ")"
|
2024-10-13 03:49:54 -05:00
|
|
|
if me.killcount > 0 {
|
|
|
|
summary += "(killcount=" + fmt.Sprintf("%d", me.killcount) + ")"
|
|
|
|
}
|
2024-10-13 04:34:55 -05:00
|
|
|
last := time.Since(me.unstable)
|
2024-10-13 03:49:54 -05:00
|
|
|
if last > 133*time.Second {
|
|
|
|
// the cluster has not been stable for 10 seconds
|
2024-10-13 04:34:55 -05:00
|
|
|
s := strings.TrimSpace(shell.FormatDuration(last))
|
|
|
|
summary += "(stable=" + s + ")"
|
2024-10-13 03:49:54 -05:00
|
|
|
}
|
2024-10-13 01:13:19 -05:00
|
|
|
if good {
|
|
|
|
return good, "GOOD=true " + summary
|
|
|
|
}
|
2024-10-13 04:34:55 -05:00
|
|
|
me.unstable = time.Now()
|
2024-10-13 01:13:19 -05:00
|
|
|
return good, "GOOD=false " + summary
|
2024-10-12 13:01:31 -05:00
|
|
|
}
|