mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
9b2246c29b
* started work on sd for k8s * continue work on watch sd * fixes * continue work * continue work on sd k8s * disable gzip * fixes typos * log errror * minor fix Co-authored-by: Aliaksandr Valialkin <valyala@gmail.com>
107 lines
3.1 KiB
Go
107 lines
3.1 KiB
Go
package kubernetes
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promscrape/discoveryutils"
|
|
)
|
|
|
|
// ServiceList is k8s service list.
|
|
//
|
|
// See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#servicelist-v1-core
|
|
type ServiceList struct {
|
|
Items []Service
|
|
Metadata listMetadata `json:"metadata"`
|
|
}
|
|
|
|
// Service is k8s service.
|
|
//
|
|
// See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#service-v1-core
|
|
type Service struct {
|
|
Metadata ObjectMeta
|
|
Spec ServiceSpec
|
|
}
|
|
|
|
func (s Service) key() string {
|
|
return s.Metadata.Namespace + "/" + s.Metadata.Name
|
|
}
|
|
|
|
// ServiceSpec is k8s service spec.
|
|
//
|
|
// See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#servicespec-v1-core
|
|
type ServiceSpec struct {
|
|
ClusterIP string
|
|
ExternalName string
|
|
Type string
|
|
Ports []ServicePort
|
|
}
|
|
|
|
// ServicePort is k8s service port.
|
|
//
|
|
// See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#serviceport-v1-core
|
|
type ServicePort struct {
|
|
Name string
|
|
Protocol string
|
|
Port int
|
|
}
|
|
|
|
// parseServiceList parses ServiceList from data.
|
|
func parseServiceList(data []byte) (*ServiceList, error) {
|
|
var sl ServiceList
|
|
if err := json.Unmarshal(data, &sl); err != nil {
|
|
return nil, fmt.Errorf("cannot unmarshal ServiceList from %q: %w", data, err)
|
|
}
|
|
return &sl, nil
|
|
}
|
|
|
|
// appendTargetLabels appends labels for each port of the given Service s to ms and returns the result.
|
|
//
|
|
// See https://prometheus.io/docs/prometheus/latest/configuration/configuration/#service
|
|
func (s *Service) appendTargetLabels(ms []map[string]string) []map[string]string {
|
|
host := fmt.Sprintf("%s.%s.svc", s.Metadata.Name, s.Metadata.Namespace)
|
|
for _, sp := range s.Spec.Ports {
|
|
addr := discoveryutils.JoinHostPort(host, sp.Port)
|
|
m := map[string]string{
|
|
"__address__": addr,
|
|
"__meta_kubernetes_service_port_name": sp.Name,
|
|
"__meta_kubernetes_service_port_protocol": sp.Protocol,
|
|
}
|
|
s.appendCommonLabels(m)
|
|
ms = append(ms, m)
|
|
}
|
|
return ms
|
|
}
|
|
|
|
func (s *Service) appendCommonLabels(m map[string]string) {
|
|
m["__meta_kubernetes_namespace"] = s.Metadata.Namespace
|
|
m["__meta_kubernetes_service_name"] = s.Metadata.Name
|
|
m["__meta_kubernetes_service_type"] = s.Spec.Type
|
|
if s.Spec.Type != "ExternalName" {
|
|
m["__meta_kubernetes_service_cluster_ip"] = s.Spec.ClusterIP
|
|
} else {
|
|
m["__meta_kubernetes_service_external_name"] = s.Spec.ExternalName
|
|
}
|
|
s.Metadata.registerLabelsAndAnnotations("__meta_kubernetes_service", m)
|
|
}
|
|
|
|
func processService(cfg *apiConfig, svc *Service, action string) {
|
|
key := buildSyncKey("service", cfg.setName, svc.key())
|
|
switch action {
|
|
case "ADDED", "MODIFIED":
|
|
cfg.targetChan <- SyncEvent{
|
|
Labels: svc.appendTargetLabels(nil),
|
|
Key: key,
|
|
ConfigSectionSet: cfg.setName,
|
|
}
|
|
case "DELETED":
|
|
cfg.targetChan <- SyncEvent{
|
|
Key: key,
|
|
ConfigSectionSet: cfg.setName,
|
|
}
|
|
case "ERROR":
|
|
default:
|
|
logger.Warnf("unexpected action: %s", action)
|
|
}
|
|
}
|