2014-01-16 01:14:50 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
2014-01-16 03:28:23 +00:00
|
|
|
"github.com/hashicorp/consul/consul"
|
2014-01-16 01:14:50 +00:00
|
|
|
"github.com/hashicorp/consul/consul/structs"
|
2014-01-21 19:52:25 +00:00
|
|
|
"log"
|
2014-01-16 01:14:50 +00:00
|
|
|
"reflect"
|
|
|
|
"sync"
|
2014-02-07 19:58:24 +00:00
|
|
|
"sync/atomic"
|
2014-01-16 01:14:50 +00:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2014-04-23 19:21:34 +00:00
|
|
|
syncStaggerIntv = 3 * time.Second
|
|
|
|
syncRetryIntv = 15 * time.Second
|
2014-01-16 01:14:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// syncStatus is used to represent the difference between
|
|
|
|
// the local and remote state, and if action needs to be taken
|
|
|
|
type syncStatus struct {
|
2014-06-10 17:42:55 +00:00
|
|
|
remoteDelete bool // Should this be deleted from the server
|
|
|
|
inSync bool // Is this in sync with the server
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// localState is used to represent the node's services,
|
|
|
|
// and checks. We used it to perform anti-entropy with the
|
|
|
|
// catalog representation
|
|
|
|
type localState struct {
|
2014-02-07 19:58:24 +00:00
|
|
|
// paused is used to check if we are paused. Must be the first
|
|
|
|
// element due to a go bug.
|
|
|
|
paused int32
|
|
|
|
|
2014-01-16 01:14:50 +00:00
|
|
|
sync.Mutex
|
2014-01-21 19:52:25 +00:00
|
|
|
logger *log.Logger
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
// Config is the agent config
|
|
|
|
config *Config
|
|
|
|
|
|
|
|
// iface is the consul interface to use for keeping in sync
|
|
|
|
iface consul.Interface
|
2014-01-16 01:14:50 +00:00
|
|
|
|
|
|
|
// Services tracks the local services
|
|
|
|
services map[string]*structs.NodeService
|
|
|
|
serviceStatus map[string]syncStatus
|
|
|
|
|
|
|
|
// Checks tracks the local checks
|
|
|
|
checks map[string]*structs.HealthCheck
|
|
|
|
checkStatus map[string]syncStatus
|
|
|
|
|
2014-06-10 17:42:55 +00:00
|
|
|
// Used to track checks that are being defered
|
|
|
|
deferCheck map[string]*time.Timer
|
|
|
|
|
2014-02-07 20:03:31 +00:00
|
|
|
// consulCh is used to inform of a change to the known
|
|
|
|
// consul nodes. This may be used to retry a sync run
|
|
|
|
consulCh chan struct{}
|
|
|
|
|
2014-01-16 01:14:50 +00:00
|
|
|
// triggerCh is used to inform of a change to local state
|
|
|
|
// that requires anti-entropy with the server
|
|
|
|
triggerCh chan struct{}
|
|
|
|
}
|
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
// Init is used to initialize the local state
|
2014-02-07 20:11:34 +00:00
|
|
|
func (l *localState) Init(config *Config, logger *log.Logger) {
|
2014-01-21 19:52:25 +00:00
|
|
|
l.config = config
|
|
|
|
l.logger = logger
|
|
|
|
l.services = make(map[string]*structs.NodeService)
|
|
|
|
l.serviceStatus = make(map[string]syncStatus)
|
|
|
|
l.checks = make(map[string]*structs.HealthCheck)
|
|
|
|
l.checkStatus = make(map[string]syncStatus)
|
2014-06-10 17:42:55 +00:00
|
|
|
l.deferCheck = make(map[string]*time.Timer)
|
2014-02-07 20:03:31 +00:00
|
|
|
l.consulCh = make(chan struct{}, 1)
|
2014-01-21 19:52:25 +00:00
|
|
|
l.triggerCh = make(chan struct{}, 1)
|
|
|
|
}
|
|
|
|
|
2014-02-07 20:11:34 +00:00
|
|
|
// SetIface is used to set the Consul interface. Must be set prior to
|
|
|
|
// starting anti-entropy
|
|
|
|
func (l *localState) SetIface(iface consul.Interface) {
|
|
|
|
l.iface = iface
|
|
|
|
}
|
|
|
|
|
2014-01-16 01:14:50 +00:00
|
|
|
// changeMade is used to trigger an anti-entropy run
|
|
|
|
func (l *localState) changeMade() {
|
|
|
|
select {
|
|
|
|
case l.triggerCh <- struct{}{}:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-07 20:03:31 +00:00
|
|
|
// ConsulServerUp is used to inform that a new consul server is now
|
|
|
|
// up. This can be used to speed up the sync process if we are blocking
|
|
|
|
// waiting to discover a consul server
|
|
|
|
func (l *localState) ConsulServerUp() {
|
|
|
|
select {
|
|
|
|
case l.consulCh <- struct{}{}:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-07 19:58:24 +00:00
|
|
|
// Pause is used to pause state syncronization, this can be
|
|
|
|
// used to make batch changes
|
|
|
|
func (l *localState) Pause() {
|
|
|
|
atomic.StoreInt32(&l.paused, 1)
|
|
|
|
}
|
|
|
|
|
2014-02-07 20:19:56 +00:00
|
|
|
// Resume is used to resume state syncronization
|
|
|
|
func (l *localState) Resume() {
|
2014-02-07 19:58:24 +00:00
|
|
|
atomic.StoreInt32(&l.paused, 0)
|
|
|
|
l.changeMade()
|
|
|
|
}
|
|
|
|
|
|
|
|
// isPaused is used to check if we are paused
|
|
|
|
func (l *localState) isPaused() bool {
|
|
|
|
return atomic.LoadInt32(&l.paused) == 1
|
|
|
|
}
|
|
|
|
|
2014-01-16 01:14:50 +00:00
|
|
|
// AddService is used to add a service entry to the local state.
|
|
|
|
// This entry is persistent and the agent will make a best effort to
|
|
|
|
// ensure it is registered
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) AddService(service *structs.NodeService) {
|
2014-01-21 00:22:59 +00:00
|
|
|
// Assign the ID if none given
|
|
|
|
if service.ID == "" && service.Service != "" {
|
|
|
|
service.ID = service.Service
|
|
|
|
}
|
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
l.Lock()
|
|
|
|
defer l.Unlock()
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
l.services[service.ID] = service
|
|
|
|
l.serviceStatus[service.ID] = syncStatus{}
|
|
|
|
l.changeMade()
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveService is used to remove a service entry from the local state.
|
|
|
|
// The agent will make a best effort to ensure it is deregistered
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) RemoveService(serviceID string) {
|
|
|
|
l.Lock()
|
|
|
|
defer l.Unlock()
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
delete(l.services, serviceID)
|
|
|
|
l.serviceStatus[serviceID] = syncStatus{remoteDelete: true}
|
|
|
|
l.changeMade()
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
|
2014-01-21 01:00:52 +00:00
|
|
|
// Services returns the locally registered services that the
|
|
|
|
// agent is aware of and are being kept in sync with the server
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) Services() map[string]*structs.NodeService {
|
2014-01-21 01:00:52 +00:00
|
|
|
services := make(map[string]*structs.NodeService)
|
2014-01-21 19:52:25 +00:00
|
|
|
l.Lock()
|
|
|
|
defer l.Unlock()
|
2014-01-21 01:00:52 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
for name, serv := range l.services {
|
2014-01-21 01:00:52 +00:00
|
|
|
services[name] = serv
|
|
|
|
}
|
|
|
|
return services
|
|
|
|
}
|
|
|
|
|
2014-01-16 01:14:50 +00:00
|
|
|
// AddCheck is used to add a health check to the local state.
|
|
|
|
// This entry is persistent and the agent will make a best effort to
|
|
|
|
// ensure it is registered
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) AddCheck(check *structs.HealthCheck) {
|
2014-01-21 01:06:44 +00:00
|
|
|
// Set the node name
|
2014-01-21 19:52:25 +00:00
|
|
|
check.Node = l.config.NodeName
|
2014-01-21 01:06:44 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
l.Lock()
|
|
|
|
defer l.Unlock()
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
l.checks[check.CheckID] = check
|
|
|
|
l.checkStatus[check.CheckID] = syncStatus{}
|
|
|
|
l.changeMade()
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveCheck is used to remove a health check from the local state.
|
|
|
|
// The agent will make a best effort to ensure it is deregistered
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) RemoveCheck(checkID string) {
|
|
|
|
l.Lock()
|
|
|
|
defer l.Unlock()
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
delete(l.checks, checkID)
|
|
|
|
l.checkStatus[checkID] = syncStatus{remoteDelete: true}
|
|
|
|
l.changeMade()
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateCheck is used to update the status of a check
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) UpdateCheck(checkID, status, output string) {
|
|
|
|
l.Lock()
|
|
|
|
defer l.Unlock()
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
check, ok := l.checks[checkID]
|
2014-01-16 01:14:50 +00:00
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do nothing if update is idempotent
|
2014-04-21 23:20:22 +00:00
|
|
|
if check.Status == status && check.Output == output {
|
2014-01-16 01:14:50 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-06-09 19:46:29 +00:00
|
|
|
// Defer a sync if the output has changed. This is an optimization around
|
|
|
|
// frequent updates of output. Instead, we update the output internally,
|
|
|
|
// and periodically do a write-back to the servers. If there is a status
|
|
|
|
// change we do the write immediately.
|
|
|
|
if l.config.CheckUpdateInterval > 0 && check.Status == status {
|
|
|
|
check.Output = output
|
2014-06-10 17:42:55 +00:00
|
|
|
if _, ok := l.deferCheck[checkID]; !ok {
|
2014-06-09 19:46:29 +00:00
|
|
|
deferSync := time.AfterFunc(l.config.CheckUpdateInterval, func() {
|
|
|
|
l.Lock()
|
2014-06-10 17:42:55 +00:00
|
|
|
if _, ok := l.checkStatus[checkID]; ok {
|
2014-06-09 23:00:25 +00:00
|
|
|
l.checkStatus[checkID] = syncStatus{inSync: false}
|
|
|
|
l.changeMade()
|
|
|
|
}
|
2014-06-10 17:42:55 +00:00
|
|
|
delete(l.deferCheck, checkID)
|
2014-06-09 19:46:29 +00:00
|
|
|
l.Unlock()
|
|
|
|
})
|
2014-06-10 17:42:55 +00:00
|
|
|
l.deferCheck[checkID] = deferSync
|
2014-06-09 19:46:29 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-01-16 01:14:50 +00:00
|
|
|
// Update status and mark out of sync
|
|
|
|
check.Status = status
|
2014-04-21 23:20:22 +00:00
|
|
|
check.Output = output
|
2014-01-21 19:52:25 +00:00
|
|
|
l.checkStatus[checkID] = syncStatus{inSync: false}
|
|
|
|
l.changeMade()
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
|
2014-01-21 01:00:52 +00:00
|
|
|
// Checks returns the locally registered checks that the
|
|
|
|
// agent is aware of and are being kept in sync with the server
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) Checks() map[string]*structs.HealthCheck {
|
2014-01-21 01:00:52 +00:00
|
|
|
checks := make(map[string]*structs.HealthCheck)
|
2014-01-21 19:52:25 +00:00
|
|
|
l.Lock()
|
|
|
|
defer l.Unlock()
|
2014-01-21 01:00:52 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
for name, check := range l.checks {
|
2014-01-21 01:00:52 +00:00
|
|
|
checks[name] = check
|
|
|
|
}
|
|
|
|
return checks
|
|
|
|
}
|
|
|
|
|
2014-01-16 01:14:50 +00:00
|
|
|
// antiEntropy is a long running method used to perform anti-entropy
|
|
|
|
// between local and remote state.
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) antiEntropy(shutdownCh chan struct{}) {
|
2014-01-16 01:14:50 +00:00
|
|
|
SYNC:
|
|
|
|
// Sync our state with the servers
|
2014-01-21 19:52:25 +00:00
|
|
|
for {
|
2014-04-14 19:47:58 +00:00
|
|
|
err := l.setSyncState()
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
l.logger.Printf("[ERR] agent: failed to sync remote state: %v", err)
|
|
|
|
select {
|
|
|
|
case <-l.consulCh:
|
2014-04-23 19:21:34 +00:00
|
|
|
// Stagger the retry on leader election, avoid a thundering heard
|
|
|
|
select {
|
|
|
|
case <-time.After(randomStagger(aeScale(syncStaggerIntv, len(l.iface.LANMembers())))):
|
|
|
|
case <-shutdownCh:
|
|
|
|
return
|
|
|
|
}
|
2014-06-06 21:38:01 +00:00
|
|
|
case <-time.After(syncRetryIntv + randomStagger(aeScale(syncRetryIntv, len(l.iface.LANMembers())))):
|
2014-04-14 19:47:58 +00:00
|
|
|
case <-shutdownCh:
|
|
|
|
return
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Force-trigger AE to pickup any changes
|
2014-01-21 19:52:25 +00:00
|
|
|
l.changeMade()
|
2014-01-16 01:14:50 +00:00
|
|
|
|
|
|
|
// Schedule the next full sync, with a random stagger
|
2014-01-21 19:52:25 +00:00
|
|
|
aeIntv := aeScale(l.config.AEInterval, len(l.iface.LANMembers()))
|
2014-01-16 01:14:50 +00:00
|
|
|
aeIntv = aeIntv + randomStagger(aeIntv)
|
|
|
|
aeTimer := time.After(aeIntv)
|
|
|
|
|
|
|
|
// Wait for sync events
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-aeTimer:
|
|
|
|
goto SYNC
|
2014-01-21 19:52:25 +00:00
|
|
|
case <-l.triggerCh:
|
2014-02-07 19:58:24 +00:00
|
|
|
// Skip the sync if we are paused
|
|
|
|
if l.isPaused() {
|
|
|
|
continue
|
|
|
|
}
|
2014-01-21 19:52:25 +00:00
|
|
|
if err := l.syncChanges(); err != nil {
|
|
|
|
l.logger.Printf("[ERR] agent: failed to sync changes: %v", err)
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
2014-01-21 19:52:25 +00:00
|
|
|
case <-shutdownCh:
|
2014-01-16 01:14:50 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// setSyncState does a read of the server state, and updates
|
|
|
|
// the local syncStatus as appropriate
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) setSyncState() error {
|
2014-01-16 01:14:50 +00:00
|
|
|
req := structs.NodeSpecificRequest{
|
2014-01-21 19:52:25 +00:00
|
|
|
Datacenter: l.config.Datacenter,
|
|
|
|
Node: l.config.NodeName,
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
2014-02-05 22:36:13 +00:00
|
|
|
var out1 structs.IndexedNodeServices
|
|
|
|
var out2 structs.IndexedHealthChecks
|
|
|
|
if e := l.iface.RPC("Catalog.NodeServices", &req, &out1); e != nil {
|
2014-01-16 01:14:50 +00:00
|
|
|
return e
|
|
|
|
}
|
2014-02-05 22:36:13 +00:00
|
|
|
if err := l.iface.RPC("Health.NodeChecks", &req, &out2); err != nil {
|
2014-01-16 01:14:50 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-02-05 22:36:13 +00:00
|
|
|
services := out1.NodeServices
|
|
|
|
checks := out2.HealthChecks
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
l.Lock()
|
|
|
|
defer l.Unlock()
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2014-03-05 23:03:23 +00:00
|
|
|
if services != nil {
|
|
|
|
for id, service := range services.Services {
|
|
|
|
// If we don't have the service locally, deregister it
|
|
|
|
existing, ok := l.services[id]
|
|
|
|
if !ok {
|
|
|
|
l.serviceStatus[id] = syncStatus{remoteDelete: true}
|
2014-01-16 03:28:23 +00:00
|
|
|
continue
|
|
|
|
}
|
2014-01-16 01:14:50 +00:00
|
|
|
|
2014-03-05 23:03:23 +00:00
|
|
|
// If our definition is different, we need to update it
|
|
|
|
equal := reflect.DeepEqual(existing, service)
|
|
|
|
l.serviceStatus[id] = syncStatus{inSync: equal}
|
|
|
|
}
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, check := range checks {
|
|
|
|
// If we don't have the check locally, deregister it
|
|
|
|
id := check.CheckID
|
2014-01-21 19:52:25 +00:00
|
|
|
existing, ok := l.checks[id]
|
2014-01-16 01:14:50 +00:00
|
|
|
if !ok {
|
2014-01-16 03:28:23 +00:00
|
|
|
// The Serf check is created automatically, and does not
|
|
|
|
// need to be registered
|
|
|
|
if id == consul.SerfCheckID {
|
|
|
|
continue
|
|
|
|
}
|
2014-01-21 19:52:25 +00:00
|
|
|
l.checkStatus[id] = syncStatus{remoteDelete: true}
|
2014-01-16 01:14:50 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// If our definition is different, we need to update it
|
2014-06-09 23:00:25 +00:00
|
|
|
var equal bool
|
|
|
|
if l.config.CheckUpdateInterval == 0 {
|
|
|
|
equal = reflect.DeepEqual(existing, check)
|
|
|
|
} else {
|
|
|
|
eCopy := new(structs.HealthCheck)
|
|
|
|
*eCopy = *existing
|
|
|
|
eCopy.Output = ""
|
|
|
|
check.Output = ""
|
|
|
|
equal = reflect.DeepEqual(eCopy, check)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the status
|
2014-01-21 19:52:25 +00:00
|
|
|
l.checkStatus[id] = syncStatus{inSync: equal}
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// syncChanges is used to scan the status our local services and checks
|
|
|
|
// and update any that are out of sync with the server
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) syncChanges() error {
|
|
|
|
l.Lock()
|
|
|
|
defer l.Unlock()
|
2014-01-16 01:14:50 +00:00
|
|
|
|
|
|
|
// Sync the services
|
2014-01-21 19:52:25 +00:00
|
|
|
for id, status := range l.serviceStatus {
|
2014-01-16 01:14:50 +00:00
|
|
|
if status.remoteDelete {
|
2014-01-21 19:52:25 +00:00
|
|
|
if err := l.deleteService(id); err != nil {
|
2014-01-16 01:14:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else if !status.inSync {
|
2014-01-21 19:52:25 +00:00
|
|
|
if err := l.syncService(id); err != nil {
|
2014-01-16 01:14:50 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-04-23 19:21:47 +00:00
|
|
|
} else {
|
|
|
|
l.logger.Printf("[DEBUG] agent: Service '%s' in sync", id)
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync the checks
|
2014-01-21 19:52:25 +00:00
|
|
|
for id, status := range l.checkStatus {
|
2014-01-16 01:14:50 +00:00
|
|
|
if status.remoteDelete {
|
2014-01-21 19:52:25 +00:00
|
|
|
if err := l.deleteCheck(id); err != nil {
|
2014-01-16 01:14:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else if !status.inSync {
|
2014-06-10 17:42:55 +00:00
|
|
|
// Cancel a defered sync
|
|
|
|
if timer := l.deferCheck[id]; timer != nil {
|
|
|
|
timer.Stop()
|
|
|
|
delete(l.deferCheck, id)
|
|
|
|
}
|
|
|
|
|
2014-01-21 19:52:25 +00:00
|
|
|
if err := l.syncCheck(id); err != nil {
|
2014-01-16 01:14:50 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-04-23 19:21:47 +00:00
|
|
|
} else {
|
|
|
|
l.logger.Printf("[DEBUG] agent: Check '%s' in sync", id)
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// deleteService is used to delete a service from the server
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) deleteService(id string) error {
|
2014-01-16 01:14:50 +00:00
|
|
|
req := structs.DeregisterRequest{
|
2014-01-21 19:52:25 +00:00
|
|
|
Datacenter: l.config.Datacenter,
|
|
|
|
Node: l.config.NodeName,
|
2014-01-16 01:14:50 +00:00
|
|
|
ServiceID: id,
|
|
|
|
}
|
|
|
|
var out struct{}
|
2014-01-21 19:52:25 +00:00
|
|
|
err := l.iface.RPC("Catalog.Deregister", &req, &out)
|
2014-01-16 01:14:50 +00:00
|
|
|
if err == nil {
|
2014-01-21 19:52:25 +00:00
|
|
|
delete(l.serviceStatus, id)
|
|
|
|
l.logger.Printf("[INFO] agent: Deregistered service '%s'", id)
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// deleteCheck is used to delete a service from the server
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) deleteCheck(id string) error {
|
2014-01-16 01:14:50 +00:00
|
|
|
req := structs.DeregisterRequest{
|
2014-01-21 19:52:25 +00:00
|
|
|
Datacenter: l.config.Datacenter,
|
|
|
|
Node: l.config.NodeName,
|
2014-01-16 01:14:50 +00:00
|
|
|
CheckID: id,
|
|
|
|
}
|
|
|
|
var out struct{}
|
2014-01-21 19:52:25 +00:00
|
|
|
err := l.iface.RPC("Catalog.Deregister", &req, &out)
|
2014-01-16 01:14:50 +00:00
|
|
|
if err == nil {
|
2014-01-21 19:52:25 +00:00
|
|
|
delete(l.checkStatus, id)
|
|
|
|
l.logger.Printf("[INFO] agent: Deregistered check '%s'", id)
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// syncService is used to sync a service to the server
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) syncService(id string) error {
|
2014-01-16 01:14:50 +00:00
|
|
|
req := structs.RegisterRequest{
|
2014-01-21 19:52:25 +00:00
|
|
|
Datacenter: l.config.Datacenter,
|
|
|
|
Node: l.config.NodeName,
|
|
|
|
Address: l.config.AdvertiseAddr,
|
|
|
|
Service: l.services[id],
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
var out struct{}
|
2014-01-21 19:52:25 +00:00
|
|
|
err := l.iface.RPC("Catalog.Register", &req, &out)
|
2014-01-16 01:14:50 +00:00
|
|
|
if err == nil {
|
2014-01-21 19:52:25 +00:00
|
|
|
l.serviceStatus[id] = syncStatus{inSync: true}
|
|
|
|
l.logger.Printf("[INFO] agent: Synced service '%s'", id)
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// syncCheck is used to sync a service to the server
|
2014-01-21 19:52:25 +00:00
|
|
|
func (l *localState) syncCheck(id string) error {
|
2014-01-30 21:17:34 +00:00
|
|
|
// Pull in the associated service if any
|
|
|
|
check := l.checks[id]
|
|
|
|
var service *structs.NodeService
|
|
|
|
if check.ServiceID != "" {
|
|
|
|
if serv, ok := l.services[check.ServiceID]; ok {
|
|
|
|
service = serv
|
|
|
|
}
|
|
|
|
}
|
2014-01-16 01:14:50 +00:00
|
|
|
req := structs.RegisterRequest{
|
2014-01-21 19:52:25 +00:00
|
|
|
Datacenter: l.config.Datacenter,
|
|
|
|
Node: l.config.NodeName,
|
|
|
|
Address: l.config.AdvertiseAddr,
|
2014-01-30 21:17:34 +00:00
|
|
|
Service: service,
|
2014-01-21 19:52:25 +00:00
|
|
|
Check: l.checks[id],
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
var out struct{}
|
2014-01-21 19:52:25 +00:00
|
|
|
err := l.iface.RPC("Catalog.Register", &req, &out)
|
2014-01-16 01:14:50 +00:00
|
|
|
if err == nil {
|
2014-01-21 19:52:25 +00:00
|
|
|
l.checkStatus[id] = syncStatus{inSync: true}
|
|
|
|
l.logger.Printf("[INFO] agent: Synced check '%s'", id)
|
2014-01-16 01:14:50 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|