//go:build !consulent // +build !consulent package consul import ( "net" "github.com/armon/go-metrics/prometheus" "github.com/hashicorp/consul/agent/structs" ) var SegmentOSSSummaries = []prometheus.SummaryDefinition{ { Name: []string{"leader", "reconcile"}, Help: "Measures the time spent updating the raft store from the serf member information.", }, } // LANSegmentAddr is used to return the address used for the given LAN segment. func (s *Server) LANSegmentAddr(name string) string { return "" } // 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 } // setupSegments returns an error if any segments are defined since the OSS // version of Consul doesn't support them. func (s *Server) setupSegments(config *Config, rpcListeners map[string]net.Listener) error { if len(config.Segments) > 0 { return structs.ErrSegmentsNotSupported } return nil } // floodSegments is a NOP in the OSS version of Consul. func (s *Server) floodSegments(config *Config) { }