show some more details in the table
This commit is contained in:
parent
d3b6c1725d
commit
8ad5e77931
15
doGui.go
15
doGui.go
|
@ -71,28 +71,25 @@ func drawWindow(win *gadgets.BasicWindow) {
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
grid.NewButton("addTable", func() {
|
grid.NewButton("update table", func() {
|
||||||
if tbwin == nil {
|
newwin := makeTableWindow()
|
||||||
log.Info("show the table first")
|
newwin.showTable(me.machines)
|
||||||
return
|
newwin.Show()
|
||||||
}
|
|
||||||
tbwin.showTable(me.machines)
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tw *tableWindow) showTable(allm *zoopb.Machines) {
|
func (tw *tableWindow) showTable(allm *zoopb.Machines) {
|
||||||
|
|
||||||
all := allm.All()
|
all := allm.All()
|
||||||
for all.Scan() {
|
for all.Scan() {
|
||||||
m := all.Next()
|
m := all.Next()
|
||||||
tw.grid.NewLabel("hello")
|
|
||||||
|
|
||||||
tw.grid.NewLabel(m.Hostname)
|
tw.grid.NewLabel(m.Hostname)
|
||||||
tw.grid.NewLabel(fmt.Sprintf("%d", m.Cpus))
|
tw.grid.NewLabel(fmt.Sprintf("%d", m.Cpus))
|
||||||
tw.grid.NewLabel(fmt.Sprintf("%d", m.Memory))
|
tw.grid.NewLabel(fmt.Sprintf("%d", m.Memory))
|
||||||
tw.grid.NewLabel(m.Distro)
|
tw.grid.NewLabel(m.Distro)
|
||||||
tw.grid.NewLabel(findVersion(m, "zood"))
|
tw.grid.NewLabel(findVersion(m, "zood"))
|
||||||
tw.grid.NewLabel(findVersion(m, "bash"))
|
tw.grid.NewLabel(findVersion(m, "bash"))
|
||||||
|
dur := m.Laststamp.AsTime()
|
||||||
|
tw.grid.NewLabel(fmt.Sprintf("%v", time.Since(dur)))
|
||||||
tw.grid.NextRow()
|
tw.grid.NextRow()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
"go.wit.com/lib/protobuf/zoopb"
|
"go.wit.com/lib/protobuf/zoopb"
|
||||||
"go.wit.com/log"
|
"go.wit.com/log"
|
||||||
|
"google.golang.org/protobuf/types/known/timestamppb"
|
||||||
)
|
)
|
||||||
|
|
||||||
// someone sent machine 'u' is it new?
|
// someone sent machine 'u' is it new?
|
||||||
|
@ -41,6 +44,7 @@ func updateMachine(u *zoopb.Machine) string {
|
||||||
if zood := m.Packages.FindByName("zood"); zood != nil {
|
if zood := m.Packages.FindByName("zood"); zood != nil {
|
||||||
log.Log(INFO, m.Hostname, "has zood version", zood.Version)
|
log.Log(INFO, m.Hostname, "has zood version", zood.Version)
|
||||||
}
|
}
|
||||||
|
m.Laststamp = timestamppb.New(time.Now())
|
||||||
|
|
||||||
updatePackages(m, u.Packages)
|
updatePackages(m, u.Packages)
|
||||||
return "upgrade"
|
return "upgrade"
|
||||||
|
|
|
@ -82,11 +82,13 @@ func makeTableWindow() *tableWindow {
|
||||||
// make a grid to put the list of git repos that have patches
|
// make a grid to put the list of git repos that have patches
|
||||||
// in this particular patchset
|
// in this particular patchset
|
||||||
pw.grid = g.NewGrid("", 0, 0)
|
pw.grid = g.NewGrid("", 0, 0)
|
||||||
pw.grid.NewLabel("repo")
|
pw.grid.NewLabel("hostname")
|
||||||
pw.grid.NewLabel("patch name")
|
pw.grid.NewLabel("cpus")
|
||||||
pw.grid.NewLabel("Applied in current branch?")
|
pw.grid.NewLabel("Memory")
|
||||||
pw.grid.NewLabel("start hash")
|
pw.grid.NewLabel("distro")
|
||||||
pw.grid.NewLabel("")
|
pw.grid.NewLabel("zood")
|
||||||
|
pw.grid.NewLabel("bash")
|
||||||
|
pw.grid.NewLabel("age")
|
||||||
pw.grid.NextRow()
|
pw.grid.NextRow()
|
||||||
|
|
||||||
// add the patches to the grid
|
// add the patches to the grid
|
||||||
|
|
Loading…
Reference in New Issue