dnssrv - ActiveState ActiveGo 1.8
...

Package dnssrv

import "github.com/go-kit/kit/sd/dnssrv"
Overview
Index

Overview ▾

Package dnssrv provides a subscriber implementation for DNS SRV records.

type Lookup

Lookup is a function that resolves a DNS SRV record to multiple addresses. It has the same signature as net.LookupSRV.

type Lookup func(service, proto, name string) (cname string, addrs []*net.SRV, err error)

type Subscriber

Subscriber yields endpoints taken from the named DNS SRV record. The name is resolved on a fixed schedule. Priorities and weights are ignored.

type Subscriber struct {
    // contains filtered or unexported fields
}

func NewSubscriber

func NewSubscriber(
    name string,
    ttl time.Duration,
    factory sd.Factory,
    logger log.Logger,
) *Subscriber

NewSubscriber returns a DNS SRV subscriber.

func NewSubscriberDetailed

func NewSubscriberDetailed(
    name string,
    refresh *time.Ticker,
    lookup Lookup,
    factory sd.Factory,
    logger log.Logger,
) *Subscriber

NewSubscriberDetailed is the same as NewSubscriber, but allows users to provide an explicit lookup refresh ticker instead of a TTL, and specify the lookup function instead of using net.LookupSRV.

func (*Subscriber) Endpoints

func (p *Subscriber) Endpoints() ([]endpoint.Endpoint, error)

Endpoints implements the Subscriber interface.

func (*Subscriber) Stop

func (p *Subscriber) Stop()

Stop terminates the Subscriber.