Skip to content

Instantly share code, notes, and snippets.

@kenjiskywalker
Forked from fujiwara/main.go
Created June 5, 2014 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenjiskywalker/ce29b181ac883fcb0a3a to your computer and use it in GitHub Desktop.
Save kenjiskywalker/ce29b181ac883fcb0a3a to your computer and use it in GitHub Desktop.
package main
import (
"encoding/json"
"github.com/mizzy/consul-catalog"
"log"
"os"
"reflect"
"time"
)
func main() {
client, err := consulcatalog.NewClient(consulcatalog.DefaultConfig())
if err != nil {
log.Fatalln(err)
}
var index uint64
var nodes consulcatalog.Nodes
service := os.Args[1]
for {
log.Printf("Get blocking query service %s index %d ...", service, index)
meta, newNodes, err := client.Get("service", service, index)
if err != nil {
log.Printf("error: %s", err)
time.Sleep(5 * time.Second)
continue
}
log.Printf("new index: %v", meta.ModifyIndex)
index = meta.ModifyIndex
if reflect.DeepEqual(nodes, newNodes) {
log.Println("no Nodes changed.")
} else {
jsonBytes, _ := json.Marshal(newNodes)
log.Printf("Nodes changed. %s", jsonBytes)
nodes = newNodes
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment