Documentation ¶
Overview ¶
Package etcd provides a connection to an etcd member.
Index ¶
- Variables
- type AlarmType
- type Client
- func (c *Client) Alarms(ctx context.Context) ([]MemberAlarm, error)
- func (c *Client) Close() error
- func (c *Client) Members(ctx context.Context) ([]*Member, error)
- func (c *Client) MoveLeader(ctx context.Context, newLeaderID uint64) error
- func (c *Client) RemoveMember(ctx context.Context, id uint64) error
- func (c *Client) UpdateMemberPeerURLs(ctx context.Context, id uint64, peerURLs []string) ([]*Member, error)
- type GRPCDial
- type Member
- type MemberAlarm
Constants ¶
This section is empty.
Variables ¶
View Source
var AlarmTypeName = map[AlarmType]string{ AlarmOK: "NONE", AlarmNoSpace: "NOSPACE", AlarmCorrupt: "CORRUPT", }
AlarmTypeName provides a text translation for AlarmType codes.
Functions ¶
This section is empty.
Types ¶
type Client ¶
Client wraps an etcd client formatting its output to something more consumable.
func NewClient ¶ added in v0.3.9
func NewClient(ctx context.Context, endpoints []string, p proxy.Proxy, tlsConfig *tls.Config) (*Client, error)
NewClient creates a new etcd client with a proxy, and a TLS configuration.
func (*Client) Alarms ¶
func (c *Client) Alarms(ctx context.Context) ([]MemberAlarm, error)
Alarms retrieves all alarms on a cluster.
func (*Client) MoveLeader ¶
MoveLeader moves the leader to the provided member ID.
func (*Client) RemoveMember ¶
RemoveMember removes a given member.
type Member ¶
type Member struct { // ClusterID is the ID of the cluster to which this member belongs ClusterID uint64 // ID is the ID of this cluster member ID uint64 // Name is the human-readable name of the member. If the member is not started, the name will be an empty string. Name string // PeerURLs is the list of URLs the member exposes to the cluster for communication. PeerURLs []string // ClientURLs is the list of URLs the member exposes to clients for communication. If the member is not started, clientURLs will be empty. ClientURLs []string // IsLearner indicates if the member is raft learner. IsLearner bool // Alarms is the list of alarms for a member. Alarms []AlarmType }
Member struct defines an etcd member; it is used to avoid spreading github.com/coreos/etcd dependencies.
type MemberAlarm ¶
type MemberAlarm struct { // MemberID is the ID of the member associated with the raised alarm. MemberID uint64 // Type is the type of alarm which has been raised. Type AlarmType }
MemberAlarm represents an alarm type association with a cluster member.
Click to show internal directories.
Click to hide internal directories.