mirror of https://github.com/prometheus/prometheus
Browse Source
This adds plumbing for a parallel version of the new K8S SD and adds pod discovery as the first role.pull/2040/head
Fabian Reinartz
8 years ago
5 changed files with 313 additions and 0 deletions
@ -0,0 +1,121 @@
|
||||
package kubernetesv2 |
||||
|
||||
import ( |
||||
"io/ioutil" |
||||
"time" |
||||
|
||||
"github.com/prometheus/prometheus/config" |
||||
|
||||
"github.com/prometheus/common/log" |
||||
"github.com/prometheus/common/model" |
||||
"golang.org/x/net/context" |
||||
"k8s.io/kubernetes/pkg/api" |
||||
apiv1 "k8s.io/kubernetes/pkg/api/v1" |
||||
"k8s.io/kubernetes/pkg/client/cache" |
||||
kubernetes "k8s.io/kubernetes/pkg/client/clientset_generated/release_1_5" |
||||
rest "k8s.io/kubernetes/pkg/client/restclient" |
||||
"k8s.io/kubernetes/pkg/util/runtime" |
||||
) |
||||
|
||||
const ( |
||||
// kubernetesMetaLabelPrefix is the meta prefix used for all meta labels.
|
||||
// in this discovery.
|
||||
metaLabelPrefix = model.MetaLabelPrefix + "kubernetes_" |
||||
namespaceLabel = metaLabelPrefix + "namespace" |
||||
) |
||||
|
||||
// Kubernetes implements the TargetProvider interface for discovering
|
||||
// targets from Kubernetes.
|
||||
type Kubernetes struct { |
||||
client kubernetes.Interface |
||||
role config.KubernetesRole |
||||
logger log.Logger |
||||
} |
||||
|
||||
func init() { |
||||
runtime.ErrorHandlers = append(runtime.ErrorHandlers, func(err error) { |
||||
log.With("component", "kube_client_runtime").Errorln(err) |
||||
}) |
||||
} |
||||
|
||||
// New creates a new Kubernetes discovery for the given role.
|
||||
func New(l log.Logger, conf *config.KubernetesV2SDConfig) (*Kubernetes, error) { |
||||
var ( |
||||
kcfg *rest.Config |
||||
err error |
||||
) |
||||
if conf.APIServer.String() == "" { |
||||
kcfg, err = rest.InClusterConfig() |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
} else { |
||||
token := conf.BearerToken |
||||
if conf.BearerTokenFile != "" { |
||||
bf, err := ioutil.ReadFile(conf.BearerTokenFile) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
token = string(bf) |
||||
} |
||||
|
||||
kcfg = &rest.Config{ |
||||
Host: conf.APIServer.String(), |
||||
BearerToken: token, |
||||
TLSClientConfig: rest.TLSClientConfig{ |
||||
CAFile: conf.TLSConfig.CAFile, |
||||
}, |
||||
} |
||||
} |
||||
kcfg.UserAgent = "prometheus/discovery" |
||||
|
||||
if conf.BasicAuth != nil { |
||||
kcfg.Username = conf.BasicAuth.Username |
||||
kcfg.Password = conf.BasicAuth.Password |
||||
} |
||||
kcfg.TLSClientConfig.CertFile = conf.TLSConfig.CertFile |
||||
kcfg.TLSClientConfig.KeyFile = conf.TLSConfig.KeyFile |
||||
kcfg.Insecure = conf.TLSConfig.InsecureSkipVerify |
||||
|
||||
c, err := kubernetes.NewForConfig(kcfg) |
||||
if err != nil { |
||||
return nil, err |
||||
} |
||||
return &Kubernetes{ |
||||
client: c, |
||||
logger: l, |
||||
role: conf.Role, |
||||
}, nil |
||||
} |
||||
|
||||
const resyncPeriod = 10 * time.Minute |
||||
|
||||
// Run implements the TargetProvider interface.
|
||||
func (k *Kubernetes) Run(ctx context.Context, ch chan<- []*config.TargetGroup) { |
||||
defer close(ch) |
||||
|
||||
rclient := k.client.Core().GetRESTClient() |
||||
|
||||
switch k.role { |
||||
case "pod": |
||||
plw := cache.NewListWatchFromClient(rclient, "pods", api.NamespaceAll, nil) |
||||
pod := NewPods( |
||||
k.logger.With("kubernetes_sd", "pod"), |
||||
cache.NewSharedInformer(plw, &apiv1.Pod{}, resyncPeriod), |
||||
) |
||||
go pod.informer.Run(ctx.Done()) |
||||
|
||||
for !pod.informer.HasSynced() { |
||||
time.Sleep(100 * time.Millisecond) |
||||
} |
||||
pod.Run(ctx, ch) |
||||
default: |
||||
k.logger.Errorf("unknown Kubernetes discovery kind %q", k.role) |
||||
} |
||||
|
||||
<-ctx.Done() |
||||
} |
||||
|
||||
func lv(s string) model.LabelValue { |
||||
return model.LabelValue(s) |
||||
} |
@ -0,0 +1,139 @@
|
||||
package kubernetesv2 |
||||
|
||||
import ( |
||||
"fmt" |
||||
"net" |
||||
"strconv" |
||||
"strings" |
||||
|
||||
"github.com/prometheus/common/log" |
||||
"github.com/prometheus/common/model" |
||||
"github.com/prometheus/prometheus/config" |
||||
"golang.org/x/net/context" |
||||
"k8s.io/kubernetes/pkg/api" |
||||
apiv1 "k8s.io/kubernetes/pkg/api/v1" |
||||
"k8s.io/kubernetes/pkg/client/cache" |
||||
) |
||||
|
||||
// Pods discovers new pod targets.
|
||||
type Pod struct { |
||||
informer cache.SharedInformer |
||||
store cache.Store |
||||
logger log.Logger |
||||
} |
||||
|
||||
// NewPods creates a new pod discovery.
|
||||
func NewPods(l log.Logger, pods cache.SharedInformer) *Pod { |
||||
return &Pod{ |
||||
informer: pods, |
||||
store: pods.GetStore(), |
||||
logger: l, |
||||
} |
||||
} |
||||
|
||||
// Run implements the TargetProvider interface.
|
||||
func (p *Pod) Run(ctx context.Context, ch chan<- []*config.TargetGroup) { |
||||
// Send full initial set of pod targets.
|
||||
var initial []*config.TargetGroup |
||||
for _, o := range p.store.List() { |
||||
tg := p.buildPod(o.(*apiv1.Pod)) |
||||
initial = append(initial, tg) |
||||
|
||||
p.logger.With("tg", fmt.Sprintf("%#v", tg)).Debugln("initial pod") |
||||
} |
||||
select { |
||||
case <-ctx.Done(): |
||||
return |
||||
case ch <- initial: |
||||
} |
||||
|
||||
// Send target groups for pod updates.
|
||||
send := func(tg *config.TargetGroup) { |
||||
p.logger.With("tg", fmt.Sprintf("%#v", tg)).Debugln("pod update") |
||||
select { |
||||
case <-ctx.Done(): |
||||
case ch <- []*config.TargetGroup{tg}: |
||||
} |
||||
} |
||||
p.informer.AddEventHandler(cache.ResourceEventHandlerFuncs{ |
||||
AddFunc: func(o interface{}) { |
||||
send(p.buildPod(o.(*apiv1.Pod))) |
||||
}, |
||||
DeleteFunc: func(o interface{}) { |
||||
send(&config.TargetGroup{Source: podSource(o.(*apiv1.Pod))}) |
||||
}, |
||||
UpdateFunc: func(_, o interface{}) { |
||||
send(p.buildPod(o.(*apiv1.Pod))) |
||||
}, |
||||
}) |
||||
|
||||
// Block until the target provider is explicitly canceled.
|
||||
<-ctx.Done() |
||||
} |
||||
|
||||
const ( |
||||
podNameLabel = metaLabelPrefix + "pod_name" |
||||
podAddressLabel = metaLabelPrefix + "pod_address" |
||||
podContainerNameLabel = metaLabelPrefix + "pod_container_name" |
||||
podContainerPortNameLabel = metaLabelPrefix + "pod_container_port_name" |
||||
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" |
||||
) |
||||
|
||||
func (p *Pod) buildPod(pod *apiv1.Pod) *config.TargetGroup { |
||||
tg := &config.TargetGroup{ |
||||
Source: podSource(pod), |
||||
} |
||||
tg.Labels = model.LabelSet{ |
||||
namespaceLabel: lv(pod.Namespace), |
||||
podNameLabel: lv(pod.ObjectMeta.Name), |
||||
podAddressLabel: lv(pod.Status.PodIP), |
||||
podReadyLabel: podReady(pod), |
||||
podNodeNameLabel: lv(pod.Spec.NodeName), |
||||
podHostIPLabel: lv(pod.Status.HostIP), |
||||
} |
||||
|
||||
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 { |
||||
addr := net.JoinHostPort(pod.Status.PodIP, strconv.FormatInt(int64(port.ContainerPort), 10)) |
||||
|
||||
tg.Targets = append(tg.Targets, model.LabelSet{ |
||||
model.AddressLabel: lv(addr), |
||||
podContainerNameLabel: lv(c.Name), |
||||
podContainerPortNameLabel: lv(port.Name), |
||||
podContainerPortProtocolLabel: lv(string(port.Protocol)), |
||||
}) |
||||
} |
||||
} |
||||
|
||||
return tg |
||||
} |
||||
|
||||
func podSource(pod *apiv1.Pod) string { |
||||
return "pod/" + pod.Namespace + "/" + pod.Name |
||||
} |
||||
|
||||
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))) |
||||
} |
||||
} |
||||
return lv(strings.ToLower(string(api.ConditionUnknown))) |
||||
} |
Loading…
Reference in new issue