Merge pull request #3 from roberteckert/add_support_for_consul_agent_checks
Add support for local consul agent checking
This commit is contained in:
@@ -5,20 +5,24 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"github.com/golang/glog"
|
"github.com/golang/glog"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
consulNodeEnv = "CONSUL_NODE"
|
consulNodeEnv = "CONSUL_NODE"
|
||||||
matchTag = "enable_gocast"
|
matchTag = "enable_gocast"
|
||||||
nodeUrl = "/catalog/node"
|
nodeURL = "/catalog/node"
|
||||||
healthCheckurl = "/health/checks"
|
remoteHealthCheckurl = "/health/checks"
|
||||||
|
localHealthCheckurl = "/agent/checks"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ConsulMon struct {
|
type ConsulMon struct {
|
||||||
addr string
|
addr string
|
||||||
node string
|
node string
|
||||||
|
client *http.Client
|
||||||
}
|
}
|
||||||
|
|
||||||
type ConsulServiceData struct {
|
type ConsulServiceData struct {
|
||||||
@@ -43,13 +47,13 @@ func NewConsulMon(addr string) (*ConsulMon, error) {
|
|||||||
if node == "" {
|
if node == "" {
|
||||||
return nil, fmt.Errorf("%s env variable not set", consulNodeEnv)
|
return nil, fmt.Errorf("%s env variable not set", consulNodeEnv)
|
||||||
}
|
}
|
||||||
return &ConsulMon{addr: addr, node: node}, nil
|
return &ConsulMon{addr: addr, node: node, client: &http.Client{Timeout: 10 * time.Second}}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *ConsulMon) queryServices() ([]*App, error) {
|
func (c *ConsulMon) queryServices() ([]*App, error) {
|
||||||
var apps []*App
|
var apps []*App
|
||||||
addr := c.addr + fmt.Sprintf("%s/%s", nodeUrl, c.node)
|
addr := c.addr + fmt.Sprintf("%s/%s", nodeURL, c.node)
|
||||||
resp, err := http.Get(addr)
|
resp, err := c.client.Get(addr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return apps, err
|
return apps, err
|
||||||
}
|
}
|
||||||
@@ -97,10 +101,43 @@ func (c *ConsulMon) queryServices() ([]*App, error) {
|
|||||||
return apps, nil
|
return apps, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *ConsulMon) healthCheck(service string) (bool, error) {
|
// healthCheckLocal queries a node's local consul agent to perform service healthchecks
|
||||||
addr := c.addr + fmt.Sprintf("%s/%s", healthCheckurl, service)
|
// This is the underlying api call: https://www.consul.io/api/agent/check.html
|
||||||
resp, err := http.Get(addr)
|
func (c *ConsulMon) healthCheckLocal(service string) (bool, error) {
|
||||||
|
params := url.Values{}
|
||||||
|
params.Add("filter", "enable_gocast in ServiceTags")
|
||||||
|
addr := c.addr + fmt.Sprintf("%s?%s", localHealthCheckurl, params.Encode())
|
||||||
|
resp, err := c.client.Get(addr)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
glog.V(2).Infof("Error getting %s with %s", addr, err)
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
var services map[string]interface{}
|
||||||
|
if err := json.NewDecoder(resp.Body).Decode(&services); err != nil {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
for _, sInfo := range services {
|
||||||
|
serviceInfo := sInfo.(map[string]interface{})
|
||||||
|
if serviceInfo["ServiceName"].(string) == service {
|
||||||
|
status := serviceInfo["Status"].(string)
|
||||||
|
if status == "passing" {
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
glog.V(2).Infof("Consul local healthcheck returned %s status", status)
|
||||||
|
return false, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false, fmt.Errorf("No local healcheck info found for service %s on node %s in consul", service, c.node)
|
||||||
|
}
|
||||||
|
|
||||||
|
// healthCheckRemote queries the consul cluster's healthcheck endpoint to perform service healthchecks
|
||||||
|
// This is the underlying api call: https://www.consul.io/api/health.html
|
||||||
|
func (c *ConsulMon) healthCheckRemote(service string) (bool, error) {
|
||||||
|
addr := c.addr + fmt.Sprintf("%s/%s", remoteHealthCheckurl, service)
|
||||||
|
resp, err := c.client.Get(addr)
|
||||||
|
if err != nil {
|
||||||
|
glog.V(2).Infof("Error getting %s with %s", addr, err)
|
||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
@@ -108,16 +145,26 @@ func (c *ConsulMon) healthCheck(service string) (bool, error) {
|
|||||||
if err := json.NewDecoder(resp.Body).Decode(&data); err != nil {
|
if err := json.NewDecoder(resp.Body).Decode(&data); err != nil {
|
||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, nodeInfo := range data {
|
for _, nodeInfo := range data {
|
||||||
n := nodeInfo.(map[string]interface{})
|
n := nodeInfo.(map[string]interface{})
|
||||||
if n["Node"] == c.node {
|
if n["Node"].(string) == c.node {
|
||||||
if n["Status"].(string) == "passing" {
|
if n["Status"].(string) == "passing" {
|
||||||
return true, nil
|
return true, nil
|
||||||
} else {
|
|
||||||
glog.V(2).Infof("Consul Healthcheck returned %s status", n["Status"].(string))
|
|
||||||
return false, nil
|
|
||||||
}
|
}
|
||||||
|
glog.V(2).Infof("Consul healthcheck returned %s status", n["Status"].(string))
|
||||||
|
return false, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false, fmt.Errorf("No healcheck info found for node %s in consul", c.node)
|
return false, fmt.Errorf("No healcheck info found for node %s in consul", c.node)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// healthCheck determines if we should use the local agent
|
||||||
|
// If the address contains "localhost", then it presumes that the local agent is to be used.
|
||||||
|
func (c *ConsulMon) healthCheck(service string) (bool, error) {
|
||||||
|
usingLocalAgent := strings.Contains(c.addr, "localhost")
|
||||||
|
if usingLocalAgent {
|
||||||
|
return c.healthCheckLocal(service)
|
||||||
|
}
|
||||||
|
return c.healthCheckRemote(service)
|
||||||
|
}
|
||||||
|
|||||||
2
go.mod
2
go.mod
@@ -9,7 +9,7 @@ require (
|
|||||||
github.com/eapache/queue v1.1.0
|
github.com/eapache/queue v1.1.0
|
||||||
github.com/fsnotify/fsnotify v1.4.7
|
github.com/fsnotify/fsnotify v1.4.7
|
||||||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
|
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
|
||||||
github.com/golang/protobuf v0.0.0-20181022004443-7be363195599
|
github.com/golang/protobuf v1.2.0
|
||||||
github.com/hashicorp/hcl v1.0.0
|
github.com/hashicorp/hcl v1.0.0
|
||||||
github.com/influxdata/influxdb v1.6.4
|
github.com/influxdata/influxdb v1.6.4
|
||||||
github.com/konsorten/go-windows-terminal-sequences v1.0.1
|
github.com/konsorten/go-windows-terminal-sequences v1.0.1
|
||||||
|
|||||||
Reference in New Issue
Block a user