-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-client.go
executable file
·62 lines (48 loc) · 1.12 KB
/
simple-client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package main
import (
"fmt"
"io/ioutil"
"net/http"
"time"
consulapi "github.com/hashicorp/consul/api"
)
var url string
func main() {
lookupServiceWithConsul()
fmt.Println("Starting Simple Client.")
var client = &http.Client{
Timeout: time.Second * 10,
}
callHelloEvery(5*time.Second, client)
}
func lookupServiceWithConsul() {
config := consulapi.DefaultConfig()
consul, error := consulapi.NewClient(config)
if error != nil {
fmt.Println(error)
}
services, error := consul.Agent().Services()
if error != nil {
fmt.Println(error)
}
service := services["simple-server"]
address := service.Address
port := service.Port
url = fmt.Sprintf("http://%s:%v/info", address, port)
}
func hello(t time.Time, client *http.Client) {
// Call the greeter
response, err := client.Get(url)
if err != nil {
fmt.Println(err)
return
}
// print response
body, _ := ioutil.ReadAll(response.Body)
fmt.Printf("%s. Time is %v\n", body, t)
}
func callHelloEvery(d time.Duration, client *http.Client) {
for x := range time.Tick(d) {
hello(x, client)
}
}