27 lines
747 B
Go
27 lines
747 B
Go
package structs
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/types"
|
|
)
|
|
|
|
// These are used to manage the built-in "serfHealth" check that's attached
|
|
// to every node in the catalog.
|
|
const (
|
|
SerfCheckID types.CheckID = "serfHealth"
|
|
SerfCheckName = "Serf Health Status"
|
|
SerfCheckAliveOutput = "Agent alive and reachable"
|
|
SerfCheckFailedOutput = "Agent not live or unreachable"
|
|
)
|
|
|
|
const (
|
|
// These are used to manage the "consul" service that's attached to every
|
|
// Consul server node in the catalog.
|
|
ConsulServiceID = "consul"
|
|
ConsulServiceName = "consul"
|
|
)
|
|
|
|
var (
|
|
ConsulCompoundServiceID = NewServiceID(ConsulServiceID, nil)
|
|
SerfCompoundCheckID = NewCheckID(SerfCheckID, nil)
|
|
)
|