summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-15 20:59:23 -0600
committerJeff Carr <[email protected]>2024-11-15 20:59:23 -0600
commit7dd5d6d2b165a91993fb532429189a481eebc366 (patch)
tree211bee013fb95cc0da8320bfeddb944250416066 /structs.go
parent141d3024fd4a32d5485e873308ae6414c4867a28 (diff)
sending a machine protobuf
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index ba67457..20ed0f5 100644
--- a/structs.go
+++ b/structs.go
@@ -10,11 +10,11 @@ var me *stuff
// this app's variables
type stuff struct {
- hostname string // my hostname to send to zookeeper
- zookeeper string // the dns name for the zookeeper
- pollDelay time.Duration // how often to report our status
- dog *time.Ticker // the watchdog timer
- dogchan chan bool
+ hostname string // my fqdn dns zookeeper hostname
+ pollDelay time.Duration // how often to report our status
+ dog *time.Ticker // the watchdog timer
+ dogchan chan bool // can kill the watchdog
distro string // debian,redhat,gentoo,macos,wincrap
packages *zoopb.Packages // installed packages and versions
+ machines *zoopb.Machines // every machine that has reported itself to the zookeeper
}