Documentation ¶
Index ¶
- type Discovery
- type HypervisorDiscovery
- type InstanceDiscovery
- type SDMock
- func (m *SDMock) Endpoint() string
- func (m *SDMock) HandleAuthSuccessfully()
- func (m *SDMock) HandleFloatingIPListSuccessfully()
- func (m *SDMock) HandleHypervisorListSuccessfully()
- func (m *SDMock) HandleServerListSuccessfully()
- func (m *SDMock) HandleVersionsSuccessfully()
- func (m *SDMock) Setup()
- func (m *SDMock) ShutdownServer()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Discovery ¶
type Discovery interface { Run(ctx context.Context, ch chan<- []*config.TargetGroup) // contains filtered or unexported methods }
Discovery periodically performs OpenStack-SD requests. It implements the TargetProvider interface.
func NewDiscovery ¶
NewDiscovery returns a new OpenStackDiscovery which periodically refreshes its targets.
type HypervisorDiscovery ¶ added in v1.8.0
type HypervisorDiscovery struct {
// contains filtered or unexported fields
}
HypervisorDiscovery discovers OpenStack hypervisors.
func NewHypervisorDiscovery ¶ added in v1.8.0
func NewHypervisorDiscovery(opts *gophercloud.AuthOptions, interval time.Duration, port int, region string, l log.Logger) *HypervisorDiscovery
NewHypervisorDiscovery returns a new hypervisor discovery.
func (*HypervisorDiscovery) Run ¶ added in v1.8.0
func (h *HypervisorDiscovery) Run(ctx context.Context, ch chan<- []*config.TargetGroup)
Run implements the TargetProvider interface.
type InstanceDiscovery ¶ added in v1.8.0
type InstanceDiscovery struct {
// contains filtered or unexported fields
}
InstanceDiscovery discovers OpenStack instances.
func NewInstanceDiscovery ¶ added in v1.8.0
func NewInstanceDiscovery(opts *gophercloud.AuthOptions, interval time.Duration, port int, region string, l log.Logger) *InstanceDiscovery
NewInstanceDiscovery returns a new instance discovery.
func (*InstanceDiscovery) Run ¶ added in v1.8.0
func (i *InstanceDiscovery) Run(ctx context.Context, ch chan<- []*config.TargetGroup)
Run implements the TargetProvider interface.
type SDMock ¶
type SDMock struct { Server *httptest.Server Mux *http.ServeMux // contains filtered or unexported fields }
SDMock is the interface for the OpenStack mock
func (*SDMock) HandleAuthSuccessfully ¶
func (m *SDMock) HandleAuthSuccessfully()
HandleAuthSuccessfully mocks auth call
func (*SDMock) HandleFloatingIPListSuccessfully ¶
func (m *SDMock) HandleFloatingIPListSuccessfully()
HandleFloatingIPListSuccessfully mocks floating ips call
func (*SDMock) HandleHypervisorListSuccessfully ¶ added in v1.8.0
func (m *SDMock) HandleHypervisorListSuccessfully()
HandleHypervisorListSuccessfully mocks os-hypervisors detail call
func (*SDMock) HandleServerListSuccessfully ¶
func (m *SDMock) HandleServerListSuccessfully()
HandleServerListSuccessfully mocks server detail call
func (*SDMock) HandleVersionsSuccessfully ¶
func (m *SDMock) HandleVersionsSuccessfully()
HandleVersionsSuccessfully mocks version call
func (*SDMock) ShutdownServer ¶
func (m *SDMock) ShutdownServer()
ShutdownServer creates the mock server