package object import ( "time" "github.com/coredns/coredns/plugin" "github.com/coredns/coredns/plugin/pkg/log" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" api "k8s.io/api/core/v1" meta "k8s.io/apimachinery/pkg/apis/meta/v1" ) var ( // DNSProgrammingLatency is defined as the time it took to program a DNS instance - from the time // 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 DNSProgrammingLatency = promauto.NewHistogramVec(prometheus.HistogramOpts{ Namespace: plugin.Namespace, Subsystem: "kubernetes", Name: "dns_programming_duration_seconds", // From 1 millisecond to ~17 minutes. Buckets: prometheus.ExponentialBuckets(0.001, 2, 20), Help: "Histogram of the time (in seconds) it took to program a dns instance.", }, []string{"service_kind"}) // DurationSinceFunc returns the duration elapsed since the given time. // Added as a global variable to allow injection for testing. DurationSinceFunc = time.Since ) // 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] if ok { tt, err := time.Parse(time.RFC3339Nano, stringVal) if err != nil { log.Warningf("DnsProgrammingLatency cannot be calculated for Endpoints '%s/%s'; invalid %q annotation RFC3339 value of %q", o.GetNamespace(), o.GetName(), api.EndpointsLastChangeTriggerTime, stringVal) // In case of error val = time.Zero, which is ignored downstream. } l.TT = tt } } func (l *EndpointLatencyRecorder) record() { // 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. isHeadless := len(l.Services) == 1 && l.Services[0].Headless() if !isHeadless || l.TT.IsZero() { 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". DNSProgrammingLatency.WithLabelValues("headless_with_selector"). Observe(DurationSinceFunc(l.TT).Seconds()) } ption value='derrick/test/add-ed25519-tests'>derrick/test/add-ed25519-tests Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/integration/snippets/latin1-chars-in-regexp.js (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-03-02mark more things as unreachableGravatar Jarred Sumner 3-0/+5
2022-03-02Add context ptr to forEach in iterableGravatar Jarred Sumner 1-37/+25
2022-03-02[bun.js] Add `Bun.inspect` – like util.inspect()Gravatar Jarred Sumner 7-276/+446
2022-03-02Make http requests a little fasterGravatar Jarred Sumner 1-1/+6
2022-03-02[bun dev] Improve HMR performance by pooling websocket threadsGravatar Jarred Sumner 1-37/+59
2022-03-02Send `Date` header in `bun dev`Gravatar Jarred Sumner 8-0/+2338
2022-03-02[internal] log memory allocations in mimalloc arenasGravatar Jarred Sumner 2-0/+7
2022-03-02Reduce stack size usage by about 120 KBGravatar Jarred Sumner 1-2/+6
2022-03-02add is_bindgen stubGravatar Jarred Sumner 3-0/+5
2022-03-02reduce number of global constantsGravatar Jarred Sumner 1-55/+29
2022-03-02reduce number of global variablesGravatar Jarred Sumner 3-21/+1752
2022-03-02Update bindings.zigGravatar Jarred Sumner 1-0/+4
2022-03-02Remove function from bindingsGravatar Jarred Sumner 1-7/+1
2022-03-02`DELETE` headerGravatar Jarred Sumner 1-0/+4
2022-03-02[bun.js] fix unicode handling in RouterGravatar Jarred Sumner 1-3/+9
2022-03-02[bun.js] Fix crash due to incorrectly creating stringGravatar Jarred Sumner 1-3/+1
2022-03-02remove a threadlocalGravatar Jarred Sumner 2-12/+908
2022-03-02cleanup error printingGravatar Jarred Sumner 2-2/+5
2022-03-02Update global.zigGravatar Jarred Sumner 1-0/+17
2022-03-02Update fs.zigGravatar Jarred Sumner 1-0/+3
2022-03-02[bun run] Set more environment variablesGravatar Jarred Sumner 2-0/+55
2022-03-02clean up error message when CLI flag is invalidGravatar Jarred Sumner 1-1/+4
2022-03-02add `bun pm cache` and `bun pm cache rm` commandsGravatar Jarred Sumner 1-0/+20
2022-03-01[bun.js] `ResolveError.prototype.toString()` `BuildError.prototype.toString()`Gravatar Jarred Sumner 1-2/+94
2022-03-01add `allowBunRuntime` and `autoImportJSX` flags to Bun.TranspilerGravatar Jarred Sumner 1-1/+32
2022-03-01cleanup code that checks if it should send an HTTP bodyGravatar Jarred Sumner 2-6/+18
2022-03-01[JS Parser] Fix bug with `super` from adding class static blocksGravatar Jarred Sumner 1-1/+12
2022-03-01Update bundler.zigGravatar Jarred Sumner 1-1/+5
2022-03-01Remove unused boolGravatar Jarred Sumner 1-3/+0
2022-03-01[bun.js] Allow disabling runtime imports so bun can build for nodeGravatar Jarred Sumner 3-5/+11
2022-03-01[JS Parser] Make auto importing JSX a flag so the API is easierGravatar Jarred Sumner 1-295/+297
2022-03-01cleanupGravatar Jarred Sumner 1-2/+2
2022-03-01Update javascript.zigGravatar Jarred Sumner 1-50/+0
2022-03-01[bun.js] shim async fsGravatar Jarred Sumner 2-36/+226
2022-03-01[bun.js] Implement `setTimeout`, `setInterval`, `clearTimeout`, `clearInterval`Gravatar Jarred Sumner 11-41/+295
2022-02-27Update transpiler.test.jsGravatar Jarred Sumner 1-0/+8
2022-02-27[TS] Make `export {type foo}` output consistent with TS parserGravatar Jarred Sumner 1-3/+45
2022-02-27WASMGravatar Jarred Sumner 83-690/+10789