2016-07-01 10:17:17 +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 10:17:17 +00:00
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
2017-08-11 18:45:52 +00:00
|
|
|
"github.com/go-kit/kit/log"
|
|
|
|
"github.com/go-kit/kit/log/level"
|
2016-07-01 10:17:17 +00:00
|
|
|
"github.com/prometheus/common/model"
|
2018-04-06 22:27:39 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2017-05-11 08:29:10 +00:00
|
|
|
"k8s.io/client-go/pkg/api"
|
|
|
|
apiv1 "k8s.io/client-go/pkg/api/v1"
|
|
|
|
"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 10:17:17 +00:00
|
|
|
)
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
// Pod discovers new pod targets.
|
|
|
|
type Pod struct {
|
|
|
|
informer cache.SharedInformer
|
|
|
|
store cache.Store
|
|
|
|
logger log.Logger
|
2018-04-09 16:35:14 +00:00
|
|
|
queue *workqueue.Type
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
|
|
|
|
2016-10-17 09:05:13 +00:00
|
|
|
// NewPod creates a new pod discovery.
|
|
|
|
func NewPod(l log.Logger, pods cache.SharedInformer) *Pod {
|
2017-08-11 18:45:52 +00:00
|
|
|
if l == nil {
|
|
|
|
l = log.NewNopLogger()
|
|
|
|
}
|
2018-04-09 16:35:14 +00:00
|
|
|
p := &Pod{
|
2016-10-07 12:53:11 +00:00
|
|
|
informer: pods,
|
|
|
|
store: pods.GetStore(),
|
|
|
|
logger: l,
|
2018-04-09 16:35:14 +00:00
|
|
|
queue: workqueue.NewNamed("pod"),
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
2018-04-09 16:35:14 +00:00
|
|
|
p.informer.AddEventHandler(cache.ResourceEventHandlerFuncs{
|
|
|
|
AddFunc: func(o interface{}) {
|
|
|
|
eventCount.WithLabelValues("pod", "add").Inc()
|
|
|
|
p.enqueue(o)
|
|
|
|
},
|
|
|
|
DeleteFunc: func(o interface{}) {
|
|
|
|
eventCount.WithLabelValues("pod", "delete").Inc()
|
|
|
|
p.enqueue(o)
|
|
|
|
},
|
|
|
|
UpdateFunc: func(_, o interface{}) {
|
|
|
|
eventCount.WithLabelValues("pod", "update").Inc()
|
|
|
|
p.enqueue(o)
|
|
|
|
},
|
|
|
|
})
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *Pod) enqueue(obj interface{}) {
|
|
|
|
key, err := cache.DeletionHandlingMetaNamespaceKeyFunc(obj)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
e.queue.Add(key)
|
2016-10-07 12:53:11 +00:00
|
|
|
}
|
2016-07-01 10:17:17 +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 (p *Pod) Run(ctx context.Context, ch chan<- []*targetgroup.Group) {
|
2018-04-09 16:35:14 +00:00
|
|
|
defer p.queue.ShutDown()
|
2016-07-01 10:17:17 +00:00
|
|
|
|
2018-04-09 16:35:14 +00:00
|
|
|
if !cache.WaitForCacheSync(ctx.Done(), p.informer.HasSynced) {
|
|
|
|
level.Error(p.logger).Log("msg", "pod informer unable to sync cache")
|
2016-07-01 10:17:17 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-04-09 16:35:14 +00:00
|
|
|
go func() {
|
2018-04-10 08:53:00 +00:00
|
|
|
for p.process(ctx, ch) {
|
2018-04-09 16:35:14 +00:00
|
|
|
}
|
|
|
|
}()
|
2016-07-01 10:17:17 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
// Block until the target provider is explicitly canceled.
|
|
|
|
<-ctx.Done()
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 08:53:00 +00:00
|
|
|
func (p *Pod) process(ctx context.Context, ch chan<- []*targetgroup.Group) bool {
|
2018-04-09 16:35:14 +00:00
|
|
|
keyObj, quit := p.queue.Get()
|
|
|
|
if quit {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
defer p.queue.Done(keyObj)
|
|
|
|
key := keyObj.(string)
|
|
|
|
|
|
|
|
namespace, name, err := cache.SplitMetaNamespaceKey(key)
|
|
|
|
if err != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
o, exists, err := p.store.GetByKey(key)
|
|
|
|
if err != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if !exists {
|
2018-04-10 08:53:00 +00:00
|
|
|
send(ctx, p.logger, RolePod, ch, &targetgroup.Group{Source: podSourceFromNamespaceAndName(namespace, name)})
|
2018-04-09 16:35:14 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
eps, err := convertToPod(o)
|
|
|
|
if err != nil {
|
|
|
|
level.Error(p.logger).Log("msg", "converting to Pod object failed", "err", err)
|
|
|
|
return true
|
|
|
|
}
|
2018-04-10 08:53:00 +00:00
|
|
|
send(ctx, p.logger, RolePod, ch, p.buildPod(eps))
|
2018-04-09 16:35:14 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-11-14 15:21:38 +00:00
|
|
|
func convertToPod(o interface{}) (*apiv1.Pod, error) {
|
2017-09-04 11:10:44 +00:00
|
|
|
pod, ok := o.(*apiv1.Pod)
|
|
|
|
if ok {
|
|
|
|
return pod, nil
|
2016-11-14 15:21:38 +00:00
|
|
|
}
|
|
|
|
|
2018-04-09 16:35:14 +00:00
|
|
|
return nil, fmt.Errorf("Received unexpected object: %v", o)
|
2016-11-14 15:21:38 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
const (
|
|
|
|
podNameLabel = metaLabelPrefix + "pod_name"
|
|
|
|
podIPLabel = metaLabelPrefix + "pod_ip"
|
|
|
|
podContainerNameLabel = metaLabelPrefix + "pod_container_name"
|
|
|
|
podContainerPortNameLabel = metaLabelPrefix + "pod_container_port_name"
|
|
|
|
podContainerPortNumberLabel = metaLabelPrefix + "pod_container_port_number"
|
|
|
|
podContainerPortProtocolLabel = metaLabelPrefix + "pod_container_port_protocol"
|
|
|
|
podReadyLabel = metaLabelPrefix + "pod_ready"
|
|
|
|
podLabelPrefix = metaLabelPrefix + "pod_label_"
|
|
|
|
podAnnotationPrefix = metaLabelPrefix + "pod_annotation_"
|
|
|
|
podNodeNameLabel = metaLabelPrefix + "pod_node_name"
|
|
|
|
podHostIPLabel = metaLabelPrefix + "pod_host_ip"
|
2017-11-07 16:24:23 +00:00
|
|
|
podUID = metaLabelPrefix + "pod_uid"
|
2018-04-06 22:27:39 +00:00
|
|
|
podControllerKind = metaLabelPrefix + "pod_controller_kind"
|
|
|
|
podControllerName = metaLabelPrefix + "pod_controller_name"
|
2016-10-07 12:53:11 +00:00
|
|
|
)
|
2016-07-01 10:17:17 +00:00
|
|
|
|
2018-04-06 22:27:39 +00:00
|
|
|
// GetControllerOf returns a pointer to a copy of the controllerRef if controllee has a controller
|
|
|
|
// https://github.com/kubernetes/apimachinery/blob/cd2cae2b39fa57e8063fa1f5f13cfe9862db3d41/pkg/apis/meta/v1/controller_ref.go
|
|
|
|
func GetControllerOf(controllee metav1.Object) *metav1.OwnerReference {
|
|
|
|
for _, ref := range controllee.GetOwnerReferences() {
|
|
|
|
if ref.Controller != nil && *ref.Controller {
|
|
|
|
return &ref
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
func podLabels(pod *apiv1.Pod) model.LabelSet {
|
|
|
|
ls := model.LabelSet{
|
|
|
|
podNameLabel: lv(pod.ObjectMeta.Name),
|
|
|
|
podIPLabel: lv(pod.Status.PodIP),
|
|
|
|
podReadyLabel: podReady(pod),
|
|
|
|
podNodeNameLabel: lv(pod.Spec.NodeName),
|
|
|
|
podHostIPLabel: lv(pod.Status.HostIP),
|
2017-11-07 16:24:23 +00:00
|
|
|
podUID: lv(string(pod.ObjectMeta.UID)),
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
|
|
|
|
2018-04-06 22:27:39 +00:00
|
|
|
createdBy := GetControllerOf(pod)
|
|
|
|
if createdBy != nil {
|
|
|
|
if createdBy.Kind != "" {
|
|
|
|
ls[podControllerKind] = lv(createdBy.Kind)
|
|
|
|
}
|
|
|
|
if createdBy.Name != "" {
|
|
|
|
ls[podControllerName] = lv(createdBy.Name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
for k, v := range pod.Labels {
|
2016-10-11 07:22:56 +00:00
|
|
|
ln := strutil.SanitizeLabelName(podLabelPrefix + k)
|
2016-10-07 12:53:11 +00:00
|
|
|
ls[model.LabelName(ln)] = lv(v)
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
for k, v := range pod.Annotations {
|
2016-10-11 07:22:56 +00:00
|
|
|
ln := strutil.SanitizeLabelName(podAnnotationPrefix + k)
|
2016-10-07 12:53:11 +00:00
|
|
|
ls[model.LabelName(ln)] = lv(v)
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
return ls
|
2016-07-01 10:17:17 +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 (p *Pod) buildPod(pod *apiv1.Pod) *targetgroup.Group {
|
|
|
|
tg := &targetgroup.Group{
|
2016-10-07 12:53:11 +00:00
|
|
|
Source: podSource(pod),
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
2018-02-14 13:23:52 +00:00
|
|
|
// PodIP can be empty when a pod is starting or has been evicted.
|
|
|
|
if len(pod.Status.PodIP) == 0 {
|
|
|
|
return tg
|
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
tg.Labels = podLabels(pod)
|
|
|
|
tg.Labels[namespaceLabel] = lv(pod.Namespace)
|
|
|
|
|
|
|
|
for _, c := range pod.Spec.Containers {
|
|
|
|
// If no ports are defined for the container, create an anonymous
|
|
|
|
// target per container.
|
|
|
|
if len(c.Ports) == 0 {
|
|
|
|
// We don't have a port so we just set the address label to the pod IP.
|
|
|
|
// The user has to add a port manually.
|
|
|
|
tg.Targets = append(tg.Targets, model.LabelSet{
|
|
|
|
model.AddressLabel: lv(pod.Status.PodIP),
|
|
|
|
podContainerNameLabel: lv(c.Name),
|
|
|
|
})
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Otherwise create one target for each container/port combination.
|
|
|
|
for _, port := range c.Ports {
|
2016-10-17 09:05:13 +00:00
|
|
|
ports := strconv.FormatUint(uint64(port.ContainerPort), 10)
|
2016-10-07 12:53:11 +00:00
|
|
|
addr := net.JoinHostPort(pod.Status.PodIP, ports)
|
2016-07-01 10:17:17 +00:00
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
tg.Targets = append(tg.Targets, model.LabelSet{
|
|
|
|
model.AddressLabel: lv(addr),
|
|
|
|
podContainerNameLabel: lv(c.Name),
|
|
|
|
podContainerPortNumberLabel: lv(ports),
|
|
|
|
podContainerPortNameLabel: lv(port.Name),
|
|
|
|
podContainerPortProtocolLabel: lv(string(port.Protocol)),
|
|
|
|
})
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tg
|
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
func podSource(pod *apiv1.Pod) string {
|
2018-04-25 16:36:22 +00:00
|
|
|
return podSourceFromNamespaceAndName(pod.Namespace, pod.Name)
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
|
|
|
|
2018-04-09 16:35:14 +00:00
|
|
|
func podSourceFromNamespaceAndName(namespace, name string) string {
|
|
|
|
return "pod/" + namespace + "/" + name
|
|
|
|
}
|
|
|
|
|
2016-10-07 12:53:11 +00:00
|
|
|
func podReady(pod *apiv1.Pod) model.LabelValue {
|
|
|
|
for _, cond := range pod.Status.Conditions {
|
|
|
|
if cond.Type == apiv1.PodReady {
|
|
|
|
return lv(strings.ToLower(string(cond.Status)))
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-07 12:53:11 +00:00
|
|
|
return lv(strings.ToLower(string(api.ConditionUnknown)))
|
2016-07-01 10:17:17 +00:00
|
|
|
}
|