2021-11-15 15:51:14 +00:00
|
|
|
//go:build !consulent
|
2019-05-01 15:11:27 +00:00
|
|
|
// +build !consulent
|
2017-08-14 14:36:07 +00:00
|
|
|
|
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
2017-09-01 00:39:46 +00:00
|
|
|
"net"
|
2017-08-14 14:36:07 +00:00
|
|
|
|
2020-11-14 00:26:08 +00:00
|
|
|
"github.com/armon/go-metrics/prometheus"
|
2021-08-19 20:09:42 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2017-08-14 14:36:07 +00:00
|
|
|
)
|
|
|
|
|
2020-11-14 00:26:08 +00:00
|
|
|
var SegmentOSSSummaries = []prometheus.SummaryDefinition{
|
|
|
|
{
|
|
|
|
Name: []string{"leader", "reconcile"},
|
2020-11-16 19:02:11 +00:00
|
|
|
Help: "Measures the time spent updating the raft store from the serf member information.",
|
2020-11-14 00:26:08 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-08-14 14:36:07 +00:00
|
|
|
// LANSegmentAddr is used to return the address used for the given LAN segment.
|
|
|
|
func (s *Server) LANSegmentAddr(name string) string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2017-09-01 00:39:46 +00:00
|
|
|
// setupSegmentRPC returns an error if any segments are defined since the OSS
|
|
|
|
// version of Consul doesn't support them.
|
|
|
|
func (s *Server) setupSegmentRPC() (map[string]net.Listener, error) {
|
|
|
|
if len(s.config.Segments) > 0 {
|
|
|
|
return nil, structs.ErrSegmentsNotSupported
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2017-08-14 14:36:07 +00:00
|
|
|
// setupSegments returns an error if any segments are defined since the OSS
|
2017-09-01 00:39:46 +00:00
|
|
|
// version of Consul doesn't support them.
|
2021-11-15 15:51:14 +00:00
|
|
|
func (s *Server) setupSegments(config *Config, rpcListeners map[string]net.Listener) error {
|
2017-08-14 14:36:07 +00:00
|
|
|
if len(config.Segments) > 0 {
|
2017-09-01 00:39:46 +00:00
|
|
|
return structs.ErrSegmentsNotSupported
|
2017-08-14 14:36:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// floodSegments is a NOP in the OSS version of Consul.
|
|
|
|
func (s *Server) floodSegments(config *Config) {
|
|
|
|
}
|