all engines still firing
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
ca3a01f478
commit
01eca8fc10
51
gui.go
51
gui.go
|
@ -101,6 +101,11 @@ func debugTab(title string) {
|
||||||
// log.Println(o)
|
// log.Println(o)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
g2.NewButton("getProcessNameByPort()", func () {
|
||||||
|
processName := getProcessNameByPort(53)
|
||||||
|
log.Info("Process with port 53:", processName)
|
||||||
|
})
|
||||||
|
|
||||||
g2 = me.debug.Box().NewGroup("debugging options")
|
g2 = me.debug.Box().NewGroup("debugging options")
|
||||||
|
|
||||||
// makes a slider widget
|
// makes a slider widget
|
||||||
|
@ -189,25 +194,22 @@ func myDefaultExit(n *gui.Node) {
|
||||||
func mainWindow(title string) {
|
func mainWindow(title string) {
|
||||||
me.window = gadgets.NewBasicWindow(me.myGui, title)
|
me.window = gadgets.NewBasicWindow(me.myGui, title)
|
||||||
|
|
||||||
me.mainStatus = me.window.Box().NewGroup("dns update")
|
gr := me.window.Box().NewGroup("dns update")
|
||||||
grid := me.mainStatus.NewGrid("gridnuts", 2, 2)
|
grid := gr.NewGrid("gridnuts", 2, 2)
|
||||||
|
|
||||||
grid.SetNext(1,1)
|
grid.SetNext(1,1)
|
||||||
|
|
||||||
grid.NewLabel("hostname =")
|
grid.NewLabel("hostname =")
|
||||||
me.fqdn = grid.NewLabel("?")
|
me.fqdn = grid.NewLabel("?")
|
||||||
|
|
||||||
// grid.NewLabel("DNS AAAA =")
|
|
||||||
me.DnsAAAA = gadgets.NewOneLiner(grid, "DNS AAAA =").Set("unknown")
|
me.DnsAAAA = gadgets.NewOneLiner(grid, "DNS AAAA =").Set("unknown")
|
||||||
|
|
||||||
grid.NewLabel("DNS A =")
|
grid.NewLabel("DNS A =")
|
||||||
me.DnsA = grid.NewLabel("?")
|
me.DnsA = grid.NewLabel("?")
|
||||||
|
|
||||||
me.digStatus = NewDigStatusWindow(me.myGui)
|
// This is where you figure out what to do next to fix the problems
|
||||||
me.status = NewHostnameStatusWindow(me.myGui)
|
gr.NewButton("fix", func () {
|
||||||
|
log.Warn("FIGURE OUT WHAT TO DO HERE")
|
||||||
me.hostnameStatusButton = me.mainStatus.NewButton("Fix hostname DNS", func () {
|
|
||||||
me.status.window.Toggle()
|
|
||||||
})
|
})
|
||||||
|
|
||||||
grid.Margin()
|
grid.Margin()
|
||||||
|
@ -215,15 +217,23 @@ func mainWindow(title string) {
|
||||||
|
|
||||||
statusGrid(me.window.Box())
|
statusGrid(me.window.Box())
|
||||||
|
|
||||||
gr := me.window.Box().NewGroup("debugging")
|
gr = me.window.Box().NewGroup("debugging")
|
||||||
gr.NewButton("OS Details", func () {
|
gr.NewButton("hostname status", func () {
|
||||||
|
if ! me.status.Ready() {return}
|
||||||
|
me.status.window.Toggle()
|
||||||
|
})
|
||||||
|
|
||||||
|
gr.NewButton("OS details", func () {
|
||||||
me.details.Toggle()
|
me.details.Toggle()
|
||||||
})
|
})
|
||||||
gr.NewButton("Resolver Status", func () {
|
gr.NewButton("resolver status", func () {
|
||||||
if ! me.digStatus.Ready() {return}
|
if ! me.digStatus.Ready() {return}
|
||||||
me.digStatus.window.Toggle()
|
me.digStatus.window.Toggle()
|
||||||
})
|
})
|
||||||
gr.NewButton("Control Panel Debug", func () {
|
gr.NewButton("cloudflare wit.com", func () {
|
||||||
|
cloudflare.CreateRR(me.myGui, "wit.com", "3777302ac4a78cd7fa4f6d3f72086d06")
|
||||||
|
})
|
||||||
|
gr.NewButton("Debug", func () {
|
||||||
me.debug.Toggle()
|
me.debug.Toggle()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -345,20 +355,3 @@ func updateDNS() {
|
||||||
|
|
||||||
log.Println("updateDNS() END")
|
log.Println("updateDNS() END")
|
||||||
}
|
}
|
||||||
|
|
||||||
func suggestProcDebugging() {
|
|
||||||
if (me.fixProc != nil) {
|
|
||||||
// me.fixProc.Disable()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
me.fixProc = me.mainStatus.NewButton("Try debugging Slow DNS lookups", func () {
|
|
||||||
log.Warn("You're DNS lookups are very slow")
|
|
||||||
me.dbOn.Set(true)
|
|
||||||
me.dbProc.Set(true)
|
|
||||||
|
|
||||||
processName := getProcessNameByPort(53)
|
|
||||||
log.Info("Process with port 53:", processName)
|
|
||||||
})
|
|
||||||
// me.fixProc.Disable()
|
|
||||||
}
|
|
||||||
|
|
11
hostname.go
11
hostname.go
|
@ -7,7 +7,7 @@ import (
|
||||||
|
|
||||||
"go.wit.com/log"
|
"go.wit.com/log"
|
||||||
"go.wit.com/shell"
|
"go.wit.com/shell"
|
||||||
"go.wit.com/gui/cloudflare"
|
// "go.wit.com/gui/cloudflare"
|
||||||
|
|
||||||
"github.com/miekg/dns"
|
"github.com/miekg/dns"
|
||||||
// will try to get this hosts FQDN
|
// will try to get this hosts FQDN
|
||||||
|
@ -53,15 +53,6 @@ func getHostname() {
|
||||||
me.hostnameStatus.SetText("VALID")
|
me.hostnameStatus.SetText("VALID")
|
||||||
me.changed = true
|
me.changed = true
|
||||||
}
|
}
|
||||||
// enable the cloudflare button if the provider is cloudflare
|
|
||||||
if (me.cloudflareB == nil) {
|
|
||||||
log.Log(CHANGE, "me.cloudflare == nil; me.DnsAPI.S =", me.DnsAPI.S)
|
|
||||||
if (me.DnsAPI.S == "cloudflare") {
|
|
||||||
me.cloudflareB = me.mainStatus.NewButton("cloudflare wit.com", func () {
|
|
||||||
cloudflare.CreateRR(me.myGui, "wit.com", "3777302ac4a78cd7fa4f6d3f72086d06")
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
16
main.go
16
main.go
|
@ -44,6 +44,9 @@ func main() {
|
||||||
log.Sleep(me.artificialSleep)
|
log.Sleep(me.artificialSleep)
|
||||||
setupControlPanelWindow()
|
setupControlPanelWindow()
|
||||||
|
|
||||||
|
me.digStatus = NewDigStatusWindow(me.myGui)
|
||||||
|
me.status = NewHostnameStatusWindow(me.myGui)
|
||||||
|
|
||||||
if debugger.ArgDebug() {
|
if debugger.ArgDebug() {
|
||||||
log.Sleep(2)
|
log.Sleep(2)
|
||||||
debugger.DebugWindow(me.myGui)
|
debugger.DebugWindow(me.myGui)
|
||||||
|
@ -121,24 +124,15 @@ func DNSloop() {
|
||||||
log.Info("dnsTTL() execution Time: ", duration)
|
log.Info("dnsTTL() execution Time: ", duration)
|
||||||
var s, newSpeed string
|
var s, newSpeed string
|
||||||
if (duration > 5000 * time.Millisecond ) {
|
if (duration > 5000 * time.Millisecond ) {
|
||||||
newSpeed = "VERY BAD"
|
newSpeed = "VERY SLOW"
|
||||||
suggestProcDebugging()
|
|
||||||
} else if (duration > 2000 * time.Millisecond ) {
|
} else if (duration > 2000 * time.Millisecond ) {
|
||||||
newSpeed = "BAD"
|
newSpeed = "SLOWER"
|
||||||
suggestProcDebugging()
|
|
||||||
} else if (duration > 500 * time.Millisecond ) {
|
} else if (duration > 500 * time.Millisecond ) {
|
||||||
suggestProcDebugging()
|
|
||||||
newSpeed = "SLOW"
|
newSpeed = "SLOW"
|
||||||
} else if (duration > 100 * time.Millisecond ) {
|
} else if (duration > 100 * time.Millisecond ) {
|
||||||
newSpeed = "OK"
|
newSpeed = "OK"
|
||||||
if (me.fixProc != nil) {
|
|
||||||
// me.fixProc.Disable()
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
newSpeed = "FAST"
|
newSpeed = "FAST"
|
||||||
if (me.fixProc != nil) {
|
|
||||||
// me.fixProc.Disable()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (newSpeed != me.DnsSpeedLast) {
|
if (newSpeed != me.DnsSpeedLast) {
|
||||||
log.Log(CHANGE, "dns lookup speed changed =", newSpeed)
|
log.Log(CHANGE, "dns lookup speed changed =", newSpeed)
|
||||||
|
|
18
structs.go
18
structs.go
|
@ -18,13 +18,9 @@ type Host struct {
|
||||||
|
|
||||||
hostnameStatus *gui.Node // a summary for the user of where things are
|
hostnameStatus *gui.Node // a summary for the user of where things are
|
||||||
|
|
||||||
// hostname string // mirrors
|
|
||||||
domainname *gui.Node // kernel.org
|
domainname *gui.Node // kernel.org
|
||||||
hostshort *gui.Node // hostname -s
|
hostshort *gui.Node // hostname -s
|
||||||
// fqdn string // mirrors.kernel.org
|
|
||||||
|
|
||||||
// dnsTTL int `default:"3"` // Recheck DNS is working every TTL (in seconds)
|
|
||||||
// dnsTTLsleep float64 // sleep between loops
|
|
||||||
artificialSleep float64 `default:"0.7"` // artificial sleep on startup
|
artificialSleep float64 `default:"0.7"` // artificial sleep on startup
|
||||||
artificialS string `default:"abc"` // artificial sleep on startup
|
artificialS string `default:"abc"` // artificial sleep on startup
|
||||||
|
|
||||||
|
@ -71,22 +67,16 @@ type Host struct {
|
||||||
DnsSpeedActual *gui.Node // the last actual duration
|
DnsSpeedActual *gui.Node // the last actual duration
|
||||||
DnsSpeedLast string // the last state 'FAST', 'OK', etc
|
DnsSpeedLast string // the last state 'FAST', 'OK', etc
|
||||||
|
|
||||||
fix *gui.Node // button for the user to click
|
// fix *gui.Node // button for the user to click
|
||||||
fixProc *gui.Node // button for the user to click
|
// fixProc *gui.Node // button for the user to click
|
||||||
|
|
||||||
mainStatus *gui.Node // group for the main display of stuff
|
// mainStatus *gui.Node // group for the main display of stuff
|
||||||
cloudflareB *gui.Node // cloudflare button
|
// cloudflareB *gui.Node // cloudflare button
|
||||||
|
|
||||||
dbOn *gui.Node // button for setting debugging on
|
|
||||||
dbNet *gui.Node // button for setting network debugging on
|
|
||||||
dbProc *gui.Node // button for setting proc debugging on
|
|
||||||
|
|
||||||
digStatus *digStatus
|
digStatus *digStatus
|
||||||
statusIPv6 *gadgets.OneLiner
|
statusIPv6 *gadgets.OneLiner
|
||||||
digStatusButton *gui.Node
|
digStatusButton *gui.Node
|
||||||
|
|
||||||
hostnameStatusButton *gui.Node
|
|
||||||
|
|
||||||
myDebug *gui.Node
|
myDebug *gui.Node
|
||||||
myGui *gui.Node
|
myGui *gui.Node
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue