2016-07-01 15:45:07 +00:00
|
|
|
// Copyright 2016 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package kubernetes
|
|
|
|
|
|
|
|
import (
|
2017-10-25 04:21:42 +00:00
|
|
|
"context"
|
2016-07-01 15:45:07 +00:00
|
|
|
"net"
|
2016-10-07 12:53:11 +00:00
|
|
|
"strconv"
|
2016-07-01 15:45:07 +00:00
|
|
|
|
2017-08-11 18:45:52 +00:00
|
|
|
"github.com/go-kit/kit/log"
|
|
|
|
"github.com/go-kit/kit/log/level"
|
2019-03-25 23:01:12 +00:00
|
|
|
"github.com/pkg/errors"
|
2016-07-01 15:45:07 +00:00
|
|
|
"github.com/prometheus/common/model"
|
2018-07-03 07:37:22 +00:00
|
|
|
apiv1 "k8s.io/api/core/v1"
|
2017-05-11 08:29:10 +00:00
|
|
|
"k8s.io/client-go/tools/cache"
|
2018-04-09 16:35:14 +00:00
|
|
|
"k8s.io/client-go/util/workqueue"
|
2017-10-25 04:21:42 +00:00
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
"github.com/prometheus/prometheus/discovery/targetgroup"
|
2017-10-25 04:21:42 +00:00
|
|
|
"github.com/prometheus/prometheus/util/strutil"
|
2016-07-01 15:45:07 +00:00
|
|
|
)
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
// Service implements discovery of Kubernetes services.
|
|
|
|
type Service struct {
|
|
|
|
logger log.Logger
|
|
|
|
informer cache.SharedInformer
|
|
|
|
store cache.Store
|
2018-04-09 16:35:14 +00:00
|
|
|
queue *workqueue.Type
|
2016-07-01 15:45:07 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
// NewService returns a new service discovery.
|
|
|
|
func NewService(l log.Logger, inf cache.SharedInformer) *Service {
|
2017-08-11 18:45:52 +00:00
|
|
|
if l == nil {
|
|
|
|
l = log.NewNopLogger()
|
|
|
|
}
|
2019-04-29 07:14:13 +00:00
|
|
|
s := &Service{logger: l, informer: inf, store: inf.GetStore(), queue: workqueue.NewNamed("service")}
|
2018-04-09 16:35:14 +00:00
|
|
|
s.informer.AddEventHandler(cache.ResourceEventHandlerFuncs{
|
|
|
|
AddFunc: func(o interface{}) {
|
|
|
|
eventCount.WithLabelValues("service", "add").Inc()
|
|
|
|
s.enqueue(o)
|
|
|
|
},
|
|
|
|
DeleteFunc: func(o interface{}) {
|
|
|
|
eventCount.WithLabelValues("service", "delete").Inc()
|
|
|
|
s.enqueue(o)
|
|
|
|
},
|
|
|
|
UpdateFunc: func(_, o interface{}) {
|
|
|
|
eventCount.WithLabelValues("service", "update").Inc()
|
|
|
|
s.enqueue(o)
|
|
|
|
},
|
|
|
|
})
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2018-07-18 04:07:33 +00:00
|
|
|
func (s *Service) enqueue(obj interface{}) {
|
2018-04-09 16:35:14 +00:00
|
|
|
key, err := cache.DeletionHandlingMetaNamespaceKeyFunc(obj)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-18 04:07:33 +00:00
|
|
|
s.queue.Add(key)
|
2016-07-01 15:45:07 +00:00
|
|
|
}
|
|
|
|
|
2018-01-08 23:59:18 +00:00
|
|
|
// Run implements the Discoverer interface.
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
func (s *Service) Run(ctx context.Context, ch chan<- []*targetgroup.Group) {
|
2018-04-09 16:35:14 +00:00
|
|
|
defer s.queue.ShutDown()
|
|
|
|
|
|
|
|
if !cache.WaitForCacheSync(ctx.Done(), s.informer.HasSynced) {
|
2019-10-09 09:51:38 +00:00
|
|
|
if ctx.Err() != context.Canceled {
|
|
|
|
level.Error(s.logger).Log("msg", "service informer unable to sync cache")
|
|
|
|
}
|
2016-07-01 15:45:07 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-04-09 16:35:14 +00:00
|
|
|
go func() {
|
2018-04-10 08:53:00 +00:00
|
|
|
for s.process(ctx, ch) {
|
2018-04-09 16:35:14 +00:00
|
|
|
}
|
|
|
|
}()
|
2016-07-01 15:45:07 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
// Block until the target provider is explicitly canceled.
|
|
|
|
<-ctx.Done()
|
2016-07-01 15:45:07 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 08:53:00 +00:00
|
|
|
func (s *Service) process(ctx context.Context, ch chan<- []*targetgroup.Group) bool {
|
2018-04-09 16:35:14 +00:00
|
|
|
keyObj, quit := s.queue.Get()
|
|
|
|
if quit {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
defer s.queue.Done(keyObj)
|
|
|
|
key := keyObj.(string)
|
|
|
|
|
|
|
|
namespace, name, err := cache.SplitMetaNamespaceKey(key)
|
|
|
|
if err != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
o, exists, err := s.store.GetByKey(key)
|
|
|
|
if err != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if !exists {
|
2018-04-10 08:53:00 +00:00
|
|
|
send(ctx, s.logger, RoleService, ch, &targetgroup.Group{Source: serviceSourceFromNamespaceAndName(namespace, name)})
|
2018-04-09 16:35:14 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
eps, err := convertToService(o)
|
|
|
|
if err != nil {
|
|
|
|
level.Error(s.logger).Log("msg", "converting to Service object failed", "err", err)
|
|
|
|
return true
|
|
|
|
}
|
2018-04-10 08:53:00 +00:00
|
|
|
send(ctx, s.logger, RoleService, ch, s.buildService(eps))
|
2018-04-09 16:35:14 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-11-14 15:21:38 +00:00
|
|
|
func convertToService(o interface{}) (*apiv1.Service, error) {
|
2017-09-04 11:10:44 +00:00
|
|
|
service, ok := o.(*apiv1.Service)
|
|
|
|
if ok {
|
|
|
|
return service, nil
|
|
|
|
}
|
2019-03-25 23:01:12 +00:00
|
|
|
return nil, errors.Errorf("received unexpected object: %v", o)
|
2016-11-14 15:21:38 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
func serviceSource(s *apiv1.Service) string {
|
2018-04-25 16:36:22 +00:00
|
|
|
return serviceSourceFromNamespaceAndName(s.Namespace, s.Name)
|
2016-07-01 15:45:07 +00:00
|
|
|
}
|
|
|
|
|
2018-04-09 16:35:14 +00:00
|
|
|
func serviceSourceFromNamespaceAndName(namespace, name string) string {
|
|
|
|
return "svc/" + namespace + "/" + name
|
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
const (
|
2019-04-10 12:21:42 +00:00
|
|
|
serviceNameLabel = metaLabelPrefix + "service_name"
|
|
|
|
serviceLabelPrefix = metaLabelPrefix + "service_label_"
|
|
|
|
serviceLabelPresentPrefix = metaLabelPrefix + "service_labelpresent_"
|
|
|
|
serviceAnnotationPrefix = metaLabelPrefix + "service_annotation_"
|
|
|
|
serviceAnnotationPresentPrefix = metaLabelPrefix + "service_annotationpresent_"
|
|
|
|
servicePortNameLabel = metaLabelPrefix + "service_port_name"
|
|
|
|
servicePortProtocolLabel = metaLabelPrefix + "service_port_protocol"
|
|
|
|
serviceClusterIPLabel = metaLabelPrefix + "service_cluster_ip"
|
|
|
|
serviceExternalNameLabel = metaLabelPrefix + "service_external_name"
|
2016-10-07 12:53:11 +00:00
|
|
|
)
|
2016-07-01 15:45:07 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
func serviceLabels(svc *apiv1.Service) model.LabelSet {
|
|
|
|
ls := make(model.LabelSet, len(svc.Labels)+len(svc.Annotations)+2)
|
2016-07-01 15:45:07 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
ls[serviceNameLabel] = lv(svc.Name)
|
2017-09-04 11:10:44 +00:00
|
|
|
ls[namespaceLabel] = lv(svc.Namespace)
|
2016-07-01 15:45:07 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
for k, v := range svc.Labels {
|
2019-04-10 12:21:42 +00:00
|
|
|
ln := strutil.SanitizeLabelName(k)
|
|
|
|
ls[model.LabelName(serviceLabelPrefix+ln)] = lv(v)
|
|
|
|
ls[model.LabelName(serviceLabelPresentPrefix+ln)] = presentValue
|
2016-07-01 15:45:07 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
for k, v := range svc.Annotations {
|
2019-04-10 12:21:42 +00:00
|
|
|
ln := strutil.SanitizeLabelName(k)
|
|
|
|
ls[model.LabelName(serviceAnnotationPrefix+ln)] = lv(v)
|
|
|
|
ls[model.LabelName(serviceAnnotationPresentPrefix+ln)] = presentValue
|
2016-07-01 15:45:07 +00:00
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
return ls
|
2016-07-01 15:45:07 +00:00
|
|
|
}
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 20:01:34 +00:00
|
|
|
func (s *Service) buildService(svc *apiv1.Service) *targetgroup.Group {
|
|
|
|
tg := &targetgroup.Group{
|
2016-10-07 12:53:11 +00:00
|
|
|
Source: serviceSource(svc),
|
2016-07-01 15:45:07 +00:00
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
tg.Labels = serviceLabels(svc)
|
2016-07-01 15:45:07 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
for _, port := range svc.Spec.Ports {
|
|
|
|
addr := net.JoinHostPort(svc.Name+"."+svc.Namespace+".svc", strconv.FormatInt(int64(port.Port), 10))
|
2016-07-01 15:45:07 +00:00
|
|
|
|
2018-12-18 15:17:34 +00:00
|
|
|
labelSet := model.LabelSet{
|
2016-10-07 12:53:11 +00:00
|
|
|
model.AddressLabel: lv(addr),
|
|
|
|
servicePortNameLabel: lv(port.Name),
|
|
|
|
servicePortProtocolLabel: lv(string(port.Protocol)),
|
2018-12-18 15:17:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if svc.Spec.Type == apiv1.ServiceTypeExternalName {
|
|
|
|
labelSet[serviceExternalNameLabel] = lv(svc.Spec.ExternalName)
|
|
|
|
} else {
|
|
|
|
labelSet[serviceClusterIPLabel] = lv(svc.Spec.ClusterIP)
|
|
|
|
}
|
|
|
|
|
|
|
|
tg.Targets = append(tg.Targets, labelSet)
|
2016-07-01 15:45:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return tg
|
|
|
|
}
|