| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | package object
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import (
 | 
					
						
							|  |  |  | 	"time"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/plugin"
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | 	"github.com/coredns/coredns/plugin/pkg/log"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	"github.com/prometheus/client_golang/prometheus"
 | 
					
						
							| 
									
										
										
										
											2020-07-25 23:06:28 +08:00
										 |  |  | 	"github.com/prometheus/client_golang/prometheus/promauto"
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	api "k8s.io/api/core/v1"
 | 
					
						
							| 
									
										
										
										
											2020-10-30 08:14:30 -04:00
										 |  |  | 	meta "k8s.io/apimachinery/pkg/apis/meta/v1"
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var (
 | 
					
						
							| 
									
										
										
										
											2020-10-28 14:39:56 +08:00
										 |  |  | 	// DNSProgrammingLatency is defined as the time it took to program a DNS instance - from the time
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	// a service or pod has changed to the time the change was propagated and was available to be
 | 
					
						
							|  |  |  | 	// served by a DNS server.
 | 
					
						
							|  |  |  | 	// The definition of this SLI can be found at https://github.com/kubernetes/community/blob/master/sig-scalability/slos/dns_programming_latency.md
 | 
					
						
							|  |  |  | 	// Note that the metrics is partially based on the time exported by the endpoints controller on
 | 
					
						
							|  |  |  | 	// the master machine. The measurement may be inaccurate if there is a clock drift between the
 | 
					
						
							|  |  |  | 	// node and master machine.
 | 
					
						
							|  |  |  | 	// The service_kind label can be one of:
 | 
					
						
							|  |  |  | 	//   * cluster_ip
 | 
					
						
							|  |  |  | 	//   * headless_with_selector
 | 
					
						
							|  |  |  | 	//   * headless_without_selector
 | 
					
						
							| 
									
										
										
										
											2020-10-28 14:39:56 +08:00
										 |  |  | 	DNSProgrammingLatency = promauto.NewHistogramVec(prometheus.HistogramOpts{
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 		Namespace: plugin.Namespace,
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | 		Subsystem: "kubernetes",
 | 
					
						
							| 
									
										
										
										
											2019-10-07 16:38:46 +01:00
										 |  |  | 		Name:      "dns_programming_duration_seconds",
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 		// From 1 millisecond to ~17 minutes.
 | 
					
						
							| 
									
										
										
										
											2024-03-11 21:09:09 +01:00
										 |  |  | 		Buckets:                     prometheus.ExponentialBuckets(0.001, 2, 20),
 | 
					
						
							|  |  |  | 		NativeHistogramBucketFactor: plugin.NativeHistogramBucketFactor,
 | 
					
						
							|  |  |  | 		Help:                        "Histogram of the time (in seconds) it took to program a dns instance.",
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	}, []string{"service_kind"})
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | 	// DurationSinceFunc returns the duration elapsed since the given time.
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	// Added as a global variable to allow injection for testing.
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | 	DurationSinceFunc = time.Since
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | // EndpointLatencyRecorder records latency metric for endpoint objects
 | 
					
						
							|  |  |  | type EndpointLatencyRecorder struct {
 | 
					
						
							|  |  |  | 	TT          time.Time
 | 
					
						
							|  |  |  | 	ServiceFunc func(meta.Object) []*Service
 | 
					
						
							|  |  |  | 	Services    []*Service
 | 
					
						
							|  |  |  | }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (l *EndpointLatencyRecorder) init(o meta.Object) {
 | 
					
						
							|  |  |  | 	l.Services = l.ServiceFunc(o)
 | 
					
						
							|  |  |  | 	l.TT = time.Time{}
 | 
					
						
							|  |  |  | 	stringVal, ok := o.GetAnnotations()[api.EndpointsLastChangeTriggerTime]
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	if ok {
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | 		tt, err := time.Parse(time.RFC3339Nano, stringVal)
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 		if err != nil {
 | 
					
						
							|  |  |  | 			log.Warningf("DnsProgrammingLatency cannot be calculated for Endpoints '%s/%s'; invalid %q annotation RFC3339 value of %q",
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | 				o.GetNamespace(), o.GetName(), api.EndpointsLastChangeTriggerTime, stringVal)
 | 
					
						
							|  |  |  | 			// In case of error val = time.Zero, which is ignored downstream.
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 		}
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | 		l.TT = tt
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	}
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | }
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | func (l *EndpointLatencyRecorder) record() {
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 	// isHeadless indicates whether the endpoints object belongs to a headless
 | 
					
						
							|  |  |  | 	// service (i.e. clusterIp = None). Note that this can be a  false negatives if the service
 | 
					
						
							|  |  |  | 	// informer is lagging, i.e. we may not see a recently created service. Given that the services
 | 
					
						
							|  |  |  | 	// don't change very often (comparing to much more frequent endpoints changes), cases when this method
 | 
					
						
							|  |  |  | 	// will return wrong answer should be relatively rare. Because of that we intentionally accept this
 | 
					
						
							|  |  |  | 	// flaw to keep the solution simple.
 | 
					
						
							| 
									
										
										
										
											2020-12-21 05:30:24 -05:00
										 |  |  | 	isHeadless := len(l.Services) == 1 && l.Services[0].Headless()
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | 	if !isHeadless || l.TT.IsZero() {
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | 		return
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// If we're here it means that the Endpoints object is for a headless service and that
 | 
					
						
							|  |  |  | 	// the Endpoints object was created by the endpoints-controller (because the
 | 
					
						
							|  |  |  | 	// LastChangeTriggerTime annotation is set). It means that the corresponding service is a
 | 
					
						
							|  |  |  | 	// "headless service with selector".
 | 
					
						
							| 
									
										
										
										
											2020-10-28 14:39:56 +08:00
										 |  |  | 	DNSProgrammingLatency.WithLabelValues("headless_with_selector").
 | 
					
						
							| 
									
										
										
										
											2020-12-01 15:29:05 -05:00
										 |  |  | 		Observe(DurationSinceFunc(l.TT).Seconds())
 | 
					
						
							| 
									
										
										
										
											2019-10-04 17:48:43 +02:00
										 |  |  | }
 |