From 98d34a88a0add89902a526acaf01835cd191e0e9 Mon Sep 17 00:00:00 2001 From: Dan Kortschak Date: Mon, 30 Sep 2024 17:53:43 +0930 Subject: [PATCH 1/6] libbeat/cfgfile: remove futile errors.Is call (#40851) Also remove the no-lint directive and use errors.As to identify the type of the error returned by createRunner. --- libbeat/cfgfile/list.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libbeat/cfgfile/list.go b/libbeat/cfgfile/list.go index d557ffa25c2..3a9e3429d29 100644 --- a/libbeat/cfgfile/list.go +++ b/libbeat/cfgfile/list.go @@ -131,8 +131,7 @@ func (r *RunnerList) Reload(configs []*reload.ConfigWithMeta) error { for hash, config := range startList { runner, err := createRunner(r.factory, r.pipeline, config) if err != nil { - errors.Is(err, &common.ErrInputNotFinished{}) - if _, ok := err.(*common.ErrInputNotFinished); ok { //nolint:errorlint // ErrInputNotFinished is a struct type, not an expression/error value + if errors.As(err, new(*common.ErrInputNotFinished)) { // error is related to state, we should not log at error level r.logger.Debugf("Error creating runner from config: %s", err) } else { From 74faa2febb95c673edb7de0e3c048d71bd3870e4 Mon Sep 17 00:00:00 2001 From: Khushi Jain Date: Mon, 30 Sep 2024 15:47:55 +0530 Subject: [PATCH 2/6] Update README.md (#40983) --- libbeat/autodiscover/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbeat/autodiscover/README.md b/libbeat/autodiscover/README.md index 912d254b6f5..9b334ecf1c0 100644 --- a/libbeat/autodiscover/README.md +++ b/libbeat/autodiscover/README.md @@ -24,7 +24,7 @@ We will describe the internals of three ways of Kubernetes autodiscover process. ## Templates Based Autodiscover As the name suggests, user needs to set a template to indicate to autodiscover provider what to do. -There is one configuration variable that differentiates in a way how the autosicover process is performed. +There is one configuration variable that differentiates in a way how the autodiscover process is performed. This variable is `unique` ### Autodiscover with LeaderElection From 08d3ed12dd852e6cccd5751f06335bca7820defa Mon Sep 17 00:00:00 2001 From: kruskall <99559985+kruskall@users.noreply.github.com> Date: Mon, 30 Sep 2024 17:39:39 +0200 Subject: [PATCH 3/6] fix(filebeat): do not import kubernetes provider on unsupported platforms (#41041) k8s provider is only supported in some platforms the import will cause a compile error in other systems --- filebeat/autodiscover/builder/hints/logs.go | 28 +++++++++++-------- filebeat/autodiscover/defaults.go | 2 +- .../{defaults_aix.go => defaults_other.go} | 4 +-- 3 files changed, 20 insertions(+), 14 deletions(-) rename filebeat/autodiscover/{defaults_aix.go => defaults_other.go} (89%) diff --git a/filebeat/autodiscover/builder/hints/logs.go b/filebeat/autodiscover/builder/hints/logs.go index cff38592c06..042ddec8a67 100644 --- a/filebeat/autodiscover/builder/hints/logs.go +++ b/filebeat/autodiscover/builder/hints/logs.go @@ -29,7 +29,6 @@ import ( "github.com/elastic/beats/v7/filebeat/fileset" "github.com/elastic/beats/v7/filebeat/harvester" "github.com/elastic/beats/v7/libbeat/autodiscover" - "github.com/elastic/beats/v7/libbeat/autodiscover/providers/kubernetes" "github.com/elastic/beats/v7/libbeat/autodiscover/template" "github.com/elastic/beats/v7/libbeat/beat" conf "github.com/elastic/elastic-agent-libs/config" @@ -126,26 +125,26 @@ func (l *logHints) CreateConfig(event bus.Event, options ...ucfg.Option) []*conf // multiline options should be under multiline parser in filestream input parsersTempCfg := []mapstr.M{} mlineTempCfg := mapstr.M{} - kubernetes.ShouldPut(mlineTempCfg, multiline, mline, l.log) + shouldPut(mlineTempCfg, multiline, mline, l.log) parsersTempCfg = append(parsersTempCfg, mlineTempCfg) - kubernetes.ShouldPut(tempCfg, parsers, parsersTempCfg, l.log) + shouldPut(tempCfg, parsers, parsersTempCfg, l.log) } else { - kubernetes.ShouldPut(tempCfg, multiline, mline, l.log) + shouldPut(tempCfg, multiline, mline, l.log) } } if ilines := l.getIncludeLines(h); len(ilines) != 0 { - kubernetes.ShouldPut(tempCfg, includeLines, ilines, l.log) + shouldPut(tempCfg, includeLines, ilines, l.log) } if elines := l.getExcludeLines(h); len(elines) != 0 { - kubernetes.ShouldPut(tempCfg, excludeLines, elines, l.log) + shouldPut(tempCfg, excludeLines, elines, l.log) } if procs := l.getProcessors(h); len(procs) != 0 { - kubernetes.ShouldPut(tempCfg, processors, procs, l.log) + shouldPut(tempCfg, processors, procs, l.log) } if pip := l.getPipeline(h); len(pip) != 0 { - kubernetes.ShouldPut(tempCfg, pipeline, pip, l.log) + shouldPut(tempCfg, pipeline, pip, l.log) } if jsonOpts := l.getJSONOptions(h); len(jsonOpts) != 0 { @@ -153,11 +152,11 @@ func (l *logHints) CreateConfig(event bus.Event, options ...ucfg.Option) []*conf // json options should be under ndjson parser in filestream input parsersTempCfg := []mapstr.M{} ndjsonTempCfg := mapstr.M{} - kubernetes.ShouldPut(ndjsonTempCfg, ndjson, jsonOpts, l.log) + shouldPut(ndjsonTempCfg, ndjson, jsonOpts, l.log) parsersTempCfg = append(parsersTempCfg, ndjsonTempCfg) - kubernetes.ShouldPut(tempCfg, parsers, parsersTempCfg, l.log) + shouldPut(tempCfg, parsers, parsersTempCfg, l.log) } else { - kubernetes.ShouldPut(tempCfg, json, jsonOpts, l.log) + shouldPut(tempCfg, json, jsonOpts, l.log) } } @@ -309,3 +308,10 @@ func (l *logHints) getInputs(hints mapstr.M) []mapstr.M { return output } + +func shouldPut(event mapstr.M, field string, value interface{}, logger *logp.Logger) { + _, err := event.Put(field, value) + if err != nil { + logger.Debugf("Failed to put field '%s' with value '%s': %s", field, value, err) + } +} diff --git a/filebeat/autodiscover/defaults.go b/filebeat/autodiscover/defaults.go index 9ab0c8f17de..0c0e6d15ddf 100644 --- a/filebeat/autodiscover/defaults.go +++ b/filebeat/autodiscover/defaults.go @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -//go:build !aix +//go:build linux || darwin || windows package autodiscover diff --git a/filebeat/autodiscover/defaults_aix.go b/filebeat/autodiscover/defaults_other.go similarity index 89% rename from filebeat/autodiscover/defaults_aix.go rename to filebeat/autodiscover/defaults_other.go index 713b13ca8b3..5f25397c3c0 100644 --- a/filebeat/autodiscover/defaults_aix.go +++ b/filebeat/autodiscover/defaults_other.go @@ -15,11 +15,11 @@ // specific language governing permissions and limitations // under the License. -//go:build aix +//go:build !(linux || darwin || windows) package autodiscover // InitializeModule initializes this module. func InitializeModule() { - // does nothing on aix + // does nothing if kubernetes and docker are not supported } From 23f8564b46ca85a808e2a5fda40b6163c44900a7 Mon Sep 17 00:00:00 2001 From: Mauri de Souza Meneguzzo Date: Mon, 30 Sep 2024 14:37:57 -0300 Subject: [PATCH 4/6] Add support for kubernetes version 1.31.0 (#40856) * Add support for kubernetes version 1.31.0 * remove v1.27 from Jenkinsfile * copy metrics.1.31 from metrics.1.30 * update buildkite pipeline * add test metrics for controllermanager * add test metrics for scheduler * remove 1.27 metric test files * update k8s versions --- .../deploy/kubernetes/deploy-k8s-pipeline.yml | 32 +- deploy/kubernetes/Jenkinsfile.yml | 2 +- metricbeat/docs/modules/kubernetes.asciidoc | 2 +- .../module/kubernetes/_meta/docs.asciidoc | 2 +- .../_meta/test/{metrics.1.27 => metrics.1.31} | 2374 ++++++++++------- ...cs.1.27.expected => metrics.1.31.expected} | 1203 +++++---- .../controllermanager_test.go | 2 +- .../kubernetes/proxy/_meta/test/metrics.1.27 | 796 ------ .../kubernetes/proxy/_meta/test/metrics.1.31 | 1014 +++++++ ...cs.1.27.expected => metrics.1.31.expected} | 264 +- .../module/kubernetes/proxy/proxy_test.go | 2 +- .../_meta/test/{metrics.1.27 => metrics.1.31} | 2205 ++++++++------- ...cs.1.27.expected => metrics.1.31.expected} | 705 ++--- .../kubernetes/scheduler/scheduler_test.go | 2 +- 14 files changed, 4733 insertions(+), 3872 deletions(-) rename metricbeat/module/kubernetes/controllermanager/_meta/test/{metrics.1.27 => metrics.1.31} (67%) rename metricbeat/module/kubernetes/controllermanager/_meta/test/{metrics.1.27.expected => metrics.1.31.expected} (81%) delete mode 100644 metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.27 create mode 100644 metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.31 rename metricbeat/module/kubernetes/proxy/_meta/test/{metrics.1.27.expected => metrics.1.31.expected} (63%) rename metricbeat/module/kubernetes/scheduler/_meta/test/{metrics.1.27 => metrics.1.31} (52%) rename metricbeat/module/kubernetes/scheduler/_meta/test/{metrics.1.27.expected => metrics.1.31.expected} (57%) diff --git a/.buildkite/deploy/kubernetes/deploy-k8s-pipeline.yml b/.buildkite/deploy/kubernetes/deploy-k8s-pipeline.yml index e53ae0c0c70..3feff930cf9 100644 --- a/.buildkite/deploy/kubernetes/deploy-k8s-pipeline.yml +++ b/.buildkite/deploy/kubernetes/deploy-k8s-pipeline.yml @@ -39,10 +39,10 @@ steps: - github_commit_status: context: "deploy/k8s checks" - - label: "K8S Test/K8S version: v1.30.2" - key: "k8s-test-130" + - label: "K8S Test/K8S version: v1.31.0" + key: "k8s-test-131" env: - K8S_VERSION: "v1.30.2" + K8S_VERSION: "v1.31.0" MODULE: "${MODULE}" commands: | set -euo pipefail @@ -59,12 +59,12 @@ steps: machineType: "${GCP_HI_PERF_MACHINE_TYPE}" notify: - github_commit_status: - context: "deploy/k8s test v1.30.2" + context: "deploy/k8s test v1.31.0" - - label: "K8S Test/K8S version: v1.29.4" - key: "k8s-test-129" + - label: "K8S Test/K8S version: v1.30.4" + key: "k8s-test-130" env: - K8S_VERSION: "v1.29.4" + K8S_VERSION: "v1.30.4" MODULE: "${MODULE}" commands: | set -euo pipefail @@ -81,12 +81,12 @@ steps: machineType: "${GCP_HI_PERF_MACHINE_TYPE}" notify: - github_commit_status: - context: "deploy/k8s test v1.29.4" + context: "deploy/k8s test v1.30.4" - - label: "K8S Test/K8S version: v1.28.9" - key: "k8s-test-128" + - label: "K8S Test/K8S version: v1.29.8" + key: "k8s-test-129" env: - K8S_VERSION: "v1.28.9" + K8S_VERSION: "v1.29.8" MODULE: "${MODULE}" commands: | set -euo pipefail @@ -103,12 +103,12 @@ steps: machineType: "${GCP_HI_PERF_MACHINE_TYPE}" notify: - github_commit_status: - context: "deploy/k8s test v1.28.9" + context: "deploy/k8s test v1.29.8" - - label: "K8S Test/K8S version: v1.27.13" - key: "k8s-test-127" + - label: "K8S Test/K8S version: v1.28.13" + key: "k8s-test-128" env: - K8S_VERSION: "v1.27.13" + K8S_VERSION: "v1.28.13" MODULE: "${MODULE}" commands: | set -euo pipefail @@ -125,4 +125,4 @@ steps: machineType: "${GCP_HI_PERF_MACHINE_TYPE}" notify: - github_commit_status: - context: "deploy/k8s test v1.27.13" + context: "deploy/k8s test v1.28.13" diff --git a/deploy/kubernetes/Jenkinsfile.yml b/deploy/kubernetes/Jenkinsfile.yml index 497d043fd65..c6e1ce3debc 100644 --- a/deploy/kubernetes/Jenkinsfile.yml +++ b/deploy/kubernetes/Jenkinsfile.yml @@ -18,5 +18,5 @@ stages: make check-no-changes; stage: checks k8sTest: - k8sTest: "v1.30.0,v1.29.4,v1.28.9,v1.27.13" + k8sTest: "v1.31.0,v1.30.4,v1.29.8,v1.28.13" stage: mandatory diff --git a/metricbeat/docs/modules/kubernetes.asciidoc b/metricbeat/docs/modules/kubernetes.asciidoc index 4d030e05d72..18426c013c4 100644 --- a/metricbeat/docs/modules/kubernetes.asciidoc +++ b/metricbeat/docs/modules/kubernetes.asciidoc @@ -157,7 +157,7 @@ roleRef: === Compatibility The Kubernetes module is tested with the following versions of Kubernetes: -1.27.x, 1.28.x, 1.29.x and 1.30.x +1.28.x, 1.29.x, 1.30.x and 1.31.x [float] === Dashboard diff --git a/metricbeat/module/kubernetes/_meta/docs.asciidoc b/metricbeat/module/kubernetes/_meta/docs.asciidoc index 12389e9021f..46dfc823911 100644 --- a/metricbeat/module/kubernetes/_meta/docs.asciidoc +++ b/metricbeat/module/kubernetes/_meta/docs.asciidoc @@ -146,7 +146,7 @@ roleRef: === Compatibility The Kubernetes module is tested with the following versions of Kubernetes: -1.27.x, 1.28.x, 1.29.x and 1.30.x +1.28.x, 1.29.x, 1.30.x and 1.31.x [float] === Dashboard diff --git a/metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.27 b/metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.31 similarity index 67% rename from metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.27 rename to metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.31 index 7a63ccdf7be..49a1e46c9e6 100644 --- a/metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.27 +++ b/metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.31 @@ -1,12 +1,59 @@ # HELP aggregator_discovery_aggregation_count_total [ALPHA] Counter of number of times discovery was aggregated # TYPE aggregator_discovery_aggregation_count_total counter aggregator_discovery_aggregation_count_total 0 +# HELP apiextensions_apiserver_validation_ratcheting_seconds [ALPHA] Time for comparison of old to new for the purposes of CRDValidationRatcheting during an UPDATE in seconds. +# TYPE apiextensions_apiserver_validation_ratcheting_seconds histogram +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="1e-05"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="4e-05"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.00016"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.00064"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.00256"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.01024"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.04096"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.16384"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.65536"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="2.62144"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="+Inf"} 0 +apiextensions_apiserver_validation_ratcheting_seconds_sum 0 +apiextensions_apiserver_validation_ratcheting_seconds_count 0 # HELP apiserver_audit_event_total [ALPHA] Counter of audit events generated and sent to the audit backend. # TYPE apiserver_audit_event_total counter apiserver_audit_event_total 0 # HELP apiserver_audit_requests_rejected_total [ALPHA] Counter of apiserver requests rejected due to an error in audit logging backend. # TYPE apiserver_audit_requests_rejected_total counter apiserver_audit_requests_rejected_total 0 +# HELP apiserver_cel_compilation_duration_seconds [ALPHA] CEL compilation time in seconds. +# TYPE apiserver_cel_compilation_duration_seconds histogram +apiserver_cel_compilation_duration_seconds_bucket{le="0.005"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="0.01"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="0.025"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="0.05"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="0.1"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="0.25"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="0.5"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="1"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="2.5"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="5"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="10"} 0 +apiserver_cel_compilation_duration_seconds_bucket{le="+Inf"} 0 +apiserver_cel_compilation_duration_seconds_sum 0 +apiserver_cel_compilation_duration_seconds_count 0 +# HELP apiserver_cel_evaluation_duration_seconds [ALPHA] CEL evaluation time in seconds. +# TYPE apiserver_cel_evaluation_duration_seconds histogram +apiserver_cel_evaluation_duration_seconds_bucket{le="0.005"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="0.01"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="0.025"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="0.05"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="0.1"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="0.25"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="0.5"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="1"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="2.5"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="5"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="10"} 0 +apiserver_cel_evaluation_duration_seconds_bucket{le="+Inf"} 0 +apiserver_cel_evaluation_duration_seconds_sum 0 +apiserver_cel_evaluation_duration_seconds_count 0 # HELP apiserver_client_certificate_expiration_seconds [ALPHA] Distribution of the remaining lifetime on the certificate used to authenticate a request. # TYPE apiserver_client_certificate_expiration_seconds histogram apiserver_client_certificate_expiration_seconds_bucket{le="0"} 0 @@ -28,36 +75,36 @@ apiserver_client_certificate_expiration_seconds_sum 0 apiserver_client_certificate_expiration_seconds_count 0 # HELP apiserver_delegated_authn_request_duration_seconds [ALPHA] Request latency in seconds. Broken down by status code. # TYPE apiserver_delegated_authn_request_duration_seconds histogram -apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="0.25"} 2 -apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="0.5"} 2 -apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="0.7"} 2 -apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="1"} 2 -apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="1.5"} 2 -apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="3"} 2 -apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="5"} 2 -apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="10"} 2 -apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="+Inf"} 2 -apiserver_delegated_authn_request_duration_seconds_sum{code="201"} 0.014738774999999999 -apiserver_delegated_authn_request_duration_seconds_count{code="201"} 2 +apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="0.25"} 1 +apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="0.5"} 1 +apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="0.7"} 1 +apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="1"} 1 +apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="1.5"} 1 +apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="3"} 1 +apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="5"} 1 +apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="10"} 1 +apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="+Inf"} 1 +apiserver_delegated_authn_request_duration_seconds_sum{code="201"} 0.006586519 +apiserver_delegated_authn_request_duration_seconds_count{code="201"} 1 # HELP apiserver_delegated_authn_request_total [ALPHA] Number of HTTP requests partitioned by status code. # TYPE apiserver_delegated_authn_request_total counter -apiserver_delegated_authn_request_total{code="201"} 2 +apiserver_delegated_authn_request_total{code="201"} 1 # HELP apiserver_delegated_authz_request_duration_seconds [ALPHA] Request latency in seconds. Broken down by status code. # TYPE apiserver_delegated_authz_request_duration_seconds histogram -apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="0.25"} 2 -apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="0.5"} 2 -apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="0.7"} 2 -apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="1"} 2 -apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="1.5"} 2 -apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="3"} 2 -apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="5"} 2 -apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="10"} 2 -apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="+Inf"} 2 -apiserver_delegated_authz_request_duration_seconds_sum{code="201"} 0.005855873 -apiserver_delegated_authz_request_duration_seconds_count{code="201"} 2 +apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="0.25"} 1 +apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="0.5"} 1 +apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="0.7"} 1 +apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="1"} 1 +apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="1.5"} 1 +apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="3"} 1 +apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="5"} 1 +apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="10"} 1 +apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="+Inf"} 1 +apiserver_delegated_authz_request_duration_seconds_sum{code="201"} 0.001783348 +apiserver_delegated_authz_request_duration_seconds_count{code="201"} 1 # HELP apiserver_delegated_authz_request_total [ALPHA] Number of HTTP requests partitioned by status code. # TYPE apiserver_delegated_authz_request_total counter -apiserver_delegated_authz_request_total{code="201"} 2 +apiserver_delegated_authz_request_total{code="201"} 1 # HELP apiserver_envelope_encryption_dek_cache_fill_percent [ALPHA] Percent of the cache slots currently occupied by cached DEKs. # TYPE apiserver_envelope_encryption_dek_cache_fill_percent gauge apiserver_envelope_encryption_dek_cache_fill_percent 0 @@ -92,76 +139,84 @@ apiserver_webhooks_x509_insecure_sha1_total 0 # HELP apiserver_webhooks_x509_missing_san_total [ALPHA] Counts the number of requests to servers missing SAN extension in their serving certificate OR the number of connection failures due to the lack of x509 certificate SAN extension missing (either/or, based on the runtime environment) # TYPE apiserver_webhooks_x509_missing_san_total counter apiserver_webhooks_x509_missing_san_total 0 -# HELP attachdetach_controller_forced_detaches [ALPHA] Number of times the A/D Controller performed a forced detach -# TYPE attachdetach_controller_forced_detaches counter -attachdetach_controller_forced_detaches 0 # HELP authenticated_user_requests [ALPHA] Counter of authenticated requests broken out by username. # TYPE authenticated_user_requests counter -authenticated_user_requests{username="other"} 66 +authenticated_user_requests{username="other"} 16 # HELP authentication_attempts [ALPHA] Counter of authenticated attempts. # TYPE authentication_attempts counter -authentication_attempts{result="success"} 66 +authentication_attempts{result="success"} 16 # HELP authentication_duration_seconds [ALPHA] Authentication duration in seconds broken out by result. # TYPE authentication_duration_seconds histogram -authentication_duration_seconds_bucket{result="success",le="0.001"} 65 -authentication_duration_seconds_bucket{result="success",le="0.002"} 65 -authentication_duration_seconds_bucket{result="success",le="0.004"} 65 -authentication_duration_seconds_bucket{result="success",le="0.008"} 65 -authentication_duration_seconds_bucket{result="success",le="0.016"} 66 -authentication_duration_seconds_bucket{result="success",le="0.032"} 66 -authentication_duration_seconds_bucket{result="success",le="0.064"} 66 -authentication_duration_seconds_bucket{result="success",le="0.128"} 66 -authentication_duration_seconds_bucket{result="success",le="0.256"} 66 -authentication_duration_seconds_bucket{result="success",le="0.512"} 66 -authentication_duration_seconds_bucket{result="success",le="1.024"} 66 -authentication_duration_seconds_bucket{result="success",le="2.048"} 66 -authentication_duration_seconds_bucket{result="success",le="4.096"} 66 -authentication_duration_seconds_bucket{result="success",le="8.192"} 66 -authentication_duration_seconds_bucket{result="success",le="16.384"} 66 -authentication_duration_seconds_bucket{result="success",le="+Inf"} 66 -authentication_duration_seconds_sum{result="success"} 0.014726734000000002 -authentication_duration_seconds_count{result="success"} 66 -# HELP authentication_token_cache_active_fetch_count [ALPHA] +authentication_duration_seconds_bucket{result="success",le="0.001"} 16 +authentication_duration_seconds_bucket{result="success",le="0.002"} 16 +authentication_duration_seconds_bucket{result="success",le="0.004"} 16 +authentication_duration_seconds_bucket{result="success",le="0.008"} 16 +authentication_duration_seconds_bucket{result="success",le="0.016"} 16 +authentication_duration_seconds_bucket{result="success",le="0.032"} 16 +authentication_duration_seconds_bucket{result="success",le="0.064"} 16 +authentication_duration_seconds_bucket{result="success",le="0.128"} 16 +authentication_duration_seconds_bucket{result="success",le="0.256"} 16 +authentication_duration_seconds_bucket{result="success",le="0.512"} 16 +authentication_duration_seconds_bucket{result="success",le="1.024"} 16 +authentication_duration_seconds_bucket{result="success",le="2.048"} 16 +authentication_duration_seconds_bucket{result="success",le="4.096"} 16 +authentication_duration_seconds_bucket{result="success",le="8.192"} 16 +authentication_duration_seconds_bucket{result="success",le="16.384"} 16 +authentication_duration_seconds_bucket{result="success",le="+Inf"} 16 +authentication_duration_seconds_sum{result="success"} 0.000441754 +authentication_duration_seconds_count{result="success"} 16 +# HELP authentication_token_cache_active_fetch_count [ALPHA] # TYPE authentication_token_cache_active_fetch_count gauge authentication_token_cache_active_fetch_count{status="blocked"} 0 authentication_token_cache_active_fetch_count{status="in_flight"} 0 -# HELP authentication_token_cache_fetch_total [ALPHA] +# HELP authentication_token_cache_fetch_total [ALPHA] # TYPE authentication_token_cache_fetch_total counter -authentication_token_cache_fetch_total{status="ok"} 2 -# HELP authentication_token_cache_request_duration_seconds [ALPHA] +authentication_token_cache_fetch_total{status="ok"} 1 +# HELP authentication_token_cache_request_duration_seconds [ALPHA] # TYPE authentication_token_cache_request_duration_seconds histogram -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.005"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.01"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.025"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.05"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.1"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.25"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.5"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="1"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="2.5"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="5"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="10"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="+Inf"} 1 -authentication_token_cache_request_duration_seconds_sum{status="hit"} 0 -authentication_token_cache_request_duration_seconds_count{status="hit"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.005"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.005"} 0 authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.01"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.025"} 2 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.05"} 2 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.1"} 2 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.25"} 2 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.5"} 2 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="1"} 2 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="2.5"} 2 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="5"} 2 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="10"} 2 -authentication_token_cache_request_duration_seconds_bucket{status="miss",le="+Inf"} 2 -authentication_token_cache_request_duration_seconds_sum{status="miss"} 0.015 -authentication_token_cache_request_duration_seconds_count{status="miss"} 2 -# HELP authentication_token_cache_request_total [ALPHA] +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.025"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.05"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.1"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.25"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.5"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="1"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="2.5"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="5"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="10"} 1 +authentication_token_cache_request_duration_seconds_bucket{status="miss",le="+Inf"} 1 +authentication_token_cache_request_duration_seconds_sum{status="miss"} 0.006 +authentication_token_cache_request_duration_seconds_count{status="miss"} 1 +# HELP authentication_token_cache_request_total [ALPHA] # TYPE authentication_token_cache_request_total counter -authentication_token_cache_request_total{status="hit"} 1 -authentication_token_cache_request_total{status="miss"} 2 +authentication_token_cache_request_total{status="miss"} 1 +# HELP authorization_attempts_total [ALPHA] Counter of authorization attempts broken down by result. It can be either 'allowed', 'denied', 'no-opinion' or 'error'. +# TYPE authorization_attempts_total counter +authorization_attempts_total{result="allowed"} 16 +# HELP authorization_duration_seconds [ALPHA] Authorization duration in seconds broken out by result. +# TYPE authorization_duration_seconds histogram +authorization_duration_seconds_bucket{result="allowed",le="0.001"} 16 +authorization_duration_seconds_bucket{result="allowed",le="0.002"} 16 +authorization_duration_seconds_bucket{result="allowed",le="0.004"} 16 +authorization_duration_seconds_bucket{result="allowed",le="0.008"} 16 +authorization_duration_seconds_bucket{result="allowed",le="0.016"} 16 +authorization_duration_seconds_bucket{result="allowed",le="0.032"} 16 +authorization_duration_seconds_bucket{result="allowed",le="0.064"} 16 +authorization_duration_seconds_bucket{result="allowed",le="0.128"} 16 +authorization_duration_seconds_bucket{result="allowed",le="0.256"} 16 +authorization_duration_seconds_bucket{result="allowed",le="0.512"} 16 +authorization_duration_seconds_bucket{result="allowed",le="1.024"} 16 +authorization_duration_seconds_bucket{result="allowed",le="2.048"} 16 +authorization_duration_seconds_bucket{result="allowed",le="4.096"} 16 +authorization_duration_seconds_bucket{result="allowed",le="8.192"} 16 +authorization_duration_seconds_bucket{result="allowed",le="16.384"} 16 +authorization_duration_seconds_bucket{result="allowed",le="+Inf"} 16 +authorization_duration_seconds_sum{result="allowed"} 7.6854e-05 +authorization_duration_seconds_count{result="allowed"} 16 +# HELP cardinality_enforcement_unexpected_categorizations_total [ALPHA] The count of unexpected categorizations during cardinality enforcement. +# TYPE cardinality_enforcement_unexpected_categorizations_total counter +cardinality_enforcement_unexpected_categorizations_total 0 # HELP cronjob_controller_job_creation_skew_duration_seconds [STABLE] Time between when a cronjob is scheduled to be run, and when the corresponding job is created # TYPE cronjob_controller_job_creation_skew_duration_seconds histogram cronjob_controller_job_creation_skew_duration_seconds_bucket{le="1"} 0 @@ -177,101 +232,101 @@ cronjob_controller_job_creation_skew_duration_seconds_bucket{le="512"} 0 cronjob_controller_job_creation_skew_duration_seconds_bucket{le="+Inf"} 0 cronjob_controller_job_creation_skew_duration_seconds_sum 0 cronjob_controller_job_creation_skew_duration_seconds_count 0 -# HELP disabled_metric_total [ALPHA] The count of disabled metrics. -# TYPE disabled_metric_total counter -disabled_metric_total 0 +# HELP disabled_metrics_total [BETA] The count of disabled metrics. +# TYPE disabled_metrics_total counter +disabled_metrics_total 0 # HELP endpoint_slice_controller_changes [ALPHA] Number of EndpointSlice changes # TYPE endpoint_slice_controller_changes counter endpoint_slice_controller_changes{operation="create"} 1 -endpoint_slice_controller_changes{operation="update"} 3 +endpoint_slice_controller_changes{operation="update"} 2 # HELP endpoint_slice_controller_desired_endpoint_slices [ALPHA] Number of EndpointSlices that would exist with perfect endpoint allocation # TYPE endpoint_slice_controller_desired_endpoint_slices gauge endpoint_slice_controller_desired_endpoint_slices 1 # HELP endpoint_slice_controller_endpoints_added_per_sync [ALPHA] Number of endpoints added on each Service sync # TYPE endpoint_slice_controller_endpoints_added_per_sync histogram -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="2"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="4"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="8"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="16"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="32"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="64"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="128"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="256"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="512"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="1024"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="2048"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="4096"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="8192"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="16384"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="32768"} 8 -endpoint_slice_controller_endpoints_added_per_sync_bucket{le="+Inf"} 8 -endpoint_slice_controller_endpoints_added_per_sync_sum 2 -endpoint_slice_controller_endpoints_added_per_sync_count 8 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="2"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="4"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="8"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="16"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="32"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="64"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="128"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="256"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="512"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="1024"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="2048"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="4096"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="8192"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="16384"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="32768"} 7 +endpoint_slice_controller_endpoints_added_per_sync_bucket{le="+Inf"} 7 +endpoint_slice_controller_endpoints_added_per_sync_sum 1 +endpoint_slice_controller_endpoints_added_per_sync_count 7 # HELP endpoint_slice_controller_endpoints_desired [ALPHA] Number of endpoints desired # TYPE endpoint_slice_controller_endpoints_desired gauge -endpoint_slice_controller_endpoints_desired 2 +endpoint_slice_controller_endpoints_desired 1 # HELP endpoint_slice_controller_endpoints_removed_per_sync [ALPHA] Number of endpoints removed on each Service sync # TYPE endpoint_slice_controller_endpoints_removed_per_sync histogram -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="2"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="4"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="8"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="16"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="32"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="64"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="128"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="256"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="512"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="1024"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="2048"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="4096"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="8192"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="16384"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="32768"} 8 -endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="+Inf"} 8 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="2"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="4"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="8"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="16"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="32"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="64"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="128"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="256"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="512"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="1024"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="2048"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="4096"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="8192"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="16384"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="32768"} 7 +endpoint_slice_controller_endpoints_removed_per_sync_bucket{le="+Inf"} 7 endpoint_slice_controller_endpoints_removed_per_sync_sum 0 -endpoint_slice_controller_endpoints_removed_per_sync_count 8 +endpoint_slice_controller_endpoints_removed_per_sync_count 7 # HELP endpoint_slice_controller_endpointslices_changed_per_sync [ALPHA] Number of EndpointSlices changed on each Service sync # TYPE endpoint_slice_controller_endpointslices_changed_per_sync histogram -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="0.005"} 4 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="0.01"} 4 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="0.025"} 4 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="0.05"} 4 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="0.1"} 4 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="0.25"} 4 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="0.5"} 4 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="1"} 8 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="2.5"} 8 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="5"} 8 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="10"} 8 -endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",le="+Inf"} 8 -endpoint_slice_controller_endpointslices_changed_per_sync_sum{topology="Disabled"} 4 -endpoint_slice_controller_endpointslices_changed_per_sync_count{topology="Disabled"} 8 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="0.005"} 4 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="0.01"} 4 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="0.025"} 4 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="0.05"} 4 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="0.1"} 4 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="0.25"} 4 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="0.5"} 4 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="1"} 7 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="2.5"} 7 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="5"} 7 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="10"} 7 +endpoint_slice_controller_endpointslices_changed_per_sync_bucket{topology="Disabled",traffic_distribution="",le="+Inf"} 7 +endpoint_slice_controller_endpointslices_changed_per_sync_sum{topology="Disabled",traffic_distribution=""} 3 +endpoint_slice_controller_endpointslices_changed_per_sync_count{topology="Disabled",traffic_distribution=""} 7 # HELP endpoint_slice_controller_num_endpoint_slices [ALPHA] Number of EndpointSlices # TYPE endpoint_slice_controller_num_endpoint_slices gauge endpoint_slice_controller_num_endpoint_slices 1 # HELP endpoint_slice_controller_syncs [ALPHA] Number of EndpointSlice syncs # TYPE endpoint_slice_controller_syncs counter -endpoint_slice_controller_syncs{result="success"} 9 +endpoint_slice_controller_syncs{result="success"} 8 # HELP endpoint_slice_mirroring_controller_endpoints_sync_duration [ALPHA] Duration of syncEndpoints() in seconds # TYPE endpoint_slice_mirroring_controller_endpoints_sync_duration histogram -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.001"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.002"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.004"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.008"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.016"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.032"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.064"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.128"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.256"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.512"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="1.024"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="2.048"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="4.096"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="8.192"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="16.384"} 5 -endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="+Inf"} 5 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.001"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.002"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.004"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.008"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.016"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.032"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.064"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.128"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.256"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="0.512"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="1.024"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="2.048"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="4.096"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="8.192"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="16.384"} 6 +endpoint_slice_mirroring_controller_endpoints_sync_duration_bucket{le="+Inf"} 6 endpoint_slice_mirroring_controller_endpoints_sync_duration_sum 0 -endpoint_slice_mirroring_controller_endpoints_sync_duration_count 5 +endpoint_slice_mirroring_controller_endpoints_sync_duration_count 6 # HELP ephemeral_volume_controller_create_failures_total [ALPHA] Number of PersistenVolumeClaims creation requests # TYPE ephemeral_volume_controller_create_failures_total counter ephemeral_volume_controller_create_failures_total 0 @@ -281,338 +336,483 @@ ephemeral_volume_controller_create_total 0 # HELP garbagecollector_controller_resources_sync_error_total [ALPHA] Number of garbage collector resources sync errors # TYPE garbagecollector_controller_resources_sync_error_total counter garbagecollector_controller_resources_sync_error_total 0 +# HELP get_token_count [ALPHA] Counter of total Token() requests to the alternate token source +# TYPE get_token_count counter +get_token_count 0 +# HELP get_token_fail_count [ALPHA] Counter of failed Token() requests to the alternate token source +# TYPE get_token_fail_count counter +get_token_fail_count 0 # HELP go_cgo_go_to_c_calls_calls_total Count of calls made from Go to C by the current process. # TYPE go_cgo_go_to_c_calls_calls_total counter go_cgo_go_to_c_calls_calls_total 0 # HELP go_cpu_classes_gc_mark_assist_cpu_seconds_total Estimated total CPU time goroutines spent performing GC tasks to assist the GC and prevent it from falling behind the application. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_gc_mark_assist_cpu_seconds_total counter -go_cpu_classes_gc_mark_assist_cpu_seconds_total 0.009350777 -# HELP go_cpu_classes_gc_mark_dedicated_cpu_seconds_total Estimated total CPU time spent performing GC tasks on processors (as defined by GOMAXPROCS) dedicated to those tasks. This includes time spent with the world stopped due to the GC. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +go_cpu_classes_gc_mark_assist_cpu_seconds_total 0.004456062 +# HELP go_cpu_classes_gc_mark_dedicated_cpu_seconds_total Estimated total CPU time spent performing GC tasks on processors (as defined by GOMAXPROCS) dedicated to those tasks. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_gc_mark_dedicated_cpu_seconds_total counter -go_cpu_classes_gc_mark_dedicated_cpu_seconds_total 0.149717618 +go_cpu_classes_gc_mark_dedicated_cpu_seconds_total 0.315636947 # HELP go_cpu_classes_gc_mark_idle_cpu_seconds_total Estimated total CPU time spent performing GC tasks on spare CPU resources that the Go scheduler could not otherwise find a use for. This should be subtracted from the total GC CPU time to obtain a measure of compulsory GC CPU time. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_gc_mark_idle_cpu_seconds_total counter -go_cpu_classes_gc_mark_idle_cpu_seconds_total 0.034730859 -# HELP go_cpu_classes_gc_pause_cpu_seconds_total Estimated total CPU time spent with the application paused by the GC. Even if only one thread is running during the pause, this is computed as GOMAXPROCS times the pause latency because nothing else can be executing. This is the exact sum of samples in /gc/pause:seconds if each sample is multiplied by GOMAXPROCS at the time it is taken. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +go_cpu_classes_gc_mark_idle_cpu_seconds_total 0.11243185 +# HELP go_cpu_classes_gc_pause_cpu_seconds_total Estimated total CPU time spent with the application paused by the GC. Even if only one thread is running during the pause, this is computed as GOMAXPROCS times the pause latency because nothing else can be executing. This is the exact sum of samples in /sched/pauses/total/gc:seconds if each sample is multiplied by GOMAXPROCS at the time it is taken. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_gc_pause_cpu_seconds_total counter -go_cpu_classes_gc_pause_cpu_seconds_total 0.022017536 +go_cpu_classes_gc_pause_cpu_seconds_total 0.065606916 # HELP go_cpu_classes_gc_total_cpu_seconds_total Estimated total CPU time spent performing GC tasks. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes/gc. # TYPE go_cpu_classes_gc_total_cpu_seconds_total counter -go_cpu_classes_gc_total_cpu_seconds_total 0.21581679 +go_cpu_classes_gc_total_cpu_seconds_total 0.498131775 # HELP go_cpu_classes_idle_cpu_seconds_total Estimated total available CPU time not spent executing any Go or Go runtime code. In other words, the part of /cpu/classes/total:cpu-seconds that was unused. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_idle_cpu_seconds_total counter -go_cpu_classes_idle_cpu_seconds_total 4385.415002366 +go_cpu_classes_idle_cpu_seconds_total 1676.464604462 # HELP go_cpu_classes_scavenge_assist_cpu_seconds_total Estimated total CPU time spent returning unused memory to the underlying platform in response eagerly in response to memory pressure. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_scavenge_assist_cpu_seconds_total counter -go_cpu_classes_scavenge_assist_cpu_seconds_total 4.99e-07 +go_cpu_classes_scavenge_assist_cpu_seconds_total 5.75e-07 # HELP go_cpu_classes_scavenge_background_cpu_seconds_total Estimated total CPU time spent performing background tasks to return unused memory to the underlying platform. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_scavenge_background_cpu_seconds_total counter -go_cpu_classes_scavenge_background_cpu_seconds_total 0.00170814 +go_cpu_classes_scavenge_background_cpu_seconds_total 2.19e-07 # HELP go_cpu_classes_scavenge_total_cpu_seconds_total Estimated total CPU time spent performing tasks that return unused memory to the underlying platform. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes/scavenge. # TYPE go_cpu_classes_scavenge_total_cpu_seconds_total counter -go_cpu_classes_scavenge_total_cpu_seconds_total 0.001708639 +go_cpu_classes_scavenge_total_cpu_seconds_total 7.94e-07 # HELP go_cpu_classes_total_cpu_seconds_total Estimated total available CPU time for user Go code or the Go runtime, as defined by GOMAXPROCS. In other words, GOMAXPROCS integrated over the wall-clock duration this process has been executing for. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes. # TYPE go_cpu_classes_total_cpu_seconds_total counter -go_cpu_classes_total_cpu_seconds_total 5015.342976168 +go_cpu_classes_total_cpu_seconds_total 1687.270681224 # HELP go_cpu_classes_user_cpu_seconds_total Estimated total CPU time spent running user Go code. This may also include some small amount of time spent in the Go runtime. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_user_cpu_seconds_total counter -go_cpu_classes_user_cpu_seconds_total 629.710448373 +go_cpu_classes_user_cpu_seconds_total 10.307944193 # HELP go_gc_cycles_automatic_gc_cycles_total Count of completed GC cycles generated by the Go runtime. # TYPE go_gc_cycles_automatic_gc_cycles_total counter -go_gc_cycles_automatic_gc_cycles_total 16 +go_gc_cycles_automatic_gc_cycles_total 12 # HELP go_gc_cycles_forced_gc_cycles_total Count of completed GC cycles forced by the application. # TYPE go_gc_cycles_forced_gc_cycles_total counter go_gc_cycles_forced_gc_cycles_total 0 # HELP go_gc_cycles_total_gc_cycles_total Count of all completed GC cycles. # TYPE go_gc_cycles_total_gc_cycles_total counter -go_gc_cycles_total_gc_cycles_total 16 +go_gc_cycles_total_gc_cycles_total 12 # HELP go_gc_duration_seconds A summary of the pause duration of garbage collection cycles. # TYPE go_gc_duration_seconds summary -go_gc_duration_seconds{quantile="0"} 3.4792e-05 -go_gc_duration_seconds{quantile="0.25"} 8.5844e-05 -go_gc_duration_seconds{quantile="0.5"} 0.000176279 -go_gc_duration_seconds{quantile="0.75"} 0.000245191 -go_gc_duration_seconds{quantile="1"} 0.000475774 -go_gc_duration_seconds_sum 0.002752192 -go_gc_duration_seconds_count 16 -# HELP go_gc_heap_allocs_by_size_bytes Distribution of heap allocations by approximate size. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. +go_gc_duration_seconds{quantile="0"} 5.4882e-05 +go_gc_duration_seconds{quantile="0.25"} 0.000290977 +go_gc_duration_seconds{quantile="0.5"} 0.000449853 +go_gc_duration_seconds{quantile="0.75"} 0.000572578 +go_gc_duration_seconds{quantile="1"} 0.001175209 +go_gc_duration_seconds_sum 0.005459294 +go_gc_duration_seconds_count 12 +# HELP go_gc_gogc_percent Heap size target percentage configured by the user, otherwise 100. This value is set by the GOGC environment variable, and the runtime/debug.SetGCPercent function. +# TYPE go_gc_gogc_percent gauge +go_gc_gogc_percent 100 +# HELP go_gc_gomemlimit_bytes Go runtime memory limit configured by the user, otherwise math.MaxInt64. This value is set by the GOMEMLIMIT environment variable, and the runtime/debug.SetMemoryLimit function. +# TYPE go_gc_gomemlimit_bytes gauge +go_gc_gomemlimit_bytes 9.223372036854776e+18 +# HELP go_gc_heap_allocs_by_size_bytes Distribution of heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. # TYPE go_gc_heap_allocs_by_size_bytes histogram -go_gc_heap_allocs_by_size_bytes_bucket{le="8.999999999999998"} 13986 -go_gc_heap_allocs_by_size_bytes_bucket{le="24.999999999999996"} 337373 -go_gc_heap_allocs_by_size_bytes_bucket{le="64.99999999999999"} 568393 -go_gc_heap_allocs_by_size_bytes_bucket{le="144.99999999999997"} 712395 -go_gc_heap_allocs_by_size_bytes_bucket{le="320.99999999999994"} 771930 -go_gc_heap_allocs_by_size_bytes_bucket{le="704.9999999999999"} 798600 -go_gc_heap_allocs_by_size_bytes_bucket{le="1536.9999999999998"} 804899 -go_gc_heap_allocs_by_size_bytes_bucket{le="3200.9999999999995"} 807409 -go_gc_heap_allocs_by_size_bytes_bucket{le="6528.999999999999"} 809058 -go_gc_heap_allocs_by_size_bytes_bucket{le="13568.999999999998"} 809746 -go_gc_heap_allocs_by_size_bytes_bucket{le="27264.999999999996"} 810071 -go_gc_heap_allocs_by_size_bytes_bucket{le="+Inf"} 810232 -go_gc_heap_allocs_by_size_bytes_sum 9.9479784e+07 -go_gc_heap_allocs_by_size_bytes_count 810232 +go_gc_heap_allocs_by_size_bytes_bucket{le="8.999999999999998"} 13628 +go_gc_heap_allocs_by_size_bytes_bucket{le="24.999999999999996"} 165781 +go_gc_heap_allocs_by_size_bytes_bucket{le="64.99999999999999"} 292031 +go_gc_heap_allocs_by_size_bytes_bucket{le="144.99999999999997"} 360498 +go_gc_heap_allocs_by_size_bytes_bucket{le="320.99999999999994"} 410789 +go_gc_heap_allocs_by_size_bytes_bucket{le="704.9999999999999"} 427703 +go_gc_heap_allocs_by_size_bytes_bucket{le="1536.9999999999998"} 431161 +go_gc_heap_allocs_by_size_bytes_bucket{le="3200.9999999999995"} 432629 +go_gc_heap_allocs_by_size_bytes_bucket{le="6528.999999999999"} 434193 +go_gc_heap_allocs_by_size_bytes_bucket{le="13568.999999999998"} 434604 +go_gc_heap_allocs_by_size_bytes_bucket{le="27264.999999999996"} 434863 +go_gc_heap_allocs_by_size_bytes_bucket{le="+Inf"} 435030 +go_gc_heap_allocs_by_size_bytes_sum 6.8055264e+07 +go_gc_heap_allocs_by_size_bytes_count 435030 # HELP go_gc_heap_allocs_bytes_total Cumulative sum of memory allocated to the heap by the application. # TYPE go_gc_heap_allocs_bytes_total counter -go_gc_heap_allocs_bytes_total 9.9479784e+07 +go_gc_heap_allocs_bytes_total 6.8055264e+07 # HELP go_gc_heap_allocs_objects_total Cumulative count of heap allocations triggered by the application. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. # TYPE go_gc_heap_allocs_objects_total counter -go_gc_heap_allocs_objects_total 810232 -# HELP go_gc_heap_frees_by_size_bytes Distribution of freed heap allocations by approximate size. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. +go_gc_heap_allocs_objects_total 435030 +# HELP go_gc_heap_frees_by_size_bytes Distribution of freed heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. # TYPE go_gc_heap_frees_by_size_bytes histogram -go_gc_heap_frees_by_size_bytes_bucket{le="8.999999999999998"} 9984 -go_gc_heap_frees_by_size_bytes_bucket{le="24.999999999999996"} 307650 -go_gc_heap_frees_by_size_bytes_bucket{le="64.99999999999999"} 511409 -go_gc_heap_frees_by_size_bytes_bucket{le="144.99999999999997"} 642707 -go_gc_heap_frees_by_size_bytes_bucket{le="320.99999999999994"} 695655 -go_gc_heap_frees_by_size_bytes_bucket{le="704.9999999999999"} 719614 -go_gc_heap_frees_by_size_bytes_bucket{le="1536.9999999999998"} 725361 -go_gc_heap_frees_by_size_bytes_bucket{le="3200.9999999999995"} 727523 -go_gc_heap_frees_by_size_bytes_bucket{le="6528.999999999999"} 729049 -go_gc_heap_frees_by_size_bytes_bucket{le="13568.999999999998"} 729619 -go_gc_heap_frees_by_size_bytes_bucket{le="27264.999999999996"} 729761 -go_gc_heap_frees_by_size_bytes_bucket{le="+Inf"} 729826 -go_gc_heap_frees_by_size_bytes_sum 8.2895544e+07 -go_gc_heap_frees_by_size_bytes_count 729826 +go_gc_heap_frees_by_size_bytes_bucket{le="8.999999999999998"} 8966 +go_gc_heap_frees_by_size_bytes_bucket{le="24.999999999999996"} 128138 +go_gc_heap_frees_by_size_bytes_bucket{le="64.99999999999999"} 217989 +go_gc_heap_frees_by_size_bytes_bucket{le="144.99999999999997"} 270269 +go_gc_heap_frees_by_size_bytes_bucket{le="320.99999999999994"} 311097 +go_gc_heap_frees_by_size_bytes_bucket{le="704.9999999999999"} 317969 +go_gc_heap_frees_by_size_bytes_bucket{le="1536.9999999999998"} 320775 +go_gc_heap_frees_by_size_bytes_bucket{le="3200.9999999999995"} 321853 +go_gc_heap_frees_by_size_bytes_bucket{le="6528.999999999999"} 323228 +go_gc_heap_frees_by_size_bytes_bucket{le="13568.999999999998"} 323474 +go_gc_heap_frees_by_size_bytes_bucket{le="27264.999999999996"} 323543 +go_gc_heap_frees_by_size_bytes_bucket{le="+Inf"} 323604 +go_gc_heap_frees_by_size_bytes_sum 4.3866856e+07 +go_gc_heap_frees_by_size_bytes_count 323604 # HELP go_gc_heap_frees_bytes_total Cumulative sum of heap memory freed by the garbage collector. # TYPE go_gc_heap_frees_bytes_total counter -go_gc_heap_frees_bytes_total 8.2895544e+07 +go_gc_heap_frees_bytes_total 4.3866856e+07 # HELP go_gc_heap_frees_objects_total Cumulative count of heap allocations whose storage was freed by the garbage collector. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. # TYPE go_gc_heap_frees_objects_total counter -go_gc_heap_frees_objects_total 729826 +go_gc_heap_frees_objects_total 323604 # HELP go_gc_heap_goal_bytes Heap size target for the end of the GC cycle. # TYPE go_gc_heap_goal_bytes gauge -go_gc_heap_goal_bytes 3.4482008e+07 +go_gc_heap_goal_bytes 4.9517032e+07 +# HELP go_gc_heap_live_bytes Heap memory occupied by live objects that were marked by the previous GC. +# TYPE go_gc_heap_live_bytes gauge +go_gc_heap_live_bytes 2.3574424e+07 # HELP go_gc_heap_objects_objects Number of objects, live or unswept, occupying heap memory. # TYPE go_gc_heap_objects_objects gauge -go_gc_heap_objects_objects 80406 +go_gc_heap_objects_objects 111426 # HELP go_gc_heap_tiny_allocs_objects_total Count of small allocations that are packed together into blocks. These allocations are counted separately from other allocations because each individual allocation is not tracked by the runtime, only their block. Each block is already accounted for in allocs-by-size and frees-by-size. # TYPE go_gc_heap_tiny_allocs_objects_total counter -go_gc_heap_tiny_allocs_objects_total 93134 +go_gc_heap_tiny_allocs_objects_total 34068 # HELP go_gc_limiter_last_enabled_gc_cycle GC cycle the last time the GC CPU limiter was enabled. This metric is useful for diagnosing the root cause of an out-of-memory error, because the limiter trades memory for CPU time when the GC's CPU time gets too high. This is most likely to occur with use of SetMemoryLimit. The first GC cycle is cycle 1, so a value of 0 indicates that it was never enabled. # TYPE go_gc_limiter_last_enabled_gc_cycle gauge go_gc_limiter_last_enabled_gc_cycle 0 -# HELP go_gc_pauses_seconds Distribution individual GC-related stop-the-world pause latencies. +# HELP go_gc_pauses_seconds Deprecated. Prefer the identical /sched/pauses/total/gc:seconds. # TYPE go_gc_pauses_seconds histogram go_gc_pauses_seconds_bucket{le="6.399999999999999e-08"} 0 go_gc_pauses_seconds_bucket{le="6.399999999999999e-07"} 0 -go_gc_pauses_seconds_bucket{le="7.167999999999999e-06"} 6 -go_gc_pauses_seconds_bucket{le="8.191999999999999e-05"} 21 -go_gc_pauses_seconds_bucket{le="0.0009175039999999999"} 32 -go_gc_pauses_seconds_bucket{le="0.010485759999999998"} 32 -go_gc_pauses_seconds_bucket{le="0.11744051199999998"} 32 -go_gc_pauses_seconds_bucket{le="+Inf"} 32 -go_gc_pauses_seconds_sum 0.00101248 -go_gc_pauses_seconds_count 32 +go_gc_pauses_seconds_bucket{le="7.167999999999999e-06"} 2 +go_gc_pauses_seconds_bucket{le="8.191999999999999e-05"} 11 +go_gc_pauses_seconds_bucket{le="0.0009175039999999999"} 24 +go_gc_pauses_seconds_bucket{le="0.010485759999999998"} 24 +go_gc_pauses_seconds_bucket{le="0.11744051199999998"} 24 +go_gc_pauses_seconds_bucket{le="+Inf"} 24 +go_gc_pauses_seconds_sum 0.001130752 +go_gc_pauses_seconds_count 24 +# HELP go_gc_scan_globals_bytes The total amount of global variable space that is scannable. +# TYPE go_gc_scan_globals_bytes gauge +go_gc_scan_globals_bytes 918624 +# HELP go_gc_scan_heap_bytes The total amount of heap space that is scannable. +# TYPE go_gc_scan_heap_bytes gauge +go_gc_scan_heap_bytes 2.0808832e+07 +# HELP go_gc_scan_stack_bytes The number of bytes of stack that were scanned last GC cycle. +# TYPE go_gc_scan_stack_bytes gauge +go_gc_scan_stack_bytes 1.44956e+06 +# HELP go_gc_scan_total_bytes The total amount space that is scannable. Sum of all metrics in /gc/scan. +# TYPE go_gc_scan_total_bytes gauge +go_gc_scan_total_bytes 2.3177016e+07 # HELP go_gc_stack_starting_size_bytes The stack size of new goroutines. # TYPE go_gc_stack_starting_size_bytes gauge go_gc_stack_starting_size_bytes 4096 +# HELP go_godebug_non_default_behavior_execerrdot_events_total The number of non-default behaviors executed by the os/exec package due to a non-default GODEBUG=execerrdot=... setting. +# TYPE go_godebug_non_default_behavior_execerrdot_events_total counter +go_godebug_non_default_behavior_execerrdot_events_total 0 +# HELP go_godebug_non_default_behavior_gocachehash_events_total The number of non-default behaviors executed by the cmd/go package due to a non-default GODEBUG=gocachehash=... setting. +# TYPE go_godebug_non_default_behavior_gocachehash_events_total counter +go_godebug_non_default_behavior_gocachehash_events_total 0 +# HELP go_godebug_non_default_behavior_gocachetest_events_total The number of non-default behaviors executed by the cmd/go package due to a non-default GODEBUG=gocachetest=... setting. +# TYPE go_godebug_non_default_behavior_gocachetest_events_total counter +go_godebug_non_default_behavior_gocachetest_events_total 0 +# HELP go_godebug_non_default_behavior_gocacheverify_events_total The number of non-default behaviors executed by the cmd/go package due to a non-default GODEBUG=gocacheverify=... setting. +# TYPE go_godebug_non_default_behavior_gocacheverify_events_total counter +go_godebug_non_default_behavior_gocacheverify_events_total 0 +# HELP go_godebug_non_default_behavior_gotypesalias_events_total The number of non-default behaviors executed by the go/types package due to a non-default GODEBUG=gotypesalias=... setting. +# TYPE go_godebug_non_default_behavior_gotypesalias_events_total counter +go_godebug_non_default_behavior_gotypesalias_events_total 0 +# HELP go_godebug_non_default_behavior_http2client_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=http2client=... setting. +# TYPE go_godebug_non_default_behavior_http2client_events_total counter +go_godebug_non_default_behavior_http2client_events_total 0 +# HELP go_godebug_non_default_behavior_http2server_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=http2server=... setting. +# TYPE go_godebug_non_default_behavior_http2server_events_total counter +go_godebug_non_default_behavior_http2server_events_total 0 +# HELP go_godebug_non_default_behavior_httplaxcontentlength_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=httplaxcontentlength=... setting. +# TYPE go_godebug_non_default_behavior_httplaxcontentlength_events_total counter +go_godebug_non_default_behavior_httplaxcontentlength_events_total 0 +# HELP go_godebug_non_default_behavior_httpmuxgo121_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=httpmuxgo121=... setting. +# TYPE go_godebug_non_default_behavior_httpmuxgo121_events_total counter +go_godebug_non_default_behavior_httpmuxgo121_events_total 0 +# HELP go_godebug_non_default_behavior_installgoroot_events_total The number of non-default behaviors executed by the go/build package due to a non-default GODEBUG=installgoroot=... setting. +# TYPE go_godebug_non_default_behavior_installgoroot_events_total counter +go_godebug_non_default_behavior_installgoroot_events_total 0 +# HELP go_godebug_non_default_behavior_jstmpllitinterp_events_total The number of non-default behaviors executed by the html/template package due to a non-default GODEBUG=jstmpllitinterp=... setting. +# TYPE go_godebug_non_default_behavior_jstmpllitinterp_events_total counter +go_godebug_non_default_behavior_jstmpllitinterp_events_total 0 +# HELP go_godebug_non_default_behavior_multipartmaxheaders_events_total The number of non-default behaviors executed by the mime/multipart package due to a non-default GODEBUG=multipartmaxheaders=... setting. +# TYPE go_godebug_non_default_behavior_multipartmaxheaders_events_total counter +go_godebug_non_default_behavior_multipartmaxheaders_events_total 0 +# HELP go_godebug_non_default_behavior_multipartmaxparts_events_total The number of non-default behaviors executed by the mime/multipart package due to a non-default GODEBUG=multipartmaxparts=... setting. +# TYPE go_godebug_non_default_behavior_multipartmaxparts_events_total counter +go_godebug_non_default_behavior_multipartmaxparts_events_total 0 +# HELP go_godebug_non_default_behavior_multipathtcp_events_total The number of non-default behaviors executed by the net package due to a non-default GODEBUG=multipathtcp=... setting. +# TYPE go_godebug_non_default_behavior_multipathtcp_events_total counter +go_godebug_non_default_behavior_multipathtcp_events_total 0 +# HELP go_godebug_non_default_behavior_panicnil_events_total The number of non-default behaviors executed by the runtime package due to a non-default GODEBUG=panicnil=... setting. +# TYPE go_godebug_non_default_behavior_panicnil_events_total counter +go_godebug_non_default_behavior_panicnil_events_total 0 +# HELP go_godebug_non_default_behavior_randautoseed_events_total The number of non-default behaviors executed by the math/rand package due to a non-default GODEBUG=randautoseed=... setting. +# TYPE go_godebug_non_default_behavior_randautoseed_events_total counter +go_godebug_non_default_behavior_randautoseed_events_total 0 +# HELP go_godebug_non_default_behavior_tarinsecurepath_events_total The number of non-default behaviors executed by the archive/tar package due to a non-default GODEBUG=tarinsecurepath=... setting. +# TYPE go_godebug_non_default_behavior_tarinsecurepath_events_total counter +go_godebug_non_default_behavior_tarinsecurepath_events_total 0 +# HELP go_godebug_non_default_behavior_tls10server_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tls10server=... setting. +# TYPE go_godebug_non_default_behavior_tls10server_events_total counter +go_godebug_non_default_behavior_tls10server_events_total 0 +# HELP go_godebug_non_default_behavior_tlsmaxrsasize_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tlsmaxrsasize=... setting. +# TYPE go_godebug_non_default_behavior_tlsmaxrsasize_events_total counter +go_godebug_non_default_behavior_tlsmaxrsasize_events_total 0 +# HELP go_godebug_non_default_behavior_tlsrsakex_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tlsrsakex=... setting. +# TYPE go_godebug_non_default_behavior_tlsrsakex_events_total counter +go_godebug_non_default_behavior_tlsrsakex_events_total 0 +# HELP go_godebug_non_default_behavior_tlsunsafeekm_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tlsunsafeekm=... setting. +# TYPE go_godebug_non_default_behavior_tlsunsafeekm_events_total counter +go_godebug_non_default_behavior_tlsunsafeekm_events_total 0 +# HELP go_godebug_non_default_behavior_x509sha1_events_total The number of non-default behaviors executed by the crypto/x509 package due to a non-default GODEBUG=x509sha1=... setting. +# TYPE go_godebug_non_default_behavior_x509sha1_events_total counter +go_godebug_non_default_behavior_x509sha1_events_total 0 +# HELP go_godebug_non_default_behavior_x509usefallbackroots_events_total The number of non-default behaviors executed by the crypto/x509 package due to a non-default GODEBUG=x509usefallbackroots=... setting. +# TYPE go_godebug_non_default_behavior_x509usefallbackroots_events_total counter +go_godebug_non_default_behavior_x509usefallbackroots_events_total 0 +# HELP go_godebug_non_default_behavior_x509usepolicies_events_total The number of non-default behaviors executed by the crypto/x509 package due to a non-default GODEBUG=x509usepolicies=... setting. +# TYPE go_godebug_non_default_behavior_x509usepolicies_events_total counter +go_godebug_non_default_behavior_x509usepolicies_events_total 0 +# HELP go_godebug_non_default_behavior_zipinsecurepath_events_total The number of non-default behaviors executed by the archive/zip package due to a non-default GODEBUG=zipinsecurepath=... setting. +# TYPE go_godebug_non_default_behavior_zipinsecurepath_events_total counter +go_godebug_non_default_behavior_zipinsecurepath_events_total 0 # HELP go_goroutines Number of goroutines that currently exist. # TYPE go_goroutines gauge -go_goroutines 1123 +go_goroutines 1178 # HELP go_info Information about the Go environment. # TYPE go_info gauge -go_info{version="go1.20.3"} 1 +go_info{version="go1.22.2"} 1 # HELP go_memory_classes_heap_free_bytes Memory that is completely free and eligible to be returned to the underlying system, but has not been. This metric is the runtime's estimate of free address space that is backed by physical memory. # TYPE go_memory_classes_heap_free_bytes gauge -go_memory_classes_heap_free_bytes 5.562368e+06 +go_memory_classes_heap_free_bytes 9.445376e+06 # HELP go_memory_classes_heap_objects_bytes Memory occupied by live objects and dead objects that have not yet been marked free by the garbage collector. # TYPE go_memory_classes_heap_objects_bytes gauge -go_memory_classes_heap_objects_bytes 1.658424e+07 +go_memory_classes_heap_objects_bytes 2.4188408e+07 # HELP go_memory_classes_heap_released_bytes Memory that is completely free and has been returned to the underlying system. This metric is the runtime's estimate of free address space that is still mapped into the process, but is not backed by physical memory. # TYPE go_memory_classes_heap_released_bytes gauge -go_memory_classes_heap_released_bytes 4.907008e+06 -# HELP go_memory_classes_heap_stacks_bytes Memory allocated from the heap that is reserved for stack space, whether or not it is currently in-use. +go_memory_classes_heap_released_bytes 5.791744e+06 +# HELP go_memory_classes_heap_stacks_bytes Memory allocated from the heap that is reserved for stack space, whether or not it is currently in-use. Currently, this represents all stack memory for goroutines. It also includes all OS thread stacks in non-cgo programs. Note that stacks may be allocated differently in the future, and this may change. # TYPE go_memory_classes_heap_stacks_bytes gauge -go_memory_classes_heap_stacks_bytes 5.963776e+06 +go_memory_classes_heap_stacks_bytes 6.520832e+06 # HELP go_memory_classes_heap_unused_bytes Memory that is reserved for heap objects but is not currently used to hold heap objects. # TYPE go_memory_classes_heap_unused_bytes gauge -go_memory_classes_heap_unused_bytes 8.925648e+06 +go_memory_classes_heap_unused_bytes 8.579592e+06 # HELP go_memory_classes_metadata_mcache_free_bytes Memory that is reserved for runtime mcache structures, but not in-use. # TYPE go_memory_classes_metadata_mcache_free_bytes gauge -go_memory_classes_metadata_mcache_free_bytes 6000 +go_memory_classes_metadata_mcache_free_bytes 1200 # HELP go_memory_classes_metadata_mcache_inuse_bytes Memory that is occupied by runtime mcache structures that are currently being used. # TYPE go_memory_classes_metadata_mcache_inuse_bytes gauge -go_memory_classes_metadata_mcache_inuse_bytes 9600 +go_memory_classes_metadata_mcache_inuse_bytes 14400 # HELP go_memory_classes_metadata_mspan_free_bytes Memory that is reserved for runtime mspan structures, but not in-use. # TYPE go_memory_classes_metadata_mspan_free_bytes gauge -go_memory_classes_metadata_mspan_free_bytes 68320 +go_memory_classes_metadata_mspan_free_bytes 124480 # HELP go_memory_classes_metadata_mspan_inuse_bytes Memory that is occupied by runtime mspan structures that are currently being used. # TYPE go_memory_classes_metadata_mspan_inuse_bytes gauge -go_memory_classes_metadata_mspan_inuse_bytes 453920 +go_memory_classes_metadata_mspan_inuse_bytes 577280 # HELP go_memory_classes_metadata_other_bytes Memory that is reserved for or used to hold runtime metadata. # TYPE go_memory_classes_metadata_other_bytes gauge -go_memory_classes_metadata_other_bytes 9.368496e+06 -# HELP go_memory_classes_os_stacks_bytes Stack memory allocated by the underlying operating system. +go_memory_classes_metadata_other_bytes 3.901472e+06 +# HELP go_memory_classes_os_stacks_bytes Stack memory allocated by the underlying operating system. In non-cgo programs this metric is currently zero. This may change in the future.In cgo programs this metric includes OS thread stacks allocated directly from the OS. Currently, this only accounts for one stack in c-shared and c-archive build modes, and other sources of stacks from the OS are not measured. This too may change in the future. # TYPE go_memory_classes_os_stacks_bytes gauge go_memory_classes_os_stacks_bytes 0 # HELP go_memory_classes_other_bytes Memory used by execution trace buffers, structures for debugging the runtime, finalizer and profiler specials, and more. # TYPE go_memory_classes_other_bytes gauge -go_memory_classes_other_bytes 1.823877e+06 +go_memory_classes_other_bytes 2.170036e+06 # HELP go_memory_classes_profiling_buckets_bytes Memory that is used by the stack trace hash map used for profiling. # TYPE go_memory_classes_profiling_buckets_bytes gauge -go_memory_classes_profiling_buckets_bytes 1.505251e+06 +go_memory_classes_profiling_buckets_bytes 1.490436e+06 # HELP go_memory_classes_total_bytes All memory mapped by the Go runtime into the current process as read-write. Note that this does not include memory mapped by code called via cgo or via the syscall package. Sum of all metrics in /memory/classes. # TYPE go_memory_classes_total_bytes gauge -go_memory_classes_total_bytes 5.5178504e+07 +go_memory_classes_total_bytes 6.2805256e+07 # HELP go_memstats_alloc_bytes Number of bytes allocated and still in use. # TYPE go_memstats_alloc_bytes gauge -go_memstats_alloc_bytes 1.658424e+07 +go_memstats_alloc_bytes 2.4188408e+07 # HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed. # TYPE go_memstats_alloc_bytes_total counter -go_memstats_alloc_bytes_total 9.9479784e+07 +go_memstats_alloc_bytes_total 6.8055264e+07 # HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table. # TYPE go_memstats_buck_hash_sys_bytes gauge -go_memstats_buck_hash_sys_bytes 1.505251e+06 +go_memstats_buck_hash_sys_bytes 1.490436e+06 # HELP go_memstats_frees_total Total number of frees. # TYPE go_memstats_frees_total counter -go_memstats_frees_total 822960 +go_memstats_frees_total 357672 # HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata. # TYPE go_memstats_gc_sys_bytes gauge -go_memstats_gc_sys_bytes 9.368496e+06 +go_memstats_gc_sys_bytes 3.901472e+06 # HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use. # TYPE go_memstats_heap_alloc_bytes gauge -go_memstats_heap_alloc_bytes 1.658424e+07 +go_memstats_heap_alloc_bytes 2.4188408e+07 # HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used. # TYPE go_memstats_heap_idle_bytes gauge -go_memstats_heap_idle_bytes 1.0469376e+07 +go_memstats_heap_idle_bytes 1.523712e+07 # HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use. # TYPE go_memstats_heap_inuse_bytes gauge -go_memstats_heap_inuse_bytes 2.5509888e+07 +go_memstats_heap_inuse_bytes 3.2768e+07 # HELP go_memstats_heap_objects Number of allocated objects. # TYPE go_memstats_heap_objects gauge -go_memstats_heap_objects 80406 +go_memstats_heap_objects 111426 # HELP go_memstats_heap_released_bytes Number of heap bytes released to OS. # TYPE go_memstats_heap_released_bytes gauge -go_memstats_heap_released_bytes 4.907008e+06 +go_memstats_heap_released_bytes 5.791744e+06 # HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system. # TYPE go_memstats_heap_sys_bytes gauge -go_memstats_heap_sys_bytes 3.5979264e+07 +go_memstats_heap_sys_bytes 4.800512e+07 # HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection. # TYPE go_memstats_last_gc_time_seconds gauge -go_memstats_last_gc_time_seconds 1.6915727966346712e+09 +go_memstats_last_gc_time_seconds 1.714044574696257e+09 # HELP go_memstats_lookups_total Total number of pointer lookups. # TYPE go_memstats_lookups_total counter go_memstats_lookups_total 0 # HELP go_memstats_mallocs_total Total number of mallocs. # TYPE go_memstats_mallocs_total counter -go_memstats_mallocs_total 903366 +go_memstats_mallocs_total 469098 # HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures. # TYPE go_memstats_mcache_inuse_bytes gauge -go_memstats_mcache_inuse_bytes 9600 +go_memstats_mcache_inuse_bytes 14400 # HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system. # TYPE go_memstats_mcache_sys_bytes gauge go_memstats_mcache_sys_bytes 15600 # HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures. # TYPE go_memstats_mspan_inuse_bytes gauge -go_memstats_mspan_inuse_bytes 453920 +go_memstats_mspan_inuse_bytes 577280 # HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system. # TYPE go_memstats_mspan_sys_bytes gauge -go_memstats_mspan_sys_bytes 522240 +go_memstats_mspan_sys_bytes 701760 # HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place. # TYPE go_memstats_next_gc_bytes gauge -go_memstats_next_gc_bytes 3.4482008e+07 +go_memstats_next_gc_bytes 4.9517032e+07 # HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations. # TYPE go_memstats_other_sys_bytes gauge -go_memstats_other_sys_bytes 1.823877e+06 +go_memstats_other_sys_bytes 2.170036e+06 # HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator. # TYPE go_memstats_stack_inuse_bytes gauge -go_memstats_stack_inuse_bytes 5.963776e+06 +go_memstats_stack_inuse_bytes 6.520832e+06 # HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator. # TYPE go_memstats_stack_sys_bytes gauge -go_memstats_stack_sys_bytes 5.963776e+06 +go_memstats_stack_sys_bytes 6.520832e+06 # HELP go_memstats_sys_bytes Number of bytes obtained from system. # TYPE go_memstats_sys_bytes gauge -go_memstats_sys_bytes 5.5178504e+07 +go_memstats_sys_bytes 6.2805256e+07 # HELP go_sched_gomaxprocs_threads The current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously. # TYPE go_sched_gomaxprocs_threads gauge -go_sched_gomaxprocs_threads 8 +go_sched_gomaxprocs_threads 12 # HELP go_sched_goroutines_goroutines Count of live goroutines. # TYPE go_sched_goroutines_goroutines gauge -go_sched_goroutines_goroutines 1123 -# HELP go_sched_latencies_seconds Distribution of the time goroutines have spent in the scheduler in a runnable state before actually running. +go_sched_goroutines_goroutines 1178 +# HELP go_sched_latencies_seconds Distribution of the time goroutines have spent in the scheduler in a runnable state before actually running. Bucket counts increase monotonically. # TYPE go_sched_latencies_seconds histogram -go_sched_latencies_seconds_bucket{le="6.399999999999999e-08"} 1851 -go_sched_latencies_seconds_bucket{le="6.399999999999999e-07"} 2551 -go_sched_latencies_seconds_bucket{le="7.167999999999999e-06"} 5081 -go_sched_latencies_seconds_bucket{le="8.191999999999999e-05"} 16961 -go_sched_latencies_seconds_bucket{le="0.0009175039999999999"} 17342 -go_sched_latencies_seconds_bucket{le="0.010485759999999998"} 17353 -go_sched_latencies_seconds_bucket{le="0.11744051199999998"} 17353 -go_sched_latencies_seconds_bucket{le="+Inf"} 17353 -go_sched_latencies_seconds_sum 0.128123904 -go_sched_latencies_seconds_count 17353 -# HELP go_sync_mutex_wait_total_seconds_total Approximate cumulative time goroutines have spent blocked on a sync.Mutex or sync.RWMutex. This metric is useful for identifying global changes in lock contention. Collect a mutex or block profile using the runtime/pprof package for more detailed contention data. +go_sched_latencies_seconds_bucket{le="6.399999999999999e-08"} 911 +go_sched_latencies_seconds_bucket{le="6.399999999999999e-07"} 1271 +go_sched_latencies_seconds_bucket{le="7.167999999999999e-06"} 1832 +go_sched_latencies_seconds_bucket{le="8.191999999999999e-05"} 4653 +go_sched_latencies_seconds_bucket{le="0.0009175039999999999"} 5089 +go_sched_latencies_seconds_bucket{le="0.010485759999999998"} 5104 +go_sched_latencies_seconds_bucket{le="0.11744051199999998"} 5111 +go_sched_latencies_seconds_bucket{le="+Inf"} 5111 +go_sched_latencies_seconds_sum 0.14348300800000002 +go_sched_latencies_seconds_count 5111 +# HELP go_sched_pauses_stopping_gc_seconds Distribution of individual GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total GC-related stop-the-world time (/sched/pauses/total/gc:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. +# TYPE go_sched_pauses_stopping_gc_seconds histogram +go_sched_pauses_stopping_gc_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_stopping_gc_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_stopping_gc_seconds_bucket{le="7.167999999999999e-06"} 11 +go_sched_pauses_stopping_gc_seconds_bucket{le="8.191999999999999e-05"} 12 +go_sched_pauses_stopping_gc_seconds_bucket{le="0.0009175039999999999"} 24 +go_sched_pauses_stopping_gc_seconds_bucket{le="0.010485759999999998"} 24 +go_sched_pauses_stopping_gc_seconds_bucket{le="0.11744051199999998"} 24 +go_sched_pauses_stopping_gc_seconds_bucket{le="+Inf"} 24 +go_sched_pauses_stopping_gc_seconds_sum 0.000997248 +go_sched_pauses_stopping_gc_seconds_count 24 +# HELP go_sched_pauses_stopping_other_seconds Distribution of individual non-GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total non-GC-related stop-the-world time (/sched/pauses/total/other:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. +# TYPE go_sched_pauses_stopping_other_seconds histogram +go_sched_pauses_stopping_other_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="7.167999999999999e-06"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="8.191999999999999e-05"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="0.0009175039999999999"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="0.010485759999999998"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="0.11744051199999998"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="+Inf"} 0 +go_sched_pauses_stopping_other_seconds_sum 0 +go_sched_pauses_stopping_other_seconds_count 0 +# HELP go_sched_pauses_total_gc_seconds Distribution of individual GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (this is measured directly in /sched/pauses/stopping/gc:seconds), during which some threads may still be running. Bucket counts increase monotonically. +# TYPE go_sched_pauses_total_gc_seconds histogram +go_sched_pauses_total_gc_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_total_gc_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_total_gc_seconds_bucket{le="7.167999999999999e-06"} 2 +go_sched_pauses_total_gc_seconds_bucket{le="8.191999999999999e-05"} 11 +go_sched_pauses_total_gc_seconds_bucket{le="0.0009175039999999999"} 24 +go_sched_pauses_total_gc_seconds_bucket{le="0.010485759999999998"} 24 +go_sched_pauses_total_gc_seconds_bucket{le="0.11744051199999998"} 24 +go_sched_pauses_total_gc_seconds_bucket{le="+Inf"} 24 +go_sched_pauses_total_gc_seconds_sum 0.001130752 +go_sched_pauses_total_gc_seconds_count 24 +# HELP go_sched_pauses_total_other_seconds Distribution of individual non-GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (measured directly in /sched/pauses/stopping/other:seconds). Bucket counts increase monotonically. +# TYPE go_sched_pauses_total_other_seconds histogram +go_sched_pauses_total_other_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_total_other_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_total_other_seconds_bucket{le="7.167999999999999e-06"} 0 +go_sched_pauses_total_other_seconds_bucket{le="8.191999999999999e-05"} 0 +go_sched_pauses_total_other_seconds_bucket{le="0.0009175039999999999"} 0 +go_sched_pauses_total_other_seconds_bucket{le="0.010485759999999998"} 0 +go_sched_pauses_total_other_seconds_bucket{le="0.11744051199999998"} 0 +go_sched_pauses_total_other_seconds_bucket{le="+Inf"} 0 +go_sched_pauses_total_other_seconds_sum 0 +go_sched_pauses_total_other_seconds_count 0 +# HELP go_sync_mutex_wait_total_seconds_total Approximate cumulative time goroutines have spent blocked on a sync.Mutex, sync.RWMutex, or runtime-internal lock. This metric is useful for identifying global changes in lock contention. Collect a mutex or block profile using the runtime/pprof package for more detailed contention data. # TYPE go_sync_mutex_wait_total_seconds_total counter -go_sync_mutex_wait_total_seconds_total 0.272595736 +go_sync_mutex_wait_total_seconds_total 14.671354296 # HELP go_threads Number of OS threads created. # TYPE go_threads gauge -go_threads 10 -# HELP hidden_metric_total [ALPHA] The count of hidden metrics. -# TYPE hidden_metric_total counter -hidden_metric_total 0 +go_threads 14 +# HELP hidden_metrics_total [BETA] The count of hidden metrics. +# TYPE hidden_metrics_total counter +hidden_metrics_total 0 # HELP kubernetes_build_info [ALPHA] A metric with a constant '1' value labeled by major, minor, git version, git commit, git tree state, build date, Go version, and compiler from which Kubernetes was built, and platform on which it is running. # TYPE kubernetes_build_info gauge -kubernetes_build_info{build_date="2023-04-11T20:50:51Z",compiler="gc",git_commit="1b4df30b3cdfeaba6024e81e559a6cd09a089d65",git_tree_state="clean",git_version="v1.27.0",go_version="go1.20.3",major="1",minor="27",platform="linux/amd64"} 1 -# HELP kubernetes_feature_enabled [ALPHA] This metric records the data about the stage and enablement of a k8s feature. +kubernetes_build_info{build_date="2024-04-17T17:27:03Z",compiler="gc",git_commit="7c48c2bd72b9bf5c44d21d7338cc7bea77d0ad2a",git_tree_state="clean",git_version="v1.30.0",go_version="go1.22.2",major="1",minor="30",platform="linux/amd64"} 1 +# HELP kubernetes_feature_enabled [BETA] This metric records the data about the stage and enablement of a k8s feature. # TYPE kubernetes_feature_enabled gauge -kubernetes_feature_enabled{name="APIListChunking",stage="BETA"} 1 -kubernetes_feature_enabled{name="APIPriorityAndFairness",stage="BETA"} 1 +kubernetes_feature_enabled{name="APIListChunking",stage=""} 1 +kubernetes_feature_enabled{name="APIPriorityAndFairness",stage=""} 1 kubernetes_feature_enabled{name="APIResponseCompression",stage="BETA"} 1 -kubernetes_feature_enabled{name="APISelfSubjectReview",stage="BETA"} 1 kubernetes_feature_enabled{name="APIServerIdentity",stage="BETA"} 1 kubernetes_feature_enabled{name="APIServerTracing",stage="BETA"} 1 -kubernetes_feature_enabled{name="AdmissionWebhookMatchConditions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="AdvancedAuditing",stage=""} 1 -kubernetes_feature_enabled{name="AggregatedDiscoveryEndpoint",stage="BETA"} 1 +kubernetes_feature_enabled{name="APIServingWithRoutine",stage="BETA"} 1 +kubernetes_feature_enabled{name="AdmissionWebhookMatchConditions",stage=""} 1 +kubernetes_feature_enabled{name="AggregatedDiscoveryEndpoint",stage=""} 1 kubernetes_feature_enabled{name="AllAlpha",stage="ALPHA"} 0 kubernetes_feature_enabled{name="AllBeta",stage="BETA"} 0 +kubernetes_feature_enabled{name="AllowServiceLBStatusOnNonLB",stage="DEPRECATED"} 0 kubernetes_feature_enabled{name="AnyVolumeDataSource",stage="BETA"} 1 kubernetes_feature_enabled{name="AppArmor",stage="BETA"} 1 +kubernetes_feature_enabled{name="AppArmorFields",stage="BETA"} 1 kubernetes_feature_enabled{name="CPUManager",stage=""} 1 kubernetes_feature_enabled{name="CPUManagerPolicyAlphaOptions",stage="ALPHA"} 0 kubernetes_feature_enabled{name="CPUManagerPolicyBetaOptions",stage="BETA"} 1 kubernetes_feature_enabled{name="CPUManagerPolicyOptions",stage="BETA"} 1 -kubernetes_feature_enabled{name="CSIMigrationAzureFile",stage=""} 1 -kubernetes_feature_enabled{name="CSIMigrationGCE",stage=""} 1 +kubernetes_feature_enabled{name="CRDValidationRatcheting",stage="BETA"} 1 kubernetes_feature_enabled{name="CSIMigrationPortworx",stage="BETA"} 0 -kubernetes_feature_enabled{name="CSIMigrationRBD",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CSIMigrationvSphere",stage=""} 1 -kubernetes_feature_enabled{name="CSINodeExpandSecret",stage="BETA"} 1 -kubernetes_feature_enabled{name="CSIStorageCapacity",stage=""} 1 +kubernetes_feature_enabled{name="CSIMigrationRBD",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="CSINodeExpandSecret",stage=""} 1 kubernetes_feature_enabled{name="CSIVolumeHealth",stage="ALPHA"} 0 kubernetes_feature_enabled{name="CloudControllerManagerWebhook",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CloudDualStackNodeIPs",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CloudDualStackNodeIPs",stage=""} 1 kubernetes_feature_enabled{name="ClusterTrustBundle",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ClusterTrustBundleProjection",stage="ALPHA"} 0 kubernetes_feature_enabled{name="ComponentSLIs",stage="BETA"} 1 kubernetes_feature_enabled{name="ConsistentHTTPGetHandlers",stage=""} 1 -kubernetes_feature_enabled{name="ContainerCheckpoint",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ContextualLogging",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CronJobTimeZone",stage=""} 1 +kubernetes_feature_enabled{name="ConsistentListFromCache",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ContainerCheckpoint",stage="BETA"} 1 +kubernetes_feature_enabled{name="ContextualLogging",stage="BETA"} 1 +kubernetes_feature_enabled{name="CronJobsScheduledAnnotation",stage="BETA"} 1 kubernetes_feature_enabled{name="CrossNamespaceVolumeDataSource",stage="ALPHA"} 0 kubernetes_feature_enabled{name="CustomCPUCFSQuotaPeriod",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CustomResourceValidationExpressions",stage="BETA"} 1 -kubernetes_feature_enabled{name="DelegateFSGroupToCSIDriver",stage=""} 1 -kubernetes_feature_enabled{name="DevicePlugins",stage=""} 1 -kubernetes_feature_enabled{name="DisableAcceleratorUsageMetrics",stage=""} 1 -kubernetes_feature_enabled{name="DisableCloudProviders",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="DisableKubeletCloudCredentialProviders",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="DownwardAPIHugePages",stage=""} 1 -kubernetes_feature_enabled{name="DryRun",stage=""} 1 +kubernetes_feature_enabled{name="CustomResourceFieldSelectors",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CustomResourceValidationExpressions",stage=""} 1 +kubernetes_feature_enabled{name="DefaultHostNetworkHostPortsInPodTemplates",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="DevicePluginCDIDevices",stage="BETA"} 1 +kubernetes_feature_enabled{name="DisableCloudProviders",stage="BETA"} 1 +kubernetes_feature_enabled{name="DisableKubeletCloudCredentialProviders",stage="BETA"} 1 +kubernetes_feature_enabled{name="DisableNodeKubeProxyVersion",stage="ALPHA"} 0 kubernetes_feature_enabled{name="DynamicResourceAllocation",stage="ALPHA"} 0 kubernetes_feature_enabled{name="EfficientWatchResumption",stage=""} 1 kubernetes_feature_enabled{name="ElasticIndexedJob",stage="BETA"} 1 -kubernetes_feature_enabled{name="EndpointSliceTerminatingCondition",stage=""} 1 -kubernetes_feature_enabled{name="EventedPLEG",stage="BETA"} 0 +kubernetes_feature_enabled{name="EventedPLEG",stage="ALPHA"} 0 kubernetes_feature_enabled{name="ExecProbeTimeout",stage=""} 1 -kubernetes_feature_enabled{name="ExpandedDNSConfig",stage="BETA"} 1 -kubernetes_feature_enabled{name="ExperimentalHostUserNamespaceDefaulting",stage="BETA"} 0 -kubernetes_feature_enabled{name="GRPCContainerProbe",stage=""} 1 kubernetes_feature_enabled{name="GracefulNodeShutdown",stage="BETA"} 1 kubernetes_feature_enabled{name="GracefulNodeShutdownBasedOnPodPriority",stage="BETA"} 1 -kubernetes_feature_enabled{name="HPAContainerMetrics",stage="BETA"} 1 +kubernetes_feature_enabled{name="HPAContainerMetrics",stage=""} 1 kubernetes_feature_enabled{name="HPAScaleToZero",stage="ALPHA"} 0 kubernetes_feature_enabled{name="HonorPVReclaimPolicy",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="IPTablesOwnershipCleanup",stage="BETA"} 1 +kubernetes_feature_enabled{name="ImageMaximumGCAge",stage="BETA"} 1 kubernetes_feature_enabled{name="InPlacePodVerticalScaling",stage="ALPHA"} 0 kubernetes_feature_enabled{name="InTreePluginAWSUnregister",stage="ALPHA"} 0 kubernetes_feature_enabled{name="InTreePluginAzureDiskUnregister",stage="ALPHA"} 0 @@ -620,91 +820,112 @@ kubernetes_feature_enabled{name="InTreePluginAzureFileUnregister",stage="ALPHA"} kubernetes_feature_enabled{name="InTreePluginGCEUnregister",stage="ALPHA"} 0 kubernetes_feature_enabled{name="InTreePluginOpenStackUnregister",stage="ALPHA"} 0 kubernetes_feature_enabled{name="InTreePluginPortworxUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginRBDUnregister",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InTreePluginRBDUnregister",stage="DEPRECATED"} 0 kubernetes_feature_enabled{name="InTreePluginvSphereUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="JobMutableNodeSchedulingDirectives",stage=""} 1 +kubernetes_feature_enabled{name="InformerResourceVersion",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="JobBackoffLimitPerIndex",stage="BETA"} 1 +kubernetes_feature_enabled{name="JobManagedBy",stage="ALPHA"} 0 kubernetes_feature_enabled{name="JobPodFailurePolicy",stage="BETA"} 1 -kubernetes_feature_enabled{name="JobReadyPods",stage="BETA"} 1 -kubernetes_feature_enabled{name="JobTrackingWithFinalizers",stage=""} 1 -kubernetes_feature_enabled{name="KMSv2",stage="BETA"} 1 -kubernetes_feature_enabled{name="KubeletCredentialProviders",stage=""} 1 +kubernetes_feature_enabled{name="JobPodReplacementPolicy",stage="BETA"} 1 +kubernetes_feature_enabled{name="JobReadyPods",stage=""} 1 +kubernetes_feature_enabled{name="JobSuccessPolicy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="KMSv1",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="KMSv2",stage=""} 1 +kubernetes_feature_enabled{name="KMSv2KDF",stage=""} 1 +kubernetes_feature_enabled{name="KubeProxyDrainingTerminatingNodes",stage="BETA"} 1 +kubernetes_feature_enabled{name="KubeletCgroupDriverFromCRI",stage="ALPHA"} 0 kubernetes_feature_enabled{name="KubeletInUserNamespace",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="KubeletPodResources",stage="BETA"} 1 kubernetes_feature_enabled{name="KubeletPodResourcesDynamicResources",stage="ALPHA"} 0 kubernetes_feature_enabled{name="KubeletPodResourcesGet",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="KubeletPodResourcesGetAllocatable",stage="BETA"} 1 +kubernetes_feature_enabled{name="KubeletSeparateDiskGC",stage="ALPHA"} 0 kubernetes_feature_enabled{name="KubeletTracing",stage="BETA"} 1 -kubernetes_feature_enabled{name="LegacyServiceAccountTokenNoAutoGeneration",stage=""} 1 -kubernetes_feature_enabled{name="LegacyServiceAccountTokenTracking",stage="BETA"} 1 +kubernetes_feature_enabled{name="LegacyServiceAccountTokenCleanUp",stage=""} 1 +kubernetes_feature_enabled{name="LoadBalancerIPMode",stage="BETA"} 1 kubernetes_feature_enabled{name="LocalStorageCapacityIsolationFSQuotaMonitoring",stage="ALPHA"} 0 kubernetes_feature_enabled{name="LogarithmicScaleDown",stage="BETA"} 1 kubernetes_feature_enabled{name="LoggingAlphaOptions",stage="ALPHA"} 0 kubernetes_feature_enabled{name="LoggingBetaOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="MatchLabelKeysInPodAffinity",stage="ALPHA"} 0 kubernetes_feature_enabled{name="MatchLabelKeysInPodTopologySpread",stage="BETA"} 1 kubernetes_feature_enabled{name="MaxUnavailableStatefulSet",stage="ALPHA"} 0 kubernetes_feature_enabled{name="MemoryManager",stage="BETA"} 1 kubernetes_feature_enabled{name="MemoryQoS",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="MinDomainsInPodTopologySpread",stage="BETA"} 1 -kubernetes_feature_enabled{name="MinimizeIPTablesRestore",stage="BETA"} 1 -kubernetes_feature_enabled{name="MixedProtocolLBService",stage=""} 1 -kubernetes_feature_enabled{name="MultiCIDRRangeAllocator",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="MinDomainsInPodTopologySpread",stage=""} 1 kubernetes_feature_enabled{name="MultiCIDRServiceAllocator",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="NetworkPolicyStatus",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="NewVolumeManagerReconstruction",stage="BETA"} 1 +kubernetes_feature_enabled{name="MutatingAdmissionPolicy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="NFTablesProxyMode",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="NewVolumeManagerReconstruction",stage=""} 1 kubernetes_feature_enabled{name="NodeInclusionPolicyInPodTopologySpread",stage="BETA"} 1 -kubernetes_feature_enabled{name="NodeLogQuery",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="NodeOutOfServiceVolumeDetach",stage="BETA"} 1 -kubernetes_feature_enabled{name="NodeSwap",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="NodeLogQuery",stage="BETA"} 0 +kubernetes_feature_enabled{name="NodeOutOfServiceVolumeDetach",stage=""} 1 +kubernetes_feature_enabled{name="NodeSwap",stage="BETA"} 1 kubernetes_feature_enabled{name="OpenAPIEnums",stage="BETA"} 1 -kubernetes_feature_enabled{name="OpenAPIV3",stage=""} 1 kubernetes_feature_enabled{name="PDBUnhealthyPodEvictionPolicy",stage="BETA"} 1 +kubernetes_feature_enabled{name="PersistentVolumeLastPhaseTransitionTime",stage="BETA"} 1 kubernetes_feature_enabled{name="PodAndContainerStatsFromCRI",stage="ALPHA"} 0 kubernetes_feature_enabled{name="PodDeletionCost",stage="BETA"} 1 kubernetes_feature_enabled{name="PodDisruptionConditions",stage="BETA"} 1 -kubernetes_feature_enabled{name="PodHasNetworkCondition",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="PodSchedulingReadiness",stage="BETA"} 1 -kubernetes_feature_enabled{name="PodSecurity",stage=""} 1 -kubernetes_feature_enabled{name="ProbeTerminationGracePeriod",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodHostIPs",stage=""} 1 +kubernetes_feature_enabled{name="PodIndexLabel",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodLifecycleSleepAction",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodReadyToStartContainersCondition",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodSchedulingReadiness",stage=""} 1 +kubernetes_feature_enabled{name="PortForwardWebsockets",stage="ALPHA"} 0 kubernetes_feature_enabled{name="ProcMountType",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ProxyTerminatingEndpoints",stage="BETA"} 1 kubernetes_feature_enabled{name="QOSReserved",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ReadWriteOncePod",stage="BETA"} 1 +kubernetes_feature_enabled{name="ReadWriteOncePod",stage=""} 1 kubernetes_feature_enabled{name="RecoverVolumeExpansionFailure",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="RemainingItemCount",stage="BETA"} 1 -kubernetes_feature_enabled{name="RemoveSelfLink",stage=""} 1 -kubernetes_feature_enabled{name="RetroactiveDefaultStorageClass",stage="BETA"} 1 +kubernetes_feature_enabled{name="RecursiveReadOnlyMounts",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="RelaxedEnvironmentVariableValidation",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="RemainingItemCount",stage=""} 1 +kubernetes_feature_enabled{name="RetryGenerateName",stage="ALPHA"} 0 kubernetes_feature_enabled{name="RotateKubeletServerCertificate",stage="BETA"} 1 +kubernetes_feature_enabled{name="RuntimeClassInImageCriApi",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="SELinuxMount",stage="ALPHA"} 0 kubernetes_feature_enabled{name="SELinuxMountReadWriteOncePod",stage="BETA"} 1 -kubernetes_feature_enabled{name="SeccompDefault",stage=""} 1 -kubernetes_feature_enabled{name="SecurityContextDeny",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="SchedulerQueueingHints",stage="BETA"} 0 +kubernetes_feature_enabled{name="SeparateCacheWatchRPC",stage="BETA"} 1 +kubernetes_feature_enabled{name="SeparateTaintEvictionController",stage="BETA"} 1 kubernetes_feature_enabled{name="ServerSideApply",stage=""} 1 kubernetes_feature_enabled{name="ServerSideFieldValidation",stage=""} 1 -kubernetes_feature_enabled{name="ServiceIPStaticSubrange",stage=""} 1 -kubernetes_feature_enabled{name="ServiceInternalTrafficPolicy",stage=""} 1 -kubernetes_feature_enabled{name="ServiceNodePortStaticSubrange",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ServiceAccountTokenJTI",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServiceAccountTokenNodeBinding",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ServiceAccountTokenNodeBindingValidation",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServiceAccountTokenPodNodeInfo",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServiceNodePortStaticSubrange",stage=""} 1 +kubernetes_feature_enabled{name="ServiceTrafficDistribution",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="SidecarContainers",stage="BETA"} 1 kubernetes_feature_enabled{name="SizeMemoryBackedVolumes",stage="BETA"} 1 -kubernetes_feature_enabled{name="StableLoadBalancerNodeSet",stage="BETA"} 1 +kubernetes_feature_enabled{name="SkipReadOnlyValidationGCE",stage="DEPRECATED"} 1 +kubernetes_feature_enabled{name="StableLoadBalancerNodeSet",stage=""} 1 kubernetes_feature_enabled{name="StatefulSetAutoDeletePVC",stage="BETA"} 1 kubernetes_feature_enabled{name="StatefulSetStartOrdinal",stage="BETA"} 1 +kubernetes_feature_enabled{name="StorageNamespaceIndex",stage="BETA"} 1 kubernetes_feature_enabled{name="StorageVersionAPI",stage="ALPHA"} 0 kubernetes_feature_enabled{name="StorageVersionHash",stage="BETA"} 1 +kubernetes_feature_enabled{name="StorageVersionMigrator",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="StructuredAuthenticationConfiguration",stage="BETA"} 1 +kubernetes_feature_enabled{name="StructuredAuthorizationConfiguration",stage="BETA"} 1 kubernetes_feature_enabled{name="TopologyAwareHints",stage="BETA"} 1 -kubernetes_feature_enabled{name="TopologyManager",stage=""} 1 kubernetes_feature_enabled{name="TopologyManagerPolicyAlphaOptions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="TopologyManagerPolicyBetaOptions",stage="BETA"} 0 -kubernetes_feature_enabled{name="TopologyManagerPolicyOptions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="UserNamespacesStatelessPodsSupport",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ValidatingAdmissionPolicy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="TopologyManagerPolicyBetaOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="TopologyManagerPolicyOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="TranslateStreamCloseWebsocketRequests",stage="BETA"} 1 +kubernetes_feature_enabled{name="UnauthenticatedHTTP2DOSMitigation",stage="BETA"} 1 +kubernetes_feature_enabled{name="UnknownVersionInteroperabilityProxy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="UserNamespacesPodSecurityStandards",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="UserNamespacesSupport",stage="BETA"} 0 +kubernetes_feature_enabled{name="ValidatingAdmissionPolicy",stage=""} 1 +kubernetes_feature_enabled{name="VolumeAttributesClass",stage="ALPHA"} 0 kubernetes_feature_enabled{name="VolumeCapacityPriority",stage="ALPHA"} 0 kubernetes_feature_enabled{name="WatchBookmark",stage=""} 1 +kubernetes_feature_enabled{name="WatchFromStorageWithoutResourceVersion",stage="BETA"} 0 kubernetes_feature_enabled{name="WatchList",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="WatchListClient",stage="BETA"} 0 kubernetes_feature_enabled{name="WinDSR",stage="ALPHA"} 0 kubernetes_feature_enabled{name="WinOverlay",stage="BETA"} 1 kubernetes_feature_enabled{name="WindowsHostNetwork",stage="ALPHA"} 1 -kubernetes_feature_enabled{name="WindowsHostProcessContainers",stage=""} 1 -# HELP leader_election_master_status [ALPHA] Gauge of if the reporting system is master of the relevant lease, 0 indicates backup, 1 indicates master. 'name' is the string used to identify the lease. Please make sure to group by name. -# TYPE leader_election_master_status gauge -leader_election_master_status{name="kube-controller-manager"} 1 +kubernetes_feature_enabled{name="ZeroLimitedNominalConcurrencyShares",stage=""} 1 # HELP node_collector_evictions_total [STABLE] Number of Node evictions that happened since current instance of NodeController started. # TYPE node_collector_evictions_total counter node_collector_evictions_total{zone=""} 0 @@ -713,30 +934,30 @@ node_collector_evictions_total{zone=""} 0 node_collector_unhealthy_nodes_in_zone{zone=""} 0 # HELP node_collector_update_all_nodes_health_duration_seconds [ALPHA] Duration in seconds for NodeController to update the health of all nodes. # TYPE node_collector_update_all_nodes_health_duration_seconds histogram -node_collector_update_all_nodes_health_duration_seconds_bucket{le="0.01"} 125 -node_collector_update_all_nodes_health_duration_seconds_bucket{le="0.04"} 125 -node_collector_update_all_nodes_health_duration_seconds_bucket{le="0.16"} 125 -node_collector_update_all_nodes_health_duration_seconds_bucket{le="0.64"} 125 -node_collector_update_all_nodes_health_duration_seconds_bucket{le="2.56"} 125 -node_collector_update_all_nodes_health_duration_seconds_bucket{le="10.24"} 125 -node_collector_update_all_nodes_health_duration_seconds_bucket{le="40.96"} 125 -node_collector_update_all_nodes_health_duration_seconds_bucket{le="163.84"} 125 -node_collector_update_all_nodes_health_duration_seconds_bucket{le="+Inf"} 125 -node_collector_update_all_nodes_health_duration_seconds_sum 0.030889747000000002 -node_collector_update_all_nodes_health_duration_seconds_count 125 +node_collector_update_all_nodes_health_duration_seconds_bucket{le="0.01"} 29 +node_collector_update_all_nodes_health_duration_seconds_bucket{le="0.04"} 29 +node_collector_update_all_nodes_health_duration_seconds_bucket{le="0.16"} 29 +node_collector_update_all_nodes_health_duration_seconds_bucket{le="0.64"} 29 +node_collector_update_all_nodes_health_duration_seconds_bucket{le="2.56"} 29 +node_collector_update_all_nodes_health_duration_seconds_bucket{le="10.24"} 29 +node_collector_update_all_nodes_health_duration_seconds_bucket{le="40.96"} 29 +node_collector_update_all_nodes_health_duration_seconds_bucket{le="163.84"} 29 +node_collector_update_all_nodes_health_duration_seconds_bucket{le="+Inf"} 29 +node_collector_update_all_nodes_health_duration_seconds_sum 0.005529043000000001 +node_collector_update_all_nodes_health_duration_seconds_count 29 # HELP node_collector_update_node_health_duration_seconds [ALPHA] Duration in seconds for NodeController to update the health of a single node. # TYPE node_collector_update_node_health_duration_seconds histogram -node_collector_update_node_health_duration_seconds_bucket{le="0.001"} 125 -node_collector_update_node_health_duration_seconds_bucket{le="0.004"} 125 -node_collector_update_node_health_duration_seconds_bucket{le="0.016"} 125 -node_collector_update_node_health_duration_seconds_bucket{le="0.064"} 125 -node_collector_update_node_health_duration_seconds_bucket{le="0.256"} 125 -node_collector_update_node_health_duration_seconds_bucket{le="1.024"} 125 -node_collector_update_node_health_duration_seconds_bucket{le="4.096"} 125 -node_collector_update_node_health_duration_seconds_bucket{le="16.384"} 125 -node_collector_update_node_health_duration_seconds_bucket{le="+Inf"} 125 -node_collector_update_node_health_duration_seconds_sum 0.018322937 -node_collector_update_node_health_duration_seconds_count 125 +node_collector_update_node_health_duration_seconds_bucket{le="0.001"} 29 +node_collector_update_node_health_duration_seconds_bucket{le="0.004"} 29 +node_collector_update_node_health_duration_seconds_bucket{le="0.016"} 29 +node_collector_update_node_health_duration_seconds_bucket{le="0.064"} 29 +node_collector_update_node_health_duration_seconds_bucket{le="0.256"} 29 +node_collector_update_node_health_duration_seconds_bucket{le="1.024"} 29 +node_collector_update_node_health_duration_seconds_bucket{le="4.096"} 29 +node_collector_update_node_health_duration_seconds_bucket{le="16.384"} 29 +node_collector_update_node_health_duration_seconds_bucket{le="+Inf"} 29 +node_collector_update_node_health_duration_seconds_sum 0.002827271 +node_collector_update_node_health_duration_seconds_count 29 # HELP node_collector_zone_health [ALPHA] Gauge measuring percentage of healthy nodes per zone. # TYPE node_collector_zone_health gauge node_collector_zone_health{zone=""} 100 @@ -764,7 +985,7 @@ node_ipam_controller_cidrset_usage_cidrs{clusterCIDR="10.244.0.0/16"} 0.00390625 node_ipam_controller_cirdset_max_cidrs{clusterCIDR="10.244.0.0/16"} 256 # HELP process_cpu_seconds_total Total user and system CPU time spent in seconds. # TYPE process_cpu_seconds_total counter -process_cpu_seconds_total 18.91 +process_cpu_seconds_total 7.38 # HELP process_max_fds Maximum number of open file descriptors. # TYPE process_max_fds gauge process_max_fds 1.048576e+06 @@ -773,21 +994,23 @@ process_max_fds 1.048576e+06 process_open_fds 19 # HELP process_resident_memory_bytes Resident memory size in bytes. # TYPE process_resident_memory_bytes gauge -process_resident_memory_bytes 9.4121984e+07 +process_resident_memory_bytes 1.1606016e+08 # HELP process_start_time_seconds Start time of the process since unix epoch in seconds. # TYPE process_start_time_seconds gauge -process_start_time_seconds 1.69157216924e+09 +process_start_time_seconds 1.7140444329e+09 # HELP process_virtual_memory_bytes Virtual memory size in bytes. # TYPE process_virtual_memory_bytes gauge -process_virtual_memory_bytes 8.00964608e+08 +process_virtual_memory_bytes 1.367392256e+09 # HELP process_virtual_memory_max_bytes Maximum amount of virtual memory available in bytes. # TYPE process_virtual_memory_max_bytes gauge process_virtual_memory_max_bytes 1.8446744073709552e+19 -# HELP registered_metric_total [ALPHA] The count of registered metrics broken by stability level and deprecation version. -# TYPE registered_metric_total counter -registered_metric_total{deprecated_version="",stability_level="ALPHA"} 121 -registered_metric_total{deprecated_version="",stability_level="STABLE"} 9 -# HELP replicaset_controller_sorting_deletion_age_ratio [ALPHA] The ratio of chosen deleted pod's ages to the current youngest pod's age (at the time). Should be <2.The intent of this metric is to measure the rough efficacy of the LogarithmicScaleDown feature gate's effect onthe sorting (and deletion) of pods when a replicaset scales down. This only considers Ready pods when calculating and reporting. +# HELP registered_metrics_total [BETA] The count of registered metrics broken by stability level and deprecation version. +# TYPE registered_metrics_total counter +registered_metrics_total{deprecated_version="",stability_level="ALPHA"} 146 +registered_metrics_total{deprecated_version="",stability_level="BETA"} 4 +registered_metrics_total{deprecated_version="",stability_level="STABLE"} 11 +registered_metrics_total{deprecated_version="1.30.0",stability_level="ALPHA"} 2 +# HELP replicaset_controller_sorting_deletion_age_ratio [ALPHA] The ratio of chosen deleted pod's ages to the current youngest pod's age (at the time). Should be <2. The intent of this metric is to measure the rough efficacy of the LogarithmicScaleDown feature gate's effect on the sorting (and deletion) of pods when a replicaset scales down. This only considers Ready pods when calculating and reporting. # TYPE replicaset_controller_sorting_deletion_age_ratio histogram replicaset_controller_sorting_deletion_age_ratio_bucket{le="0.25"} 0 replicaset_controller_sorting_deletion_age_ratio_bucket{le="0.5"} 0 @@ -819,254 +1042,322 @@ rest_client_exec_plugin_certificate_rotation_age_count 0 rest_client_exec_plugin_ttl_seconds +Inf # HELP rest_client_rate_limiter_duration_seconds [ALPHA] Client side rate limiter latency in seconds. Broken down by verb, and host. # TYPE rest_client_rate_limiter_duration_seconds histogram -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.005"} 503 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.025"} 503 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.1"} 547 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.25"} 554 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.5"} 559 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="1"} 561 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="2"} 561 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="4"} 561 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="8"} 561 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="15"} 561 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="30"} 561 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="60"} 561 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="+Inf"} 561 -rest_client_rate_limiter_duration_seconds_sum{host="172.18.0.2:6443",verb="GET"} 6.241064445999998 -rest_client_rate_limiter_duration_seconds_count{host="172.18.0.2:6443",verb="GET"} 561 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.005"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.025"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.1"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.25"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.5"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="1"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="2"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="4"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="8"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="15"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="30"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="60"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="+Inf"} 12 -rest_client_rate_limiter_duration_seconds_sum{host="172.18.0.2:6443",verb="PATCH"} 2.6931999999999996e-05 -rest_client_rate_limiter_duration_seconds_count{host="172.18.0.2:6443",verb="PATCH"} 12 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.005"} 66 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.025"} 66 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.1"} 84 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.25"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.5"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="1"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="2"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="4"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="8"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="15"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="30"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="60"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="+Inf"} 89 -rest_client_rate_limiter_duration_seconds_sum{host="172.18.0.2:6443",verb="POST"} 2.0618520720000015 -rest_client_rate_limiter_duration_seconds_count{host="172.18.0.2:6443",verb="POST"} 89 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.005"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.025"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.1"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.25"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.5"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="1"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="2"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="4"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="8"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="15"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="30"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="60"} 353 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="+Inf"} 353 -rest_client_rate_limiter_duration_seconds_sum{host="172.18.0.2:6443",verb="PUT"} 0.0009427589999999995 -rest_client_rate_limiter_duration_seconds_count{host="172.18.0.2:6443",verb="PUT"} 353 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.005"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.025"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.1"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.25"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.5"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="1"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="2"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="4"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="8"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="15"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="30"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="60"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="+Inf"} 2 +rest_client_rate_limiter_duration_seconds_sum{host="192.168.58.2:8443",verb="DELETE"} 3.336e-06 +rest_client_rate_limiter_duration_seconds_count{host="192.168.58.2:8443",verb="DELETE"} 2 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.005"} 116 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.025"} 120 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.1"} 159 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.25"} 167 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.5"} 177 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="1"} 179 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="2"} 179 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="4"} 179 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="8"} 179 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="15"} 179 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="30"} 179 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="60"} 179 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="+Inf"} 179 +rest_client_rate_limiter_duration_seconds_sum{host="192.168.58.2:8443",verb="GET"} 8.271082117000002 +rest_client_rate_limiter_duration_seconds_count{host="192.168.58.2:8443",verb="GET"} 179 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.005"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.025"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.1"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.25"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.5"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="1"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="2"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="4"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="8"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="15"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="30"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="60"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="+Inf"} 11 +rest_client_rate_limiter_duration_seconds_sum{host="192.168.58.2:8443",verb="PATCH"} 1.8168e-05 +rest_client_rate_limiter_duration_seconds_count{host="192.168.58.2:8443",verb="PATCH"} 11 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.005"} 41 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.025"} 41 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.1"} 60 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.25"} 61 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.5"} 70 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="1"} 71 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="2"} 71 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="4"} 71 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="8"} 71 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="15"} 71 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="30"} 71 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="60"} 71 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="+Inf"} 71 +rest_client_rate_limiter_duration_seconds_sum{host="192.168.58.2:8443",verb="POST"} 5.580375548999998 +rest_client_rate_limiter_duration_seconds_count{host="192.168.58.2:8443",verb="POST"} 71 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.005"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.025"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.1"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.25"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.5"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="1"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="2"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="4"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="8"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="15"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="30"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="60"} 17 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="+Inf"} 17 +rest_client_rate_limiter_duration_seconds_sum{host="192.168.58.2:8443",verb="PUT"} 3.366200000000001e-05 +rest_client_rate_limiter_duration_seconds_count{host="192.168.58.2:8443",verb="PUT"} 17 # HELP rest_client_request_duration_seconds [ALPHA] Request latency in seconds. Broken down by verb, and host. # TYPE rest_client_request_duration_seconds histogram -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.005"} 447 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.025"} 501 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.1"} 544 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.25"} 553 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.5"} 558 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="1"} 560 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="2"} 560 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="4"} 561 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="8"} 561 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="15"} 561 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="30"} 561 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="60"} 561 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="+Inf"} 561 -rest_client_request_duration_seconds_sum{host="172.18.0.2:6443",verb="GET"} 11.537652950999988 -rest_client_request_duration_seconds_count{host="172.18.0.2:6443",verb="GET"} 561 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.005"} 0 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.025"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.1"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.25"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.5"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="1"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="2"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="4"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="8"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="15"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="30"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="60"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="+Inf"} 12 -rest_client_request_duration_seconds_sum{host="172.18.0.2:6443",verb="PATCH"} 0.164656374 -rest_client_request_duration_seconds_count{host="172.18.0.2:6443",verb="PATCH"} 12 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.005"} 20 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.025"} 57 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.1"} 76 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.25"} 77 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.5"} 89 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="1"} 89 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="2"} 89 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="4"} 89 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="8"} 89 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="15"} 89 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="30"} 89 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="60"} 89 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="+Inf"} 89 -rest_client_request_duration_seconds_sum{host="172.18.0.2:6443",verb="POST"} 5.392320426000001 -rest_client_request_duration_seconds_count{host="172.18.0.2:6443",verb="POST"} 89 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.005"} 29 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.025"} 351 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.1"} 352 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.25"} 352 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.5"} 353 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="1"} 353 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="2"} 353 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="4"} 353 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="8"} 353 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="15"} 353 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="30"} 353 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="60"} 353 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="+Inf"} 353 -rest_client_request_duration_seconds_sum{host="172.18.0.2:6443",verb="PUT"} 3.877152228000004 -rest_client_request_duration_seconds_count{host="172.18.0.2:6443",verb="PUT"} 353 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.005"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.025"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.1"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.25"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="0.5"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="1"} 2 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="2"} 2 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="4"} 2 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="8"} 2 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="15"} 2 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="30"} 2 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="60"} 2 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="DELETE",le="+Inf"} 2 +rest_client_request_duration_seconds_sum{host="192.168.58.2:8443",verb="DELETE"} 0.5999318539999999 +rest_client_request_duration_seconds_count{host="192.168.58.2:8443",verb="DELETE"} 2 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.005"} 77 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.025"} 85 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.1"} 152 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.25"} 164 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.5"} 175 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="1"} 179 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="2"} 179 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="4"} 179 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="8"} 179 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="15"} 179 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="30"} 179 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="60"} 179 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="+Inf"} 179 +rest_client_request_duration_seconds_sum{host="192.168.58.2:8443",verb="GET"} 12.788541488999996 +rest_client_request_duration_seconds_count{host="192.168.58.2:8443",verb="GET"} 179 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.005"} 0 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.025"} 4 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.1"} 7 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.25"} 8 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.5"} 8 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="1"} 11 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="2"} 11 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="4"} 11 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="8"} 11 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="15"} 11 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="30"} 11 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="60"} 11 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="+Inf"} 11 +rest_client_request_duration_seconds_sum{host="192.168.58.2:8443",verb="PATCH"} 3.115352958 +rest_client_request_duration_seconds_count{host="192.168.58.2:8443",verb="PATCH"} 11 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.005"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.025"} 24 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.1"} 49 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.25"} 52 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.5"} 61 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="1"} 69 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="2"} 71 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="4"} 71 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="8"} 71 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="15"} 71 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="30"} 71 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="60"} 71 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="+Inf"} 71 +rest_client_request_duration_seconds_sum{host="192.168.58.2:8443",verb="POST"} 13.400135484 +rest_client_request_duration_seconds_count{host="192.168.58.2:8443",verb="POST"} 71 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.005"} 3 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.025"} 12 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.1"} 14 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.25"} 16 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="0.5"} 16 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="1"} 17 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="2"} 17 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="4"} 17 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="8"} 17 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="15"} 17 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="30"} 17 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="60"} 17 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PUT",le="+Inf"} 17 +rest_client_request_duration_seconds_sum{host="192.168.58.2:8443",verb="PUT"} 0.9906885049999999 +rest_client_request_duration_seconds_count{host="192.168.58.2:8443",verb="PUT"} 17 # HELP rest_client_request_size_bytes [ALPHA] Request size in bytes. Broken down by verb and host. # TYPE rest_client_request_size_bytes histogram -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="64"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="256"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="512"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1024"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="4096"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="16384"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="65536"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="262144"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1.048576e+06"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="4.194304e+06"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1.6777216e+07"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="+Inf"} 561 -rest_client_request_size_bytes_sum{host="172.18.0.2:6443",verb="GET"} 0 -rest_client_request_size_bytes_count{host="172.18.0.2:6443",verb="GET"} 561 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="64"} 1 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="256"} 6 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="512"} 7 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1024"} 7 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="4096"} 12 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="16384"} 12 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="65536"} 12 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="262144"} 12 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1.048576e+06"} 12 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="4.194304e+06"} 12 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1.6777216e+07"} 12 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="+Inf"} 12 -rest_client_request_size_bytes_sum{host="172.18.0.2:6443",verb="PATCH"} 15373 -rest_client_request_size_bytes_count{host="172.18.0.2:6443",verb="PATCH"} 12 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="64"} 1 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="256"} 53 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="512"} 65 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1024"} 69 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="4096"} 88 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="16384"} 89 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="65536"} 89 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="262144"} 89 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1.048576e+06"} 89 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="4.194304e+06"} 89 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1.6777216e+07"} 89 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="+Inf"} 89 -rest_client_request_size_bytes_sum{host="172.18.0.2:6443",verb="POST"} 47067 -rest_client_request_size_bytes_count{host="172.18.0.2:6443",verb="POST"} 89 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="64"} 0 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="256"} 0 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="512"} 317 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1024"} 321 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="4096"} 346 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="16384"} 353 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="65536"} 353 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="262144"} 353 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1.048576e+06"} 353 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="4.194304e+06"} 353 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1.6777216e+07"} 353 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="+Inf"} 353 -rest_client_request_size_bytes_sum{host="172.18.0.2:6443",verb="PUT"} 264367 -rest_client_request_size_bytes_count{host="172.18.0.2:6443",verb="PUT"} 353 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="64"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="256"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="512"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="1024"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="4096"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="16384"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="65536"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="262144"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="1.048576e+06"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="4.194304e+06"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="1.6777216e+07"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="+Inf"} 2 +rest_client_request_size_bytes_sum{host="192.168.58.2:8443",verb="DELETE"} 62 +rest_client_request_size_bytes_count{host="192.168.58.2:8443",verb="DELETE"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="64"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="256"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="512"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1024"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="4096"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="16384"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="65536"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="262144"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1.048576e+06"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="4.194304e+06"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1.6777216e+07"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="+Inf"} 179 +rest_client_request_size_bytes_sum{host="192.168.58.2:8443",verb="GET"} 0 +rest_client_request_size_bytes_count{host="192.168.58.2:8443",verb="GET"} 179 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="64"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="256"} 5 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="512"} 6 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1024"} 6 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="4096"} 11 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="16384"} 11 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="65536"} 11 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="262144"} 11 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1.048576e+06"} 11 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="4.194304e+06"} 11 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1.6777216e+07"} 11 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="+Inf"} 11 +rest_client_request_size_bytes_sum{host="192.168.58.2:8443",verb="PATCH"} 14842 +rest_client_request_size_bytes_count{host="192.168.58.2:8443",verb="PATCH"} 11 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="64"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="256"} 56 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="512"} 61 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1024"} 63 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="4096"} 71 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="16384"} 71 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="65536"} 71 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="262144"} 71 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1.048576e+06"} 71 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="4.194304e+06"} 71 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1.6777216e+07"} 71 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="+Inf"} 71 +rest_client_request_size_bytes_sum{host="192.168.58.2:8443",verb="POST"} 19672 +rest_client_request_size_bytes_count{host="192.168.58.2:8443",verb="POST"} 71 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="64"} 0 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="256"} 0 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="512"} 2 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="1024"} 7 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="4096"} 17 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="16384"} 17 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="65536"} 17 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="262144"} 17 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="1.048576e+06"} 17 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="4.194304e+06"} 17 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="1.6777216e+07"} 17 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="+Inf"} 17 +rest_client_request_size_bytes_sum{host="192.168.58.2:8443",verb="PUT"} 18631 +rest_client_request_size_bytes_count{host="192.168.58.2:8443",verb="PUT"} 17 # HELP rest_client_requests_total [ALPHA] Number of HTTP requests, partitioned by status code, method, and host. # TYPE rest_client_requests_total counter -rest_client_requests_total{code="200",host="172.18.0.2:6443",method="GET"} 619 -rest_client_requests_total{code="200",host="172.18.0.2:6443",method="PATCH"} 12 -rest_client_requests_total{code="200",host="172.18.0.2:6443",method="PUT"} 348 -rest_client_requests_total{code="201",host="172.18.0.2:6443",method="POST"} 85 -rest_client_requests_total{code="403",host="172.18.0.2:6443",method="GET"} 1 -rest_client_requests_total{code="403",host="172.18.0.2:6443",method="POST"} 4 -rest_client_requests_total{code="404",host="172.18.0.2:6443",method="GET"} 33 -rest_client_requests_total{code="409",host="172.18.0.2:6443",method="PUT"} 5 +rest_client_requests_total{code="200",host="192.168.58.2:8443",method="DELETE"} 1 +rest_client_requests_total{code="200",host="192.168.58.2:8443",method="GET"} 190 +rest_client_requests_total{code="200",host="192.168.58.2:8443",method="PATCH"} 10 +rest_client_requests_total{code="200",host="192.168.58.2:8443",method="PUT"} 16 +rest_client_requests_total{code="201",host="192.168.58.2:8443",method="POST"} 71 +rest_client_requests_total{code="403",host="192.168.58.2:8443",method="GET"} 2 +rest_client_requests_total{code="404",host="192.168.58.2:8443",method="DELETE"} 1 +rest_client_requests_total{code="404",host="192.168.58.2:8443",method="GET"} 34 +rest_client_requests_total{code="409",host="192.168.58.2:8443",method="PATCH"} 1 +rest_client_requests_total{code="409",host="192.168.58.2:8443",method="PUT"} 1 +rest_client_requests_total{code="500",host="192.168.58.2:8443",method="GET"} 1 # HELP rest_client_response_size_bytes [ALPHA] Response size in bytes. Broken down by verb and host. # TYPE rest_client_response_size_bytes histogram -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="64"} 20 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="256"} 84 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="512"} 437 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1024"} 441 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="4096"} 458 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="16384"} 558 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="65536"} 561 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="262144"} 561 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1.048576e+06"} 561 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="4.194304e+06"} 561 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1.6777216e+07"} 561 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="+Inf"} 561 -rest_client_response_size_bytes_sum{host="172.18.0.2:6443",verb="GET"} 1.424272e+06 -rest_client_response_size_bytes_count{host="172.18.0.2:6443",verb="GET"} 561 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="64"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="256"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="512"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1024"} 4 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="4096"} 11 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="16384"} 12 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="65536"} 12 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="262144"} 12 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1.048576e+06"} 12 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="4.194304e+06"} 12 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1.6777216e+07"} 12 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="+Inf"} 12 -rest_client_response_size_bytes_sum{host="172.18.0.2:6443",verb="PATCH"} 28374 -rest_client_response_size_bytes_count{host="172.18.0.2:6443",verb="PATCH"} 12 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="64"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="256"} 41 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="512"} 42 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1024"} 55 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="4096"} 87 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="16384"} 89 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="65536"} 89 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="262144"} 89 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1.048576e+06"} 89 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="4.194304e+06"} 89 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1.6777216e+07"} 89 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="+Inf"} 89 -rest_client_response_size_bytes_sum{host="172.18.0.2:6443",verb="POST"} 84305 -rest_client_response_size_bytes_count{host="172.18.0.2:6443",verb="POST"} 89 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="64"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="256"} 2 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="512"} 322 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1024"} 325 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="4096"} 346 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="16384"} 353 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="65536"} 353 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="262144"} 353 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1.048576e+06"} 353 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="4.194304e+06"} 353 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1.6777216e+07"} 353 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="+Inf"} 353 -rest_client_response_size_bytes_sum{host="172.18.0.2:6443",verb="PUT"} 249739 -rest_client_response_size_bytes_count{host="172.18.0.2:6443",verb="PUT"} 353 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="64"} 0 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="256"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="512"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="1024"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="4096"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="16384"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="65536"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="262144"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="1.048576e+06"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="4.194304e+06"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="1.6777216e+07"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="DELETE",le="+Inf"} 2 +rest_client_response_size_bytes_sum{host="192.168.58.2:8443",verb="DELETE"} 275 +rest_client_response_size_bytes_count{host="192.168.58.2:8443",verb="DELETE"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="64"} 19 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="256"} 92 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="512"} 128 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1024"} 134 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="4096"} 143 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="16384"} 163 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="65536"} 179 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="262144"} 179 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1.048576e+06"} 179 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="4.194304e+06"} 179 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1.6777216e+07"} 179 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="+Inf"} 179 +rest_client_response_size_bytes_sum{host="192.168.58.2:8443",verb="GET"} 514937 +rest_client_response_size_bytes_count{host="192.168.58.2:8443",verb="GET"} 179 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="64"} 0 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="256"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="512"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1024"} 2 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="4096"} 7 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="16384"} 11 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="65536"} 11 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="262144"} 11 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1.048576e+06"} 11 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="4.194304e+06"} 11 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1.6777216e+07"} 11 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="+Inf"} 11 +rest_client_response_size_bytes_sum{host="192.168.58.2:8443",verb="PATCH"} 31657 +rest_client_response_size_bytes_count{host="192.168.58.2:8443",verb="PATCH"} 11 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="64"} 0 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="256"} 38 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="512"} 38 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1024"} 45 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="4096"} 71 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="16384"} 71 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="65536"} 71 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="262144"} 71 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1.048576e+06"} 71 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="4.194304e+06"} 71 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1.6777216e+07"} 71 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="+Inf"} 71 +rest_client_response_size_bytes_sum{host="192.168.58.2:8443",verb="POST"} 52967 +rest_client_response_size_bytes_count{host="192.168.58.2:8443",verb="POST"} 71 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="64"} 0 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="256"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="512"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="1024"} 3 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="4096"} 17 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="16384"} 17 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="65536"} 17 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="262144"} 17 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="1.048576e+06"} 17 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="4.194304e+06"} 17 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="1.6777216e+07"} 17 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PUT",le="+Inf"} 17 +rest_client_response_size_bytes_sum{host="192.168.58.2:8443",verb="PUT"} 42059 +rest_client_response_size_bytes_count{host="192.168.58.2:8443",verb="PUT"} 17 +# HELP rest_client_transport_cache_entries [ALPHA] Number of transport entries in the internal cache. +# TYPE rest_client_transport_cache_entries gauge +rest_client_transport_cache_entries 3 +# HELP rest_client_transport_create_calls_total [ALPHA] Number of calls to get a new transport, partitioned by the result of the operation hit: obtained from the cache, miss: created and added to the cache, uncacheable: created and not cached +# TYPE rest_client_transport_create_calls_total counter +rest_client_transport_create_calls_total{result="hit"} 53 +rest_client_transport_create_calls_total{result="miss"} 3 # HELP retroactive_storageclass_errors_total [ALPHA] Total number of failed retroactive StorageClass assignments to persistent volume claim # TYPE retroactive_storageclass_errors_total counter retroactive_storageclass_errors_total 0 @@ -1078,24 +1369,24 @@ retroactive_storageclass_total 0 root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.001"} 0 root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.002"} 0 root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.004"} 0 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.008"} 4 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.016"} 4 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.032"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.064"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.128"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.256"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.512"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="1.024"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="2.048"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="4.096"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="8.192"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="16.384"} 5 -root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="+Inf"} 5 -root_ca_cert_publisher_sync_duration_seconds_sum{code="200"} 0.04534516 -root_ca_cert_publisher_sync_duration_seconds_count{code="200"} 5 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.008"} 2 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.016"} 2 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.032"} 2 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.064"} 2 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.128"} 3 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.256"} 3 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="0.512"} 3 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="1.024"} 4 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="2.048"} 4 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="4.096"} 4 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="8.192"} 4 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="16.384"} 4 +root_ca_cert_publisher_sync_duration_seconds_bucket{code="200",le="+Inf"} 4 +root_ca_cert_publisher_sync_duration_seconds_sum{code="200"} 0.9007301629999999 +root_ca_cert_publisher_sync_duration_seconds_count{code="200"} 4 # HELP root_ca_cert_publisher_sync_total [ALPHA] Number of namespace syncs happened in root ca cert publisher. # TYPE root_ca_cert_publisher_sync_total counter -root_ca_cert_publisher_sync_total{code="200"} 5 +root_ca_cert_publisher_sync_total{code="200"} 4 # HELP running_managed_controllers [ALPHA] Indicates where instances of a controller are currently running # TYPE running_managed_controllers gauge running_managed_controllers{manager="kube-controller-manager",name="nodeipam"} 1 @@ -1145,6 +1436,26 @@ service_controller_update_loadbalancer_host_latency_seconds_bucket{le="16384"} 0 service_controller_update_loadbalancer_host_latency_seconds_bucket{le="+Inf"} 0 service_controller_update_loadbalancer_host_latency_seconds_sum 0 service_controller_update_loadbalancer_host_latency_seconds_count 0 +# HELP taint_eviction_controller_pod_deletion_duration_seconds [ALPHA] Latency, in seconds, between the time when a taint effect has been activated for the Pod and its deletion via TaintEvictionController. +# TYPE taint_eviction_controller_pod_deletion_duration_seconds histogram +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="0.005"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="0.025"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="0.1"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="0.5"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="1"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="2.5"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="10"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="30"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="60"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="120"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="180"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="240"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_bucket{le="+Inf"} 0 +taint_eviction_controller_pod_deletion_duration_seconds_sum 0 +taint_eviction_controller_pod_deletion_duration_seconds_count 0 +# HELP taint_eviction_controller_pod_deletions_total [ALPHA] Total number of Pods deleted by TaintEvictionController since its start. +# TYPE taint_eviction_controller_pod_deletions_total counter +taint_eviction_controller_pod_deletions_total 0 # HELP ttl_after_finished_controller_job_deletion_duration_seconds [ALPHA] The time it took to delete the job since it became eligible for deletion # TYPE ttl_after_finished_controller_job_deletion_duration_seconds histogram ttl_after_finished_controller_job_deletion_duration_seconds_bucket{le="0.1"} 0 @@ -1166,54 +1477,55 @@ ttl_after_finished_controller_job_deletion_duration_seconds_sum 0 ttl_after_finished_controller_job_deletion_duration_seconds_count 0 # HELP workqueue_adds_total [ALPHA] Total number of adds handled by workqueue # TYPE workqueue_adds_total counter -workqueue_adds_total{name="ClusterRoleAggregator"} 18 +workqueue_adds_total{name="ClusterRoleAggregator"} 20 workqueue_adds_total{name="DynamicCABundle-client-ca-bundle"} 1 -workqueue_adds_total{name="DynamicCABundle-csr-controller"} 8 -workqueue_adds_total{name="DynamicCABundle-request-header"} 2 -workqueue_adds_total{name="DynamicServingCertificateController"} 11 +workqueue_adds_total{name="DynamicCABundle-csr-controller"} 6 +workqueue_adds_total{name="DynamicCABundle-request-header"} 1 +workqueue_adds_total{name="DynamicServingCertificateController"} 3 workqueue_adds_total{name="bootstrap_signer_queue"} 2 -workqueue_adds_total{name="certificate"} 0 +workqueue_adds_total{name="certificate"} 15 workqueue_adds_total{name="claims"} 0 workqueue_adds_total{name="cronjob"} 0 -workqueue_adds_total{name="daemonset"} 20 -workqueue_adds_total{name="deployment"} 24 +workqueue_adds_total{name="daemonset"} 5 +workqueue_adds_total{name="deployment"} 9 workqueue_adds_total{name="disruption"} 0 workqueue_adds_total{name="disruption_recheck"} 0 workqueue_adds_total{name="endpoint"} 7 -workqueue_adds_total{name="endpoint_slice"} 9 -workqueue_adds_total{name="endpoint_slice_mirroring"} 5 +workqueue_adds_total{name="endpoint_slice"} 8 +workqueue_adds_total{name="endpoint_slice_mirroring"} 6 workqueue_adds_total{name="ephemeral_volume"} 0 -workqueue_adds_total{name="garbage_collector_attempt_to_delete"} 6 +workqueue_adds_total{name="garbage_collector_attempt_to_delete"} 1 workqueue_adds_total{name="garbage_collector_attempt_to_orphan"} 0 -workqueue_adds_total{name="garbage_collector_graph_changes"} 1333 +workqueue_adds_total{name="garbage_collector_graph_changes"} 400 workqueue_adds_total{name="horizontalpodautoscaler"} 0 workqueue_adds_total{name="job"} 0 workqueue_adds_total{name="job_orphan_pod"} 0 workqueue_adds_total{name="namespace"} 0 workqueue_adds_total{name="node"} 1 workqueue_adds_total{name="node_lifecycle_controller"} 6 -workqueue_adds_total{name="node_lifecycle_controller_pods"} 10 +workqueue_adds_total{name="node_lifecycle_controller_pods"} 8 workqueue_adds_total{name="noexec_taint_node"} 1 -workqueue_adds_total{name="noexec_taint_pod"} 16 +workqueue_adds_total{name="noexec_taint_pod"} 12 workqueue_adds_total{name="orphaned_pods_nodes"} 0 workqueue_adds_total{name="pvcprotection"} 0 workqueue_adds_total{name="pvcs"} 0 workqueue_adds_total{name="pvprotection"} 0 -workqueue_adds_total{name="replicaset"} 21 +workqueue_adds_total{name="replicaset"} 7 workqueue_adds_total{name="replicationmanager"} 0 -workqueue_adds_total{name="resource_quota_controller_resource_changes"} 0 +workqueue_adds_total{name="resource_quota_controller_resource_changes"} 1 workqueue_adds_total{name="resourcequota_primary"} 0 workqueue_adds_total{name="resourcequota_priority"} 0 -workqueue_adds_total{name="root_ca_cert_publisher"} 5 +workqueue_adds_total{name="root_ca_cert_publisher"} 4 workqueue_adds_total{name="service"} 0 -workqueue_adds_total{name="serviceaccount"} 5 +workqueue_adds_total{name="serviceaccount"} 4 workqueue_adds_total{name="serviceaccount_tokens_secret"} 0 workqueue_adds_total{name="serviceaccount_tokens_service"} 42 workqueue_adds_total{name="stale_pod_disruption"} 0 workqueue_adds_total{name="statefulset"} 0 workqueue_adds_total{name="token_cleaner"} 1 workqueue_adds_total{name="ttl_jobs_to_delete"} 0 -workqueue_adds_total{name="ttlcontroller"} 8 +workqueue_adds_total{name="ttlcontroller"} 7 +workqueue_adds_total{name="validatingadmissionpolicy-status"} 0 workqueue_adds_total{name="volume_expand"} 0 workqueue_adds_total{name="volumes"} 0 # HELP workqueue_depth [ALPHA] Current depth of workqueue @@ -1266,6 +1578,7 @@ workqueue_depth{name="statefulset"} 0 workqueue_depth{name="token_cleaner"} 0 workqueue_depth{name="ttl_jobs_to_delete"} 0 workqueue_depth{name="ttlcontroller"} 0 +workqueue_depth{name="validatingadmissionpolicy-status"} 0 workqueue_depth{name="volume_expand"} 0 workqueue_depth{name="volumes"} 0 # HELP workqueue_longest_running_processor_seconds [ALPHA] How many seconds has the longest running processor for workqueue been running. @@ -1318,6 +1631,7 @@ workqueue_longest_running_processor_seconds{name="statefulset"} 0 workqueue_longest_running_processor_seconds{name="token_cleaner"} 0 workqueue_longest_running_processor_seconds{name="ttl_jobs_to_delete"} 0 workqueue_longest_running_processor_seconds{name="ttlcontroller"} 0 +workqueue_longest_running_processor_seconds{name="validatingadmissionpolicy-status"} 0 workqueue_longest_running_processor_seconds{name="volume_expand"} 0 workqueue_longest_running_processor_seconds{name="volumes"} 0 # HELP workqueue_queue_duration_seconds [ALPHA] How long in seconds an item stays in workqueue before being requested. @@ -1325,68 +1639,68 @@ workqueue_longest_running_processor_seconds{name="volumes"} 0 workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="9.999999999999999e-06"} 2 -workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="9.999999999999999e-05"} 9 +workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="9.999999999999999e-06"} 6 +workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="9.999999999999999e-05"} 8 workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.001"} 12 -workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.01"} 15 -workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.1"} 18 -workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="1"} 18 -workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="10"} 18 -workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="+Inf"} 18 -workqueue_queue_duration_seconds_sum{name="ClusterRoleAggregator"} 0.083220427 -workqueue_queue_duration_seconds_count{name="ClusterRoleAggregator"} 18 +workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.01"} 16 +workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.1"} 20 +workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="1"} 20 +workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="10"} 20 +workqueue_queue_duration_seconds_bucket{name="ClusterRoleAggregator",le="+Inf"} 20 +workqueue_queue_duration_seconds_sum{name="ClusterRoleAggregator"} 0.38345086600000006 +workqueue_queue_duration_seconds_count{name="ClusterRoleAggregator"} 20 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="1e-06"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="9.999999999999999e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="9.999999999999999e-05"} 1 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="9.999999999999999e-05"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="0.001"} 1 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="0.01"} 1 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="0.1"} 1 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="1"} 1 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="10"} 1 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="+Inf"} 1 -workqueue_queue_duration_seconds_sum{name="DynamicCABundle-client-ca-bundle"} 9.4449e-05 +workqueue_queue_duration_seconds_sum{name="DynamicCABundle-client-ca-bundle"} 0.000112784 workqueue_queue_duration_seconds_count{name="DynamicCABundle-client-ca-bundle"} 1 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="9.999999999999999e-06"} 0 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="9.999999999999999e-06"} 1 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="9.999999999999999e-05"} 2 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.001"} 4 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.01"} 8 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.1"} 8 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1"} 8 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="10"} 8 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="+Inf"} 8 -workqueue_queue_duration_seconds_sum{name="DynamicCABundle-csr-controller"} 0.012802833999999999 -workqueue_queue_duration_seconds_count{name="DynamicCABundle-csr-controller"} 8 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.001"} 6 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.01"} 6 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.1"} 6 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1"} 6 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="10"} 6 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="+Inf"} 6 +workqueue_queue_duration_seconds_sum{name="DynamicCABundle-csr-controller"} 0.001477908 +workqueue_queue_duration_seconds_count{name="DynamicCABundle-csr-controller"} 6 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1e-06"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="9.999999999999999e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="9.999999999999999e-05"} 2 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.001"} 2 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.01"} 2 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.1"} 2 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1"} 2 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="10"} 2 -workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="+Inf"} 2 -workqueue_queue_duration_seconds_sum{name="DynamicCABundle-request-header"} 0.00014659500000000002 -workqueue_queue_duration_seconds_count{name="DynamicCABundle-request-header"} 2 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="9.999999999999999e-05"} 1 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.001"} 1 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.01"} 1 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.1"} 1 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1"} 1 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="10"} 1 +workqueue_queue_duration_seconds_bucket{name="DynamicCABundle-request-header",le="+Inf"} 1 +workqueue_queue_duration_seconds_sum{name="DynamicCABundle-request-header"} 7.5422e-05 +workqueue_queue_duration_seconds_count{name="DynamicCABundle-request-header"} 1 workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-06"} 1 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-05"} 11 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.001"} 11 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.01"} 11 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.1"} 11 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1"} 11 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="10"} 11 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="+Inf"} 11 -workqueue_queue_duration_seconds_sum{name="DynamicServingCertificateController"} 0.00016838400000000002 -workqueue_queue_duration_seconds_count{name="DynamicServingCertificateController"} 11 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-06"} 3 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-05"} 3 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.001"} 3 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.01"} 3 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.1"} 3 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1"} 3 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="10"} 3 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="+Inf"} 3 +workqueue_queue_duration_seconds_sum{name="DynamicServingCertificateController"} 1.9223000000000002e-05 +workqueue_queue_duration_seconds_count{name="DynamicServingCertificateController"} 3 workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="1e-06"} 0 @@ -1396,23 +1710,23 @@ workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="0.001" workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="0.01"} 1 workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="0.1"} 1 workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="1"} 1 -workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="10"} 1 +workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="10"} 2 workqueue_queue_duration_seconds_bucket{name="bootstrap_signer_queue",le="+Inf"} 2 -workqueue_queue_duration_seconds_sum{name="bootstrap_signer_queue"} 13.20053605 +workqueue_queue_duration_seconds_sum{name="bootstrap_signer_queue"} 2.361768259 workqueue_queue_duration_seconds_count{name="bootstrap_signer_queue"} 2 workqueue_queue_duration_seconds_bucket{name="certificate",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="certificate",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="certificate",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="certificate",le="9.999999999999999e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="certificate",le="9.999999999999999e-05"} 0 -workqueue_queue_duration_seconds_bucket{name="certificate",le="0.001"} 0 -workqueue_queue_duration_seconds_bucket{name="certificate",le="0.01"} 0 -workqueue_queue_duration_seconds_bucket{name="certificate",le="0.1"} 0 -workqueue_queue_duration_seconds_bucket{name="certificate",le="1"} 0 -workqueue_queue_duration_seconds_bucket{name="certificate",le="10"} 0 -workqueue_queue_duration_seconds_bucket{name="certificate",le="+Inf"} 0 -workqueue_queue_duration_seconds_sum{name="certificate"} 0 -workqueue_queue_duration_seconds_count{name="certificate"} 0 +workqueue_queue_duration_seconds_bucket{name="certificate",le="9.999999999999999e-06"} 5 +workqueue_queue_duration_seconds_bucket{name="certificate",le="9.999999999999999e-05"} 8 +workqueue_queue_duration_seconds_bucket{name="certificate",le="0.001"} 11 +workqueue_queue_duration_seconds_bucket{name="certificate",le="0.01"} 14 +workqueue_queue_duration_seconds_bucket{name="certificate",le="0.1"} 15 +workqueue_queue_duration_seconds_bucket{name="certificate",le="1"} 15 +workqueue_queue_duration_seconds_bucket{name="certificate",le="10"} 15 +workqueue_queue_duration_seconds_bucket{name="certificate",le="+Inf"} 15 +workqueue_queue_duration_seconds_sum{name="certificate"} 0.04619411200000001 +workqueue_queue_duration_seconds_count{name="certificate"} 15 workqueue_queue_duration_seconds_bucket{name="claims",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="claims",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="claims",le="1e-06"} 0 @@ -1442,29 +1756,29 @@ workqueue_queue_duration_seconds_count{name="cronjob"} 0 workqueue_queue_duration_seconds_bucket{name="daemonset",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="daemonset",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="daemonset",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="daemonset",le="9.999999999999999e-06"} 7 -workqueue_queue_duration_seconds_bucket{name="daemonset",le="9.999999999999999e-05"} 13 -workqueue_queue_duration_seconds_bucket{name="daemonset",le="0.001"} 14 -workqueue_queue_duration_seconds_bucket{name="daemonset",le="0.01"} 15 -workqueue_queue_duration_seconds_bucket{name="daemonset",le="0.1"} 20 -workqueue_queue_duration_seconds_bucket{name="daemonset",le="1"} 20 -workqueue_queue_duration_seconds_bucket{name="daemonset",le="10"} 20 -workqueue_queue_duration_seconds_bucket{name="daemonset",le="+Inf"} 20 -workqueue_queue_duration_seconds_sum{name="daemonset"} 0.13628356 -workqueue_queue_duration_seconds_count{name="daemonset"} 20 +workqueue_queue_duration_seconds_bucket{name="daemonset",le="9.999999999999999e-06"} 2 +workqueue_queue_duration_seconds_bucket{name="daemonset",le="9.999999999999999e-05"} 3 +workqueue_queue_duration_seconds_bucket{name="daemonset",le="0.001"} 3 +workqueue_queue_duration_seconds_bucket{name="daemonset",le="0.01"} 3 +workqueue_queue_duration_seconds_bucket{name="daemonset",le="0.1"} 3 +workqueue_queue_duration_seconds_bucket{name="daemonset",le="1"} 5 +workqueue_queue_duration_seconds_bucket{name="daemonset",le="10"} 5 +workqueue_queue_duration_seconds_bucket{name="daemonset",le="+Inf"} 5 +workqueue_queue_duration_seconds_sum{name="daemonset"} 0.279991625 +workqueue_queue_duration_seconds_count{name="daemonset"} 5 workqueue_queue_duration_seconds_bucket{name="deployment",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="deployment",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="deployment",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="deployment",le="9.999999999999999e-06"} 5 -workqueue_queue_duration_seconds_bucket{name="deployment",le="9.999999999999999e-05"} 14 -workqueue_queue_duration_seconds_bucket{name="deployment",le="0.001"} 15 -workqueue_queue_duration_seconds_bucket{name="deployment",le="0.01"} 19 -workqueue_queue_duration_seconds_bucket{name="deployment",le="0.1"} 24 -workqueue_queue_duration_seconds_bucket{name="deployment",le="1"} 24 -workqueue_queue_duration_seconds_bucket{name="deployment",le="10"} 24 -workqueue_queue_duration_seconds_bucket{name="deployment",le="+Inf"} 24 -workqueue_queue_duration_seconds_sum{name="deployment"} 0.19736604500000002 -workqueue_queue_duration_seconds_count{name="deployment"} 24 +workqueue_queue_duration_seconds_bucket{name="deployment",le="9.999999999999999e-06"} 4 +workqueue_queue_duration_seconds_bucket{name="deployment",le="9.999999999999999e-05"} 4 +workqueue_queue_duration_seconds_bucket{name="deployment",le="0.001"} 6 +workqueue_queue_duration_seconds_bucket{name="deployment",le="0.01"} 7 +workqueue_queue_duration_seconds_bucket{name="deployment",le="0.1"} 9 +workqueue_queue_duration_seconds_bucket{name="deployment",le="1"} 9 +workqueue_queue_duration_seconds_bucket{name="deployment",le="10"} 9 +workqueue_queue_duration_seconds_bucket{name="deployment",le="+Inf"} 9 +workqueue_queue_duration_seconds_sum{name="deployment"} 0.081023937 +workqueue_queue_duration_seconds_count{name="deployment"} 9 workqueue_queue_duration_seconds_bucket{name="disruption",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="disruption",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="disruption",le="1e-06"} 0 @@ -1495,41 +1809,41 @@ workqueue_queue_duration_seconds_bucket{name="endpoint",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="endpoint",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="endpoint",le="1e-06"} 0 workqueue_queue_duration_seconds_bucket{name="endpoint",le="9.999999999999999e-06"} 4 -workqueue_queue_duration_seconds_bucket{name="endpoint",le="9.999999999999999e-05"} 5 +workqueue_queue_duration_seconds_bucket{name="endpoint",le="9.999999999999999e-05"} 4 workqueue_queue_duration_seconds_bucket{name="endpoint",le="0.001"} 5 workqueue_queue_duration_seconds_bucket{name="endpoint",le="0.01"} 5 workqueue_queue_duration_seconds_bucket{name="endpoint",le="0.1"} 7 workqueue_queue_duration_seconds_bucket{name="endpoint",le="1"} 7 workqueue_queue_duration_seconds_bucket{name="endpoint",le="10"} 7 workqueue_queue_duration_seconds_bucket{name="endpoint",le="+Inf"} 7 -workqueue_queue_duration_seconds_sum{name="endpoint"} 0.096313131 +workqueue_queue_duration_seconds_sum{name="endpoint"} 0.19608616599999998 workqueue_queue_duration_seconds_count{name="endpoint"} 7 workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="1e-06"} 0 workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="9.999999999999999e-06"} 5 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="9.999999999999999e-05"} 7 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="0.001"} 7 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="0.01"} 7 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="0.1"} 9 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="1"} 9 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="10"} 9 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="+Inf"} 9 -workqueue_queue_duration_seconds_sum{name="endpoint_slice"} 0.10669576500000003 -workqueue_queue_duration_seconds_count{name="endpoint_slice"} 9 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="9.999999999999999e-05"} 6 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="0.001"} 6 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="0.01"} 6 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="0.1"} 8 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="1"} 8 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="10"} 8 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice",le="+Inf"} 8 +workqueue_queue_duration_seconds_sum{name="endpoint_slice"} 0.19787523100000004 +workqueue_queue_duration_seconds_count{name="endpoint_slice"} 8 workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="9.999999999999999e-06"} 3 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="9.999999999999999e-06"} 4 workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="9.999999999999999e-05"} 4 workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.001"} 4 workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.01"} 4 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.1"} 5 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1"} 5 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="10"} 5 -workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="+Inf"} 5 -workqueue_queue_duration_seconds_sum{name="endpoint_slice_mirroring"} 0.054689076999999996 -workqueue_queue_duration_seconds_count{name="endpoint_slice_mirroring"} 5 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.1"} 6 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1"} 6 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="10"} 6 +workqueue_queue_duration_seconds_bucket{name="endpoint_slice_mirroring",le="+Inf"} 6 +workqueue_queue_duration_seconds_sum{name="endpoint_slice_mirroring"} 0.023224284 +workqueue_queue_duration_seconds_count{name="endpoint_slice_mirroring"} 6 workqueue_queue_duration_seconds_bucket{name="ephemeral_volume",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="ephemeral_volume",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="ephemeral_volume",le="1e-06"} 0 @@ -1551,11 +1865,11 @@ workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delet workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="0.001"} 0 workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="0.01"} 0 workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="0.1"} 0 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="1"} 6 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="10"} 6 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="+Inf"} 6 -workqueue_queue_duration_seconds_sum{name="garbage_collector_attempt_to_delete"} 4.097001815 -workqueue_queue_duration_seconds_count{name="garbage_collector_attempt_to_delete"} 6 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="1"} 1 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="10"} 1 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="+Inf"} 1 +workqueue_queue_duration_seconds_sum{name="garbage_collector_attempt_to_delete"} 0.687077829 +workqueue_queue_duration_seconds_count{name="garbage_collector_attempt_to_delete"} 1 workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_orphan",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_orphan",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="garbage_collector_attempt_to_orphan",le="1e-06"} 0 @@ -1571,17 +1885,17 @@ workqueue_queue_duration_seconds_sum{name="garbage_collector_attempt_to_orphan"} workqueue_queue_duration_seconds_count{name="garbage_collector_attempt_to_orphan"} 0 workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1e-07"} 0 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1e-06"} 2 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="9.999999999999999e-06"} 1005 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="9.999999999999999e-05"} 1239 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.001"} 1333 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.01"} 1333 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.1"} 1333 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1"} 1333 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="10"} 1333 -workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="+Inf"} 1333 -workqueue_queue_duration_seconds_sum{name="garbage_collector_graph_changes"} 0.032958143000000044 -workqueue_queue_duration_seconds_count{name="garbage_collector_graph_changes"} 1333 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1e-06"} 0 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="9.999999999999999e-06"} 164 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="9.999999999999999e-05"} 226 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.001"} 400 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.01"} 400 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.1"} 400 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1"} 400 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="10"} 400 +workqueue_queue_duration_seconds_bucket{name="garbage_collector_graph_changes",le="+Inf"} 400 +workqueue_queue_duration_seconds_sum{name="garbage_collector_graph_changes"} 0.04108330799999994 +workqueue_queue_duration_seconds_count{name="garbage_collector_graph_changes"} 400 workqueue_queue_duration_seconds_bucket{name="horizontalpodautoscaler",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="horizontalpodautoscaler",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="horizontalpodautoscaler",le="1e-06"} 0 @@ -1651,28 +1965,28 @@ workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="1e- workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="1e-06"} 0 workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="9.999999999999999e-06"} 3 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="9.999999999999999e-05"} 5 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="0.001"} 5 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="0.01"} 5 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="0.1"} 6 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="9.999999999999999e-05"} 4 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="0.001"} 4 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="0.01"} 4 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="0.1"} 5 workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="1"} 6 workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="10"} 6 workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller",le="+Inf"} 6 -workqueue_queue_duration_seconds_sum{name="node_lifecycle_controller"} 0.09706806599999998 +workqueue_queue_duration_seconds_sum{name="node_lifecycle_controller"} 0.20688174699999998 workqueue_queue_duration_seconds_count{name="node_lifecycle_controller"} 6 workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="9.999999999999999e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="9.999999999999999e-05"} 2 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.001"} 6 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.01"} 6 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.1"} 6 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1"} 10 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="10"} 10 -workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="+Inf"} 10 -workqueue_queue_duration_seconds_sum{name="node_lifecycle_controller_pods"} 0.4169839409999999 -workqueue_queue_duration_seconds_count{name="node_lifecycle_controller_pods"} 10 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="9.999999999999999e-06"} 4 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="9.999999999999999e-05"} 4 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.001"} 4 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.01"} 8 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.1"} 8 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1"} 8 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="10"} 8 +workqueue_queue_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="+Inf"} 8 +workqueue_queue_duration_seconds_sum{name="node_lifecycle_controller_pods"} 0.03383237000000001 +workqueue_queue_duration_seconds_count{name="node_lifecycle_controller_pods"} 8 workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="1e-06"} 0 @@ -1680,25 +1994,25 @@ workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="9.999999999 workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="9.999999999999999e-05"} 0 workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="0.001"} 0 workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="0.01"} 0 -workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="0.1"} 1 +workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="0.1"} 0 workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="1"} 1 workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="10"} 1 workqueue_queue_duration_seconds_bucket{name="noexec_taint_node",le="+Inf"} 1 -workqueue_queue_duration_seconds_sum{name="noexec_taint_node"} 0.097449632 +workqueue_queue_duration_seconds_sum{name="noexec_taint_node"} 0.101178389 workqueue_queue_duration_seconds_count{name="noexec_taint_node"} 1 workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="9.999999999999999e-06"} 11 -workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="9.999999999999999e-05"} 12 -workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="0.001"} 12 -workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="0.01"} 12 +workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="9.999999999999999e-06"} 7 +workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="9.999999999999999e-05"} 7 +workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="0.001"} 7 +workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="0.01"} 7 workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="0.1"} 12 -workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="1"} 16 -workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="10"} 16 -workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="+Inf"} 16 -workqueue_queue_duration_seconds_sum{name="noexec_taint_pod"} 0.41756404399999997 -workqueue_queue_duration_seconds_count{name="noexec_taint_pod"} 16 +workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="1"} 12 +workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="10"} 12 +workqueue_queue_duration_seconds_bucket{name="noexec_taint_pod",le="+Inf"} 12 +workqueue_queue_duration_seconds_sum{name="noexec_taint_pod"} 0.48862469399999997 +workqueue_queue_duration_seconds_count{name="noexec_taint_pod"} 12 workqueue_queue_duration_seconds_bucket{name="orphaned_pods_nodes",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="orphaned_pods_nodes",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="orphaned_pods_nodes",le="1e-06"} 0 @@ -1754,16 +2068,16 @@ workqueue_queue_duration_seconds_count{name="pvprotection"} 0 workqueue_queue_duration_seconds_bucket{name="replicaset",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="replicaset",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="replicaset",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="replicaset",le="9.999999999999999e-06"} 8 -workqueue_queue_duration_seconds_bucket{name="replicaset",le="9.999999999999999e-05"} 16 -workqueue_queue_duration_seconds_bucket{name="replicaset",le="0.001"} 17 -workqueue_queue_duration_seconds_bucket{name="replicaset",le="0.01"} 19 -workqueue_queue_duration_seconds_bucket{name="replicaset",le="0.1"} 21 -workqueue_queue_duration_seconds_bucket{name="replicaset",le="1"} 21 -workqueue_queue_duration_seconds_bucket{name="replicaset",le="10"} 21 -workqueue_queue_duration_seconds_bucket{name="replicaset",le="+Inf"} 21 -workqueue_queue_duration_seconds_sum{name="replicaset"} 0.053872862999999986 -workqueue_queue_duration_seconds_count{name="replicaset"} 21 +workqueue_queue_duration_seconds_bucket{name="replicaset",le="9.999999999999999e-06"} 4 +workqueue_queue_duration_seconds_bucket{name="replicaset",le="9.999999999999999e-05"} 6 +workqueue_queue_duration_seconds_bucket{name="replicaset",le="0.001"} 6 +workqueue_queue_duration_seconds_bucket{name="replicaset",le="0.01"} 6 +workqueue_queue_duration_seconds_bucket{name="replicaset",le="0.1"} 7 +workqueue_queue_duration_seconds_bucket{name="replicaset",le="1"} 7 +workqueue_queue_duration_seconds_bucket{name="replicaset",le="10"} 7 +workqueue_queue_duration_seconds_bucket{name="replicaset",le="+Inf"} 7 +workqueue_queue_duration_seconds_sum{name="replicaset"} 0.065005879 +workqueue_queue_duration_seconds_count{name="replicaset"} 7 workqueue_queue_duration_seconds_bucket{name="replicationmanager",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="replicationmanager",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="replicationmanager",le="1e-06"} 0 @@ -1780,16 +2094,16 @@ workqueue_queue_duration_seconds_count{name="replicationmanager"} 0 workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="9.999999999999999e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="9.999999999999999e-05"} 0 -workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.001"} 0 -workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.01"} 0 -workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.1"} 0 -workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1"} 0 -workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="10"} 0 -workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="+Inf"} 0 -workqueue_queue_duration_seconds_sum{name="resource_quota_controller_resource_changes"} 0 -workqueue_queue_duration_seconds_count{name="resource_quota_controller_resource_changes"} 0 +workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="9.999999999999999e-06"} 1 +workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="9.999999999999999e-05"} 1 +workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.001"} 1 +workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.01"} 1 +workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.1"} 1 +workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1"} 1 +workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="10"} 1 +workqueue_queue_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="+Inf"} 1 +workqueue_queue_duration_seconds_sum{name="resource_quota_controller_resource_changes"} 2.33e-06 +workqueue_queue_duration_seconds_count{name="resource_quota_controller_resource_changes"} 1 workqueue_queue_duration_seconds_bucket{name="resourcequota_primary",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="resourcequota_primary",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="resourcequota_primary",le="1e-06"} 0 @@ -1823,12 +2137,12 @@ workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="9.9999 workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="9.999999999999999e-05"} 0 workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="0.001"} 0 workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="0.01"} 0 -workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="0.1"} 5 -workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="1"} 5 -workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="10"} 5 -workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="+Inf"} 5 -workqueue_queue_duration_seconds_sum{name="root_ca_cert_publisher"} 0.33130713 -workqueue_queue_duration_seconds_count{name="root_ca_cert_publisher"} 5 +workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="0.1"} 1 +workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="1"} 4 +workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="10"} 4 +workqueue_queue_duration_seconds_bucket{name="root_ca_cert_publisher",le="+Inf"} 4 +workqueue_queue_duration_seconds_sum{name="root_ca_cert_publisher"} 2.8307388939999996 +workqueue_queue_duration_seconds_count{name="root_ca_cert_publisher"} 4 workqueue_queue_duration_seconds_bucket{name="service",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="service",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="service",le="1e-06"} 0 @@ -1849,12 +2163,12 @@ workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="9.999999999999 workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="9.999999999999999e-05"} 0 workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="0.001"} 0 workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="0.01"} 0 -workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="0.1"} 5 -workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="1"} 5 -workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="10"} 5 -workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="+Inf"} 5 -workqueue_queue_duration_seconds_sum{name="serviceaccount"} 0.155889986 -workqueue_queue_duration_seconds_count{name="serviceaccount"} 5 +workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="0.1"} 1 +workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="1"} 4 +workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="10"} 4 +workqueue_queue_duration_seconds_bucket{name="serviceaccount",le="+Inf"} 4 +workqueue_queue_duration_seconds_sum{name="serviceaccount"} 2.517243173 +workqueue_queue_duration_seconds_count{name="serviceaccount"} 4 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_secret",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_secret",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_secret",le="1e-06"} 0 @@ -1871,15 +2185,15 @@ workqueue_queue_duration_seconds_count{name="serviceaccount_tokens_secret"} 0 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="9.999999999999999e-06"} 23 -workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="9.999999999999999e-05"} 36 -workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="0.001"} 36 -workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="0.01"} 37 +workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="9.999999999999999e-06"} 40 +workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="9.999999999999999e-05"} 40 +workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="0.001"} 40 +workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="0.01"} 41 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="0.1"} 42 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="1"} 42 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="10"} 42 workqueue_queue_duration_seconds_bucket{name="serviceaccount_tokens_service",le="+Inf"} 42 -workqueue_queue_duration_seconds_sum{name="serviceaccount_tokens_service"} 0.2990801869999998 +workqueue_queue_duration_seconds_sum{name="serviceaccount_tokens_service"} 0.10000589400000004 workqueue_queue_duration_seconds_count{name="serviceaccount_tokens_service"} 42 workqueue_queue_duration_seconds_bucket{name="stale_pod_disruption",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="stale_pod_disruption",le="1e-07"} 0 @@ -1918,7 +2232,7 @@ workqueue_queue_duration_seconds_bucket{name="token_cleaner",le="0.1"} 1 workqueue_queue_duration_seconds_bucket{name="token_cleaner",le="1"} 1 workqueue_queue_duration_seconds_bucket{name="token_cleaner",le="10"} 1 workqueue_queue_duration_seconds_bucket{name="token_cleaner",le="+Inf"} 1 -workqueue_queue_duration_seconds_sum{name="token_cleaner"} 0.00050785 +workqueue_queue_duration_seconds_sum{name="token_cleaner"} 0.000280784 workqueue_queue_duration_seconds_count{name="token_cleaner"} 1 workqueue_queue_duration_seconds_bucket{name="ttl_jobs_to_delete",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="ttl_jobs_to_delete",le="1e-07"} 0 @@ -1936,16 +2250,29 @@ workqueue_queue_duration_seconds_count{name="ttl_jobs_to_delete"} 0 workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="9.999999999999999e-06"} 5 -workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="9.999999999999999e-05"} 7 -workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="0.001"} 7 -workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="0.01"} 8 -workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="0.1"} 8 -workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="1"} 8 -workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="10"} 8 -workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="+Inf"} 8 -workqueue_queue_duration_seconds_sum{name="ttlcontroller"} 0.0015355340000000003 -workqueue_queue_duration_seconds_count{name="ttlcontroller"} 8 +workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="9.999999999999999e-06"} 4 +workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="9.999999999999999e-05"} 4 +workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="0.001"} 5 +workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="0.01"} 5 +workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="0.1"} 7 +workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="1"} 7 +workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="10"} 7 +workqueue_queue_duration_seconds_bucket{name="ttlcontroller",le="+Inf"} 7 +workqueue_queue_duration_seconds_sum{name="ttlcontroller"} 0.090578702 +workqueue_queue_duration_seconds_count{name="ttlcontroller"} 7 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="1e-08"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="1e-07"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="1e-06"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="9.999999999999999e-06"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="9.999999999999999e-05"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="0.001"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="0.01"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="0.1"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="1"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="10"} 0 +workqueue_queue_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="+Inf"} 0 +workqueue_queue_duration_seconds_sum{name="validatingadmissionpolicy-status"} 0 +workqueue_queue_duration_seconds_count{name="validatingadmissionpolicy-status"} 0 workqueue_queue_duration_seconds_bucket{name="volume_expand",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="volume_expand",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="volume_expand",le="1e-06"} 0 @@ -1982,12 +2309,12 @@ workqueue_retries_total{name="DynamicServingCertificateController"} 0 workqueue_retries_total{name="bootstrap_signer_queue"} 0 workqueue_retries_total{name="certificate"} 0 workqueue_retries_total{name="cronjob"} 0 -workqueue_retries_total{name="daemonset"} 4 -workqueue_retries_total{name="deployment"} 13 +workqueue_retries_total{name="daemonset"} 0 +workqueue_retries_total{name="deployment"} 5 workqueue_retries_total{name="disruption"} 0 workqueue_retries_total{name="disruption_recheck"} 0 -workqueue_retries_total{name="endpoint"} 5 -workqueue_retries_total{name="endpoint_slice"} 9 +workqueue_retries_total{name="endpoint"} 3 +workqueue_retries_total{name="endpoint_slice"} 6 workqueue_retries_total{name="endpoint_slice_mirroring"} 0 workqueue_retries_total{name="ephemeral_volume"} 0 workqueue_retries_total{name="garbage_collector_attempt_to_delete"} 0 @@ -2018,6 +2345,7 @@ workqueue_retries_total{name="statefulset"} 0 workqueue_retries_total{name="token_cleaner"} 1 workqueue_retries_total{name="ttl_jobs_to_delete"} 0 workqueue_retries_total{name="ttlcontroller"} 0 +workqueue_retries_total{name="validatingadmissionpolicy-status"} 0 workqueue_retries_total{name="volume_expand"} 0 # HELP workqueue_unfinished_work_seconds [ALPHA] How many seconds of work has done that is in progress and hasn't been observed by work_duration. Large values indicate stuck threads. One can deduce the number of stuck threads by observing the rate at which this increases. # TYPE workqueue_unfinished_work_seconds gauge @@ -2069,6 +2397,7 @@ workqueue_unfinished_work_seconds{name="statefulset"} 0 workqueue_unfinished_work_seconds{name="token_cleaner"} 0 workqueue_unfinished_work_seconds{name="ttl_jobs_to_delete"} 0 workqueue_unfinished_work_seconds{name="ttlcontroller"} 0 +workqueue_unfinished_work_seconds{name="validatingadmissionpolicy-status"} 0 workqueue_unfinished_work_seconds{name="volume_expand"} 0 workqueue_unfinished_work_seconds{name="volumes"} 0 # HELP workqueue_work_duration_seconds [ALPHA] How long in seconds processing an item from workqueue takes. @@ -2077,15 +2406,15 @@ workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="1e-08"} workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="9.999999999999999e-05"} 0 -workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.001"} 12 -workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.01"} 13 -workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.1"} 18 -workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="1"} 18 -workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="10"} 18 -workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="+Inf"} 18 -workqueue_work_duration_seconds_sum{name="ClusterRoleAggregator"} 0.11454938699999999 -workqueue_work_duration_seconds_count{name="ClusterRoleAggregator"} 18 +workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="9.999999999999999e-05"} 1 +workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.001"} 11 +workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.01"} 15 +workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="0.1"} 17 +workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="1"} 20 +workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="10"} 20 +workqueue_work_duration_seconds_bucket{name="ClusterRoleAggregator",le="+Inf"} 20 +workqueue_work_duration_seconds_sum{name="ClusterRoleAggregator"} 2.898477131 +workqueue_work_duration_seconds_count{name="ClusterRoleAggregator"} 20 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="1e-06"} 0 @@ -2097,73 +2426,73 @@ workqueue_work_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",l workqueue_work_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="1"} 1 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="10"} 1 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-client-ca-bundle",le="+Inf"} 1 -workqueue_work_duration_seconds_sum{name="DynamicCABundle-client-ca-bundle"} 8.4975e-05 +workqueue_work_duration_seconds_sum{name="DynamicCABundle-client-ca-bundle"} 6.5901e-05 workqueue_work_duration_seconds_count{name="DynamicCABundle-client-ca-bundle"} 1 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="9.999999999999999e-06"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="9.999999999999999e-05"} 0 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.001"} 0 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.01"} 8 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.1"} 8 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1"} 8 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="10"} 8 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="+Inf"} 8 -workqueue_work_duration_seconds_sum{name="DynamicCABundle-csr-controller"} 0.025409607 -workqueue_work_duration_seconds_count{name="DynamicCABundle-csr-controller"} 8 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.001"} 5 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.01"} 6 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="0.1"} 6 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="1"} 6 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="10"} 6 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-csr-controller",le="+Inf"} 6 +workqueue_work_duration_seconds_sum{name="DynamicCABundle-csr-controller"} 0.002299655 +workqueue_work_duration_seconds_count{name="DynamicCABundle-csr-controller"} 6 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="9.999999999999999e-06"} 0 workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="9.999999999999999e-05"} 1 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.001"} 2 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.01"} 2 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.1"} 2 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1"} 2 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="10"} 2 -workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="+Inf"} 2 -workqueue_work_duration_seconds_sum{name="DynamicCABundle-request-header"} 0.000267977 -workqueue_work_duration_seconds_count{name="DynamicCABundle-request-header"} 2 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.001"} 1 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.01"} 1 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="0.1"} 1 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="1"} 1 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="10"} 1 +workqueue_work_duration_seconds_bucket{name="DynamicCABundle-request-header",le="+Inf"} 1 +workqueue_work_duration_seconds_sum{name="DynamicCABundle-request-header"} 6.8813e-05 +workqueue_work_duration_seconds_count{name="DynamicCABundle-request-header"} 1 workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-05"} 9 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.001"} 11 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.01"} 11 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.1"} 11 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1"} 11 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="10"} 11 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="+Inf"} 11 -workqueue_work_duration_seconds_sum{name="DynamicServingCertificateController"} 0.00047514399999999994 -workqueue_work_duration_seconds_count{name="DynamicServingCertificateController"} 11 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-05"} 3 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.001"} 3 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.01"} 3 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.1"} 3 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1"} 3 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="10"} 3 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="+Inf"} 3 +workqueue_work_duration_seconds_sum{name="DynamicServingCertificateController"} 7.7778e-05 +workqueue_work_duration_seconds_count{name="DynamicServingCertificateController"} 3 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="9.999999999999999e-05"} 1 +workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="9.999999999999999e-05"} 0 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="0.001"} 1 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="0.01"} 1 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="0.1"} 1 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="1"} 2 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="10"} 2 workqueue_work_duration_seconds_bucket{name="bootstrap_signer_queue",le="+Inf"} 2 -workqueue_work_duration_seconds_sum{name="bootstrap_signer_queue"} 0.38498436100000005 +workqueue_work_duration_seconds_sum{name="bootstrap_signer_queue"} 0.510648106 workqueue_work_duration_seconds_count{name="bootstrap_signer_queue"} 2 workqueue_work_duration_seconds_bucket{name="certificate",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="certificate",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="certificate",le="1e-06"} 0 -workqueue_work_duration_seconds_bucket{name="certificate",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="certificate",le="9.999999999999999e-05"} 0 -workqueue_work_duration_seconds_bucket{name="certificate",le="0.001"} 0 -workqueue_work_duration_seconds_bucket{name="certificate",le="0.01"} 0 -workqueue_work_duration_seconds_bucket{name="certificate",le="0.1"} 0 -workqueue_work_duration_seconds_bucket{name="certificate",le="1"} 0 -workqueue_work_duration_seconds_bucket{name="certificate",le="10"} 0 -workqueue_work_duration_seconds_bucket{name="certificate",le="+Inf"} 0 -workqueue_work_duration_seconds_sum{name="certificate"} 0 -workqueue_work_duration_seconds_count{name="certificate"} 0 +workqueue_work_duration_seconds_bucket{name="certificate",le="9.999999999999999e-06"} 5 +workqueue_work_duration_seconds_bucket{name="certificate",le="9.999999999999999e-05"} 12 +workqueue_work_duration_seconds_bucket{name="certificate",le="0.001"} 13 +workqueue_work_duration_seconds_bucket{name="certificate",le="0.01"} 13 +workqueue_work_duration_seconds_bucket{name="certificate",le="0.1"} 14 +workqueue_work_duration_seconds_bucket{name="certificate",le="1"} 15 +workqueue_work_duration_seconds_bucket{name="certificate",le="10"} 15 +workqueue_work_duration_seconds_bucket{name="certificate",le="+Inf"} 15 +workqueue_work_duration_seconds_sum{name="certificate"} 0.8875127420000001 +workqueue_work_duration_seconds_count{name="certificate"} 15 workqueue_work_duration_seconds_bucket{name="claims",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="claims",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="claims",le="1e-06"} 0 @@ -2195,27 +2524,27 @@ workqueue_work_duration_seconds_bucket{name="daemonset",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="daemonset",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="daemonset",le="9.999999999999999e-06"} 0 workqueue_work_duration_seconds_bucket{name="daemonset",le="9.999999999999999e-05"} 0 -workqueue_work_duration_seconds_bucket{name="daemonset",le="0.001"} 8 -workqueue_work_duration_seconds_bucket{name="daemonset",le="0.01"} 13 -workqueue_work_duration_seconds_bucket{name="daemonset",le="0.1"} 18 -workqueue_work_duration_seconds_bucket{name="daemonset",le="1"} 20 -workqueue_work_duration_seconds_bucket{name="daemonset",le="10"} 20 -workqueue_work_duration_seconds_bucket{name="daemonset",le="+Inf"} 20 -workqueue_work_duration_seconds_sum{name="daemonset"} 0.8108563479999998 -workqueue_work_duration_seconds_count{name="daemonset"} 20 +workqueue_work_duration_seconds_bucket{name="daemonset",le="0.001"} 1 +workqueue_work_duration_seconds_bucket{name="daemonset",le="0.01"} 3 +workqueue_work_duration_seconds_bucket{name="daemonset",le="0.1"} 4 +workqueue_work_duration_seconds_bucket{name="daemonset",le="1"} 4 +workqueue_work_duration_seconds_bucket{name="daemonset",le="10"} 5 +workqueue_work_duration_seconds_bucket{name="daemonset",le="+Inf"} 5 +workqueue_work_duration_seconds_sum{name="daemonset"} 1.253680391 +workqueue_work_duration_seconds_count{name="daemonset"} 5 workqueue_work_duration_seconds_bucket{name="deployment",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="deployment",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="deployment",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="deployment",le="9.999999999999999e-06"} 0 workqueue_work_duration_seconds_bucket{name="deployment",le="9.999999999999999e-05"} 0 -workqueue_work_duration_seconds_bucket{name="deployment",le="0.001"} 11 -workqueue_work_duration_seconds_bucket{name="deployment",le="0.01"} 18 -workqueue_work_duration_seconds_bucket{name="deployment",le="0.1"} 22 -workqueue_work_duration_seconds_bucket{name="deployment",le="1"} 24 -workqueue_work_duration_seconds_bucket{name="deployment",le="10"} 24 -workqueue_work_duration_seconds_bucket{name="deployment",le="+Inf"} 24 -workqueue_work_duration_seconds_sum{name="deployment"} 0.8284786330000001 -workqueue_work_duration_seconds_count{name="deployment"} 24 +workqueue_work_duration_seconds_bucket{name="deployment",le="0.001"} 3 +workqueue_work_duration_seconds_bucket{name="deployment",le="0.01"} 7 +workqueue_work_duration_seconds_bucket{name="deployment",le="0.1"} 7 +workqueue_work_duration_seconds_bucket{name="deployment",le="1"} 9 +workqueue_work_duration_seconds_bucket{name="deployment",le="10"} 9 +workqueue_work_duration_seconds_bucket{name="deployment",le="+Inf"} 9 +workqueue_work_duration_seconds_sum{name="deployment"} 0.6208150189999999 +workqueue_work_duration_seconds_count{name="deployment"} 9 workqueue_work_duration_seconds_bucket{name="disruption",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="disruption",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="disruption",le="1e-06"} 0 @@ -2246,14 +2575,14 @@ workqueue_work_duration_seconds_bucket{name="endpoint",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="endpoint",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="endpoint",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="endpoint",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="endpoint",le="9.999999999999999e-05"} 3 -workqueue_work_duration_seconds_bucket{name="endpoint",le="0.001"} 3 -workqueue_work_duration_seconds_bucket{name="endpoint",le="0.01"} 6 -workqueue_work_duration_seconds_bucket{name="endpoint",le="0.1"} 6 +workqueue_work_duration_seconds_bucket{name="endpoint",le="9.999999999999999e-05"} 2 +workqueue_work_duration_seconds_bucket{name="endpoint",le="0.001"} 2 +workqueue_work_duration_seconds_bucket{name="endpoint",le="0.01"} 5 +workqueue_work_duration_seconds_bucket{name="endpoint",le="0.1"} 5 workqueue_work_duration_seconds_bucket{name="endpoint",le="1"} 7 workqueue_work_duration_seconds_bucket{name="endpoint",le="10"} 7 workqueue_work_duration_seconds_bucket{name="endpoint",le="+Inf"} 7 -workqueue_work_duration_seconds_sum{name="endpoint"} 0.43761739 +workqueue_work_duration_seconds_sum{name="endpoint"} 1.207983575 workqueue_work_duration_seconds_count{name="endpoint"} 7 workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="1e-07"} 0 @@ -2261,26 +2590,26 @@ workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="9.999999999999999e-06"} 0 workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="9.999999999999999e-05"} 1 workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="0.001"} 5 -workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="0.01"} 8 -workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="0.1"} 8 -workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="1"} 9 -workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="10"} 9 -workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="+Inf"} 9 -workqueue_work_duration_seconds_sum{name="endpoint_slice"} 0.48552537400000007 -workqueue_work_duration_seconds_count{name="endpoint_slice"} 9 +workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="0.01"} 7 +workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="0.1"} 7 +workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="1"} 8 +workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="10"} 8 +workqueue_work_duration_seconds_bucket{name="endpoint_slice",le="+Inf"} 8 +workqueue_work_duration_seconds_sum{name="endpoint_slice"} 0.817184333 +workqueue_work_duration_seconds_count{name="endpoint_slice"} 8 workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="9.999999999999999e-05"} 5 -workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.001"} 5 -workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.01"} 5 -workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.1"} 5 -workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1"} 5 -workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="10"} 5 -workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="+Inf"} 5 -workqueue_work_duration_seconds_sum{name="endpoint_slice_mirroring"} 0.00024789 -workqueue_work_duration_seconds_count{name="endpoint_slice_mirroring"} 5 +workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="9.999999999999999e-05"} 6 +workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.001"} 6 +workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.01"} 6 +workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="0.1"} 6 +workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="1"} 6 +workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="10"} 6 +workqueue_work_duration_seconds_bucket{name="endpoint_slice_mirroring",le="+Inf"} 6 +workqueue_work_duration_seconds_sum{name="endpoint_slice_mirroring"} 0.000318015 +workqueue_work_duration_seconds_count{name="endpoint_slice_mirroring"} 6 workqueue_work_duration_seconds_bucket{name="ephemeral_volume",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="ephemeral_volume",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="ephemeral_volume",le="1e-06"} 0 @@ -2298,15 +2627,15 @@ workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="9.999999999999999e-05"} 0 -workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="0.001"} 0 -workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="0.01"} 5 -workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="0.1"} 6 -workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="1"} 6 -workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="10"} 6 -workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="+Inf"} 6 -workqueue_work_duration_seconds_sum{name="garbage_collector_attempt_to_delete"} 0.053933561 -workqueue_work_duration_seconds_count{name="garbage_collector_attempt_to_delete"} 6 +workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="9.999999999999999e-05"} 1 +workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="0.001"} 1 +workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="0.01"} 1 +workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="0.1"} 1 +workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="1"} 1 +workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="10"} 1 +workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_delete",le="+Inf"} 1 +workqueue_work_duration_seconds_sum{name="garbage_collector_attempt_to_delete"} 1.881e-05 +workqueue_work_duration_seconds_count{name="garbage_collector_attempt_to_delete"} 1 workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_orphan",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_orphan",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="garbage_collector_attempt_to_orphan",le="1e-06"} 0 @@ -2323,16 +2652,16 @@ workqueue_work_duration_seconds_count{name="garbage_collector_attempt_to_orphan" workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1e-06"} 0 -workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="9.999999999999999e-06"} 272 -workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="9.999999999999999e-05"} 1331 -workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.001"} 1333 -workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.01"} 1333 -workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.1"} 1333 -workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1"} 1333 -workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="10"} 1333 -workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="+Inf"} 1333 -workqueue_work_duration_seconds_sum{name="garbage_collector_graph_changes"} 0.02076810500000004 -workqueue_work_duration_seconds_count{name="garbage_collector_graph_changes"} 1333 +workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="9.999999999999999e-06"} 317 +workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="9.999999999999999e-05"} 395 +workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.001"} 400 +workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.01"} 400 +workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="0.1"} 400 +workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="1"} 400 +workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="10"} 400 +workqueue_work_duration_seconds_bucket{name="garbage_collector_graph_changes",le="+Inf"} 400 +workqueue_work_duration_seconds_sum{name="garbage_collector_graph_changes"} 0.004563805000000001 +workqueue_work_duration_seconds_count{name="garbage_collector_graph_changes"} 400 workqueue_work_duration_seconds_bucket{name="horizontalpodautoscaler",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="horizontalpodautoscaler",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="horizontalpodautoscaler",le="1e-06"} 0 @@ -2401,29 +2730,29 @@ workqueue_work_duration_seconds_count{name="node"} 0 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="1e-06"} 0 -workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="9.999999999999999e-06"} 0 +workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="9.999999999999999e-06"} 3 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="9.999999999999999e-05"} 4 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="0.001"} 5 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="0.01"} 5 -workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="0.1"} 6 +workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="0.1"} 5 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="1"} 6 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="10"} 6 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller",le="+Inf"} 6 -workqueue_work_duration_seconds_sum{name="node_lifecycle_controller"} 0.01082167 +workqueue_work_duration_seconds_sum{name="node_lifecycle_controller"} 0.29352712099999995 workqueue_work_duration_seconds_count{name="node_lifecycle_controller"} 6 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="9.999999999999999e-06"} 2 -workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="9.999999999999999e-05"} 8 -workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.001"} 10 -workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.01"} 10 -workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.1"} 10 -workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1"} 10 -workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="10"} 10 -workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="+Inf"} 10 -workqueue_work_duration_seconds_sum{name="node_lifecycle_controller_pods"} 0.0005988570000000001 -workqueue_work_duration_seconds_count{name="node_lifecycle_controller_pods"} 10 +workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="9.999999999999999e-05"} 6 +workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.001"} 8 +workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.01"} 8 +workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="0.1"} 8 +workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="1"} 8 +workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="10"} 8 +workqueue_work_duration_seconds_bucket{name="node_lifecycle_controller_pods",le="+Inf"} 8 +workqueue_work_duration_seconds_sum{name="node_lifecycle_controller_pods"} 0.000630785 +workqueue_work_duration_seconds_count{name="node_lifecycle_controller_pods"} 8 workqueue_work_duration_seconds_bucket{name="noexec_taint_node",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="noexec_taint_node",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="noexec_taint_node",le="1e-06"} 0 @@ -2435,21 +2764,21 @@ workqueue_work_duration_seconds_bucket{name="noexec_taint_node",le="0.1"} 1 workqueue_work_duration_seconds_bucket{name="noexec_taint_node",le="1"} 1 workqueue_work_duration_seconds_bucket{name="noexec_taint_node",le="10"} 1 workqueue_work_duration_seconds_bucket{name="noexec_taint_node",le="+Inf"} 1 -workqueue_work_duration_seconds_sum{name="noexec_taint_node"} 8.0701e-05 +workqueue_work_duration_seconds_sum{name="noexec_taint_node"} 3.774e-05 workqueue_work_duration_seconds_count{name="noexec_taint_node"} 1 workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="9.999999999999999e-06"} 3 -workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="9.999999999999999e-05"} 16 -workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="0.001"} 16 -workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="0.01"} 16 -workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="0.1"} 16 -workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="1"} 16 -workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="10"} 16 -workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="+Inf"} 16 -workqueue_work_duration_seconds_sum{name="noexec_taint_pod"} 0.00039294 -workqueue_work_duration_seconds_count{name="noexec_taint_pod"} 16 +workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="9.999999999999999e-05"} 12 +workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="0.001"} 12 +workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="0.01"} 12 +workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="0.1"} 12 +workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="1"} 12 +workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="10"} 12 +workqueue_work_duration_seconds_bucket{name="noexec_taint_pod",le="+Inf"} 12 +workqueue_work_duration_seconds_sum{name="noexec_taint_pod"} 0.000267002 +workqueue_work_duration_seconds_count{name="noexec_taint_pod"} 12 workqueue_work_duration_seconds_bucket{name="orphaned_pods_nodes",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="orphaned_pods_nodes",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="orphaned_pods_nodes",le="1e-06"} 0 @@ -2506,15 +2835,15 @@ workqueue_work_duration_seconds_bucket{name="replicaset",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="replicaset",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="replicaset",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="replicaset",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="replicaset",le="9.999999999999999e-05"} 8 -workqueue_work_duration_seconds_bucket{name="replicaset",le="0.001"} 14 -workqueue_work_duration_seconds_bucket{name="replicaset",le="0.01"} 17 -workqueue_work_duration_seconds_bucket{name="replicaset",le="0.1"} 19 -workqueue_work_duration_seconds_bucket{name="replicaset",le="1"} 21 -workqueue_work_duration_seconds_bucket{name="replicaset",le="10"} 21 -workqueue_work_duration_seconds_bucket{name="replicaset",le="+Inf"} 21 -workqueue_work_duration_seconds_sum{name="replicaset"} 0.59551322 -workqueue_work_duration_seconds_count{name="replicaset"} 21 +workqueue_work_duration_seconds_bucket{name="replicaset",le="9.999999999999999e-05"} 1 +workqueue_work_duration_seconds_bucket{name="replicaset",le="0.001"} 4 +workqueue_work_duration_seconds_bucket{name="replicaset",le="0.01"} 6 +workqueue_work_duration_seconds_bucket{name="replicaset",le="0.1"} 6 +workqueue_work_duration_seconds_bucket{name="replicaset",le="1"} 6 +workqueue_work_duration_seconds_bucket{name="replicaset",le="10"} 7 +workqueue_work_duration_seconds_bucket{name="replicaset",le="+Inf"} 7 +workqueue_work_duration_seconds_sum{name="replicaset"} 1.274785746 +workqueue_work_duration_seconds_count{name="replicaset"} 7 workqueue_work_duration_seconds_bucket{name="replicationmanager",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="replicationmanager",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="replicationmanager",le="1e-06"} 0 @@ -2531,16 +2860,16 @@ workqueue_work_duration_seconds_count{name="replicationmanager"} 0 workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1e-06"} 0 -workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="9.999999999999999e-05"} 0 -workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.001"} 0 -workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.01"} 0 -workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.1"} 0 -workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1"} 0 -workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="10"} 0 -workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="+Inf"} 0 -workqueue_work_duration_seconds_sum{name="resource_quota_controller_resource_changes"} 0 -workqueue_work_duration_seconds_count{name="resource_quota_controller_resource_changes"} 0 +workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="9.999999999999999e-06"} 1 +workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="9.999999999999999e-05"} 1 +workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.001"} 1 +workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.01"} 1 +workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="0.1"} 1 +workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="1"} 1 +workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="10"} 1 +workqueue_work_duration_seconds_bucket{name="resource_quota_controller_resource_changes",le="+Inf"} 1 +workqueue_work_duration_seconds_sum{name="resource_quota_controller_resource_changes"} 8.088e-06 +workqueue_work_duration_seconds_count{name="resource_quota_controller_resource_changes"} 1 workqueue_work_duration_seconds_bucket{name="resourcequota_primary",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="resourcequota_primary",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="resourcequota_primary",le="1e-06"} 0 @@ -2573,13 +2902,13 @@ workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="1e-06"} workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="9.999999999999999e-06"} 0 workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="9.999999999999999e-05"} 0 workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="0.001"} 0 -workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="0.01"} 4 -workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="0.1"} 5 -workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="1"} 5 -workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="10"} 5 -workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="+Inf"} 5 -workqueue_work_duration_seconds_sum{name="root_ca_cert_publisher"} 0.045449207000000005 -workqueue_work_duration_seconds_count{name="root_ca_cert_publisher"} 5 +workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="0.01"} 2 +workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="0.1"} 3 +workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="1"} 4 +workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="10"} 4 +workqueue_work_duration_seconds_bucket{name="root_ca_cert_publisher",le="+Inf"} 4 +workqueue_work_duration_seconds_sum{name="root_ca_cert_publisher"} 0.9028573999999999 +workqueue_work_duration_seconds_count{name="root_ca_cert_publisher"} 4 workqueue_work_duration_seconds_bucket{name="service",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="service",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="service",le="1e-06"} 0 @@ -2599,13 +2928,13 @@ workqueue_work_duration_seconds_bucket{name="serviceaccount",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="serviceaccount",le="9.999999999999999e-06"} 0 workqueue_work_duration_seconds_bucket{name="serviceaccount",le="9.999999999999999e-05"} 0 workqueue_work_duration_seconds_bucket{name="serviceaccount",le="0.001"} 0 -workqueue_work_duration_seconds_bucket{name="serviceaccount",le="0.01"} 4 -workqueue_work_duration_seconds_bucket{name="serviceaccount",le="0.1"} 5 -workqueue_work_duration_seconds_bucket{name="serviceaccount",le="1"} 5 -workqueue_work_duration_seconds_bucket{name="serviceaccount",le="10"} 5 -workqueue_work_duration_seconds_bucket{name="serviceaccount",le="+Inf"} 5 -workqueue_work_duration_seconds_sum{name="serviceaccount"} 0.037981051 -workqueue_work_duration_seconds_count{name="serviceaccount"} 5 +workqueue_work_duration_seconds_bucket{name="serviceaccount",le="0.01"} 3 +workqueue_work_duration_seconds_bucket{name="serviceaccount",le="0.1"} 3 +workqueue_work_duration_seconds_bucket{name="serviceaccount",le="1"} 4 +workqueue_work_duration_seconds_bucket{name="serviceaccount",le="10"} 4 +workqueue_work_duration_seconds_bucket{name="serviceaccount",le="+Inf"} 4 +workqueue_work_duration_seconds_sum{name="serviceaccount"} 0.7180389739999999 +workqueue_work_duration_seconds_count{name="serviceaccount"} 4 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_secret",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_secret",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_secret",le="1e-06"} 0 @@ -2622,7 +2951,7 @@ workqueue_work_duration_seconds_count{name="serviceaccount_tokens_secret"} 0 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="1e-06"} 0 -workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="9.999999999999999e-06"} 24 +workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="9.999999999999999e-06"} 38 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="9.999999999999999e-05"} 42 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="0.001"} 42 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="0.01"} 42 @@ -2630,7 +2959,7 @@ workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le=" workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="1"} 42 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="10"} 42 workqueue_work_duration_seconds_bucket{name="serviceaccount_tokens_service",le="+Inf"} 42 -workqueue_work_duration_seconds_sum{name="serviceaccount_tokens_service"} 0.00041573900000000004 +workqueue_work_duration_seconds_sum{name="serviceaccount_tokens_service"} 0.0003050970000000001 workqueue_work_duration_seconds_count{name="serviceaccount_tokens_service"} 42 workqueue_work_duration_seconds_bucket{name="stale_pod_disruption",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="stale_pod_disruption",le="1e-07"} 0 @@ -2662,14 +2991,14 @@ workqueue_work_duration_seconds_bucket{name="token_cleaner",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="token_cleaner",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="token_cleaner",le="1e-06"} 0 workqueue_work_duration_seconds_bucket{name="token_cleaner",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="token_cleaner",le="9.999999999999999e-05"} 0 +workqueue_work_duration_seconds_bucket{name="token_cleaner",le="9.999999999999999e-05"} 1 workqueue_work_duration_seconds_bucket{name="token_cleaner",le="0.001"} 1 workqueue_work_duration_seconds_bucket{name="token_cleaner",le="0.01"} 1 workqueue_work_duration_seconds_bucket{name="token_cleaner",le="0.1"} 1 workqueue_work_duration_seconds_bucket{name="token_cleaner",le="1"} 1 workqueue_work_duration_seconds_bucket{name="token_cleaner",le="10"} 1 workqueue_work_duration_seconds_bucket{name="token_cleaner",le="+Inf"} 1 -workqueue_work_duration_seconds_sum{name="token_cleaner"} 0.000115156 +workqueue_work_duration_seconds_sum{name="token_cleaner"} 3.1786e-05 workqueue_work_duration_seconds_count{name="token_cleaner"} 1 workqueue_work_duration_seconds_bucket{name="ttl_jobs_to_delete",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="ttl_jobs_to_delete",le="1e-07"} 0 @@ -2687,16 +3016,29 @@ workqueue_work_duration_seconds_count{name="ttl_jobs_to_delete"} 0 workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="1e-06"} 0 -workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="9.999999999999999e-06"} 4 -workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="9.999999999999999e-05"} 7 -workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="0.001"} 7 -workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="0.01"} 7 -workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="0.1"} 8 -workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="1"} 8 -workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="10"} 8 -workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="+Inf"} 8 -workqueue_work_duration_seconds_sum{name="ttlcontroller"} 0.019944503999999995 -workqueue_work_duration_seconds_count{name="ttlcontroller"} 8 +workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="9.999999999999999e-06"} 5 +workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="9.999999999999999e-05"} 5 +workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="0.001"} 5 +workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="0.01"} 5 +workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="0.1"} 6 +workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="1"} 7 +workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="10"} 7 +workqueue_work_duration_seconds_bucket{name="ttlcontroller",le="+Inf"} 7 +workqueue_work_duration_seconds_sum{name="ttlcontroller"} 0.199981429 +workqueue_work_duration_seconds_count{name="ttlcontroller"} 7 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="1e-08"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="1e-07"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="1e-06"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="9.999999999999999e-06"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="9.999999999999999e-05"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="0.001"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="0.01"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="0.1"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="1"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="10"} 0 +workqueue_work_duration_seconds_bucket{name="validatingadmissionpolicy-status",le="+Inf"} 0 +workqueue_work_duration_seconds_sum{name="validatingadmissionpolicy-status"} 0 +workqueue_work_duration_seconds_count{name="validatingadmissionpolicy-status"} 0 workqueue_work_duration_seconds_bucket{name="volume_expand",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="volume_expand",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="volume_expand",le="1e-06"} 0 @@ -2722,4 +3064,4 @@ workqueue_work_duration_seconds_bucket{name="volumes",le="1"} 0 workqueue_work_duration_seconds_bucket{name="volumes",le="10"} 0 workqueue_work_duration_seconds_bucket{name="volumes",le="+Inf"} 0 workqueue_work_duration_seconds_sum{name="volumes"} 0 -workqueue_work_duration_seconds_count{name="volumes"} 0 +workqueue_work_duration_seconds_count{name="volumes"} 0 \ No newline at end of file diff --git a/metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.27.expected b/metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.31.expected similarity index 81% rename from metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.27.expected rename to metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.31.expected index 5bd7ffbd9be..1016a1f27e1 100644 --- a/metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.27.expected +++ b/metricbeat/module/kubernetes/controllermanager/_meta/test/metrics.1.31.expected @@ -3,14 +3,24 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "client": { - "request": { - "count": 33 + "name": "endpoint_slice_mirroring", + "workqueue": { + "adds": { + "count": 6 + }, + "depth": { + "count": 0 + }, + "longestrunning": { + "sec": 0 + }, + "retries": { + "count": 0 + }, + "unfinished": { + "sec": 0 } - }, - "code": "404", - "host": "172.18.0.2:6443", - "method": "GET" + } }, "Index": "", "ID": "", @@ -29,73 +39,12 @@ "MetricSetFields": { "client": { "request": { - "duration": { - "us": { - "bucket": { - "+Inf": 89, - "100000": 76, - "1000000": 89, - "15000000": 89, - "2000000": 89, - "25000": 57, - "250000": 77, - "30000000": 89, - "4000000": 89, - "5000": 20, - "500000": 89, - "60000000": 89, - "8000000": 89 - }, - "count": 89, - "sum": 5392320.426000001 - } - }, - "size": { - "bytes": { - "bucket": { - "+Inf": 89, - "1024": 69, - "1048576": 89, - "16384": 89, - "16777216": 89, - "256": 53, - "262144": 89, - "4096": 88, - "4194304": 89, - "512": 65, - "64": 1, - "65536": 89 - }, - "count": 89, - "sum": 47067 - } - } - }, - "response": { - "size": { - "bytes": { - "bucket": { - "+Inf": 89, - "1024": 55, - "1048576": 89, - "16384": 89, - "16777216": 89, - "256": 41, - "262144": 89, - "4096": 87, - "4194304": 89, - "512": 42, - "64": 0, - "65536": 89 - }, - "count": 89, - "sum": 84305 - } - } + "count": 34 } }, - "host": "172.18.0.2:6443", - "verb": "POST" + "code": "404", + "host": "192.168.58.2:8443", + "method": "GET" }, "Index": "", "ID": "", @@ -146,10 +95,34 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "endpoint_slice", + "client": { + "request": { + "count": 1 + } + }, + "code": "500", + "host": "192.168.58.2:8443", + "method": "GET" + }, + "Index": "", + "ID": "", + "Namespace": "", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, + { + "RootFields": {}, + "ModuleFields": null, + "MetricSetFields": { + "name": "replicationmanager", "workqueue": { "adds": { - "count": 9 + "count": 0 }, "depth": { "count": 0 @@ -158,7 +131,7 @@ "sec": 0 }, "retries": { - "count": 9 + "count": 0 }, "unfinished": { "sec": 0 @@ -182,12 +155,12 @@ "MetricSetFields": { "client": { "request": { - "count": 5 + "count": 71 } }, - "code": "409", - "host": "172.18.0.2:6443", - "method": "PUT" + "code": "201", + "host": "192.168.58.2:8443", + "method": "POST" }, "Index": "", "ID": "", @@ -204,14 +177,24 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "client": { - "request": { - "count": 619 + "name": "serviceaccount_tokens_service", + "workqueue": { + "adds": { + "count": 42 + }, + "depth": { + "count": 0 + }, + "longestrunning": { + "sec": 0 + }, + "retries": { + "count": 0 + }, + "unfinished": { + "sec": 0 } - }, - "code": "200", - "host": "172.18.0.2:6443", - "method": "GET" + } }, "Index": "", "ID": "", @@ -228,10 +211,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "replicationmanager", + "name": "bootstrap_signer_queue", "workqueue": { "adds": { - "count": 0 + "count": 2 }, "depth": { "count": 0 @@ -262,42 +245,22 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "node": { - "collector": { - "count": 1, - "eviction": { - "count": 0 - }, - "health": { - "pct": 100 - }, - "unhealthy": { - "count": 0 - } - } - }, - "process": { - "cpu": { - "sec": 18 + "name": "endpoint", + "workqueue": { + "adds": { + "count": 7 }, - "fds": { - "max": { - "count": 1048576 - }, - "open": { - "count": 19 - } + "depth": { + "count": 0 }, - "memory": { - "resident": { - "bytes": 94121984 - }, - "virtual": { - "bytes": 800964608 - } + "longestrunning": { + "sec": 0 }, - "started": { - "sec": 1691572169.24 + "retries": { + "count": 3 + }, + "unfinished": { + "sec": 0 } } }, @@ -316,10 +279,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "serviceaccount_tokens_service", + "name": "claims", "workqueue": { "adds": { - "count": 42 + "count": 0 }, "depth": { "count": 0 @@ -327,9 +290,6 @@ "longestrunning": { "sec": 0 }, - "retries": { - "count": 0 - }, "unfinished": { "sec": 0 } @@ -350,10 +310,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "bootstrap_signer_queue", + "name": "noexec_taint_pod", "workqueue": { "adds": { - "count": 2 + "count": 12 }, "depth": { "count": 0 @@ -361,9 +321,6 @@ "longestrunning": { "sec": 0 }, - "retries": { - "count": 0 - }, "unfinished": { "sec": 0 } @@ -384,7 +341,7 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "claims", + "name": "cronjob", "workqueue": { "adds": { "count": 0 @@ -395,6 +352,9 @@ "longestrunning": { "sec": 0 }, + "retries": { + "count": 0 + }, "unfinished": { "sec": 0 } @@ -417,73 +377,12 @@ "MetricSetFields": { "client": { "request": { - "duration": { - "us": { - "bucket": { - "+Inf": 353, - "100000": 352, - "1000000": 353, - "15000000": 353, - "2000000": 353, - "25000": 351, - "250000": 352, - "30000000": 353, - "4000000": 353, - "5000": 29, - "500000": 353, - "60000000": 353, - "8000000": 353 - }, - "count": 353, - "sum": 3877152.228000004 - } - }, - "size": { - "bytes": { - "bucket": { - "+Inf": 353, - "1024": 321, - "1048576": 353, - "16384": 353, - "16777216": 353, - "256": 0, - "262144": 353, - "4096": 346, - "4194304": 353, - "512": 317, - "64": 0, - "65536": 353 - }, - "count": 353, - "sum": 264367 - } - } - }, - "response": { - "size": { - "bytes": { - "bucket": { - "+Inf": 353, - "1024": 325, - "1048576": 353, - "16384": 353, - "16777216": 353, - "256": 2, - "262144": 353, - "4096": 346, - "4194304": 353, - "512": 322, - "64": 0, - "65536": 353 - }, - "count": 353, - "sum": 249739 - } - } + "count": 16 } }, - "host": "172.18.0.2:6443", - "verb": "PUT" + "code": "200", + "host": "192.168.58.2:8443", + "method": "PUT" }, "Index": "", "ID": "", @@ -500,10 +399,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "DynamicServingCertificateController", + "name": "DynamicCABundle-csr-controller", "workqueue": { "adds": { - "count": 11 + "count": 6 }, "depth": { "count": 0 @@ -534,10 +433,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "node_lifecycle_controller_pods", + "name": "disruption_recheck", "workqueue": { "adds": { - "count": 10 + "count": 0 }, "depth": { "count": 0 @@ -568,10 +467,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "cronjob", + "name": "daemonset", "workqueue": { "adds": { - "count": 0 + "count": 5 }, "depth": { "count": 0 @@ -602,10 +501,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "noexec_taint_pod", + "name": "disruption", "workqueue": { "adds": { - "count": 16 + "count": 0 }, "depth": { "count": 0 @@ -613,6 +512,9 @@ "longestrunning": { "sec": 0 }, + "retries": { + "count": 0 + }, "unfinished": { "sec": 0 } @@ -633,7 +535,7 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "disruption_recheck", + "name": "pvcs", "workqueue": { "adds": { "count": 0 @@ -667,10 +569,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "disruption", + "name": "certificate", "workqueue": { "adds": { - "count": 0 + "count": 15 }, "depth": { "count": 0 @@ -701,14 +603,24 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "client": { - "request": { - "count": 85 + "name": "DynamicServingCertificateController", + "workqueue": { + "adds": { + "count": 3 + }, + "depth": { + "count": 0 + }, + "longestrunning": { + "sec": 0 + }, + "retries": { + "count": 0 + }, + "unfinished": { + "sec": 0 } - }, - "code": "201", - "host": "172.18.0.2:6443", - "method": "POST" + } }, "Index": "", "ID": "", @@ -725,10 +637,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "pvcs", + "name": "resource_quota_controller_resource_changes", "workqueue": { "adds": { - "count": 0 + "count": 1 }, "depth": { "count": 0 @@ -759,10 +671,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "garbage_collector_graph_changes", + "name": "statefulset", "workqueue": { "adds": { - "count": 1333 + "count": 0 }, "depth": { "count": 0 @@ -793,10 +705,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "DynamicCABundle-request-header", + "name": "ClusterRoleAggregator", "workqueue": { "adds": { - "count": 2 + "count": 20 }, "depth": { "count": 0 @@ -829,73 +741,12 @@ "MetricSetFields": { "client": { "request": { - "duration": { - "us": { - "bucket": { - "+Inf": 561, - "100000": 544, - "1000000": 560, - "15000000": 561, - "2000000": 560, - "25000": 501, - "250000": 553, - "30000000": 561, - "4000000": 561, - "5000": 447, - "500000": 558, - "60000000": 561, - "8000000": 561 - }, - "count": 561, - "sum": 11537652.950999988 - } - }, - "size": { - "bytes": { - "bucket": { - "+Inf": 561, - "1024": 561, - "1048576": 561, - "16384": 561, - "16777216": 561, - "256": 561, - "262144": 561, - "4096": 561, - "4194304": 561, - "512": 561, - "64": 561, - "65536": 561 - }, - "count": 561, - "sum": 0 - } - } - }, - "response": { - "size": { - "bytes": { - "bucket": { - "+Inf": 561, - "1024": 441, - "1048576": 561, - "16384": 558, - "16777216": 561, - "256": 84, - "262144": 561, - "4096": 458, - "4194304": 561, - "512": 437, - "64": 20, - "65536": 561 - }, - "count": 561, - "sum": 1424272 - } - } + "count": 1 } }, - "host": "172.18.0.2:6443", - "verb": "GET" + "code": "409", + "host": "192.168.58.2:8443", + "method": "PUT" }, "Index": "", "ID": "", @@ -912,10 +763,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "certificate", + "name": "node_lifecycle_controller", "workqueue": { "adds": { - "count": 0 + "count": 6 }, "depth": { "count": 0 @@ -923,9 +774,6 @@ "longestrunning": { "sec": 0 }, - "retries": { - "count": 0 - }, "unfinished": { "sec": 0 } @@ -946,13 +794,13 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "statefulset", + "name": "node", "workqueue": { "adds": { - "count": 0 + "count": 1 }, "depth": { - "count": 0 + "count": 1 }, "longestrunning": { "sec": 0 @@ -980,10 +828,14 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "leader": { - "is_master": true + "client": { + "request": { + "count": 2 + } }, - "name": "kube-controller-manager" + "code": "403", + "host": "192.168.58.2:8443", + "method": "GET" }, "Index": "", "ID": "", @@ -1000,10 +852,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "node_lifecycle_controller", + "name": "ttl_jobs_to_delete", "workqueue": { "adds": { - "count": 6 + "count": 0 }, "depth": { "count": 0 @@ -1011,6 +863,9 @@ "longestrunning": { "sec": 0 }, + "retries": { + "count": 0 + }, "unfinished": { "sec": 0 } @@ -1031,10 +886,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "root_ca_cert_publisher", + "name": "DynamicCABundle-request-header", "workqueue": { "adds": { - "count": 5 + "count": 1 }, "depth": { "count": 0 @@ -1065,13 +920,13 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "node", + "name": "garbage_collector_graph_changes", "workqueue": { "adds": { - "count": 1 + "count": 400 }, "depth": { - "count": 1 + "count": 0 }, "longestrunning": { "sec": 0 @@ -1099,10 +954,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "ttlcontroller", + "name": "serviceaccount_tokens_secret", "workqueue": { "adds": { - "count": 8 + "count": 0 }, "depth": { "count": 0 @@ -1135,11 +990,11 @@ "MetricSetFields": { "client": { "request": { - "count": 12 + "count": 10 } }, "code": "200", - "host": "172.18.0.2:6443", + "host": "192.168.58.2:8443", "method": "PATCH" }, "Index": "", @@ -1157,41 +1012,7 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "ttl_jobs_to_delete", - "workqueue": { - "adds": { - "count": 0 - }, - "depth": { - "count": 0 - }, - "longestrunning": { - "sec": 0 - }, - "retries": { - "count": 0 - }, - "unfinished": { - "sec": 0 - } - } - }, - "Index": "", - "ID": "", - "Namespace": "", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false - }, - { - "RootFields": {}, - "ModuleFields": null, - "MetricSetFields": { - "name": "serviceaccount_tokens_secret", + "name": "job_orphan_pod", "workqueue": { "adds": { "count": 0 @@ -1225,7 +1046,7 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "job_orphan_pod", + "name": "volume_expand", "workqueue": { "adds": { "count": 0 @@ -1259,24 +1080,14 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "endpoint", - "workqueue": { - "adds": { - "count": 7 - }, - "depth": { - "count": 0 - }, - "longestrunning": { - "sec": 0 - }, - "retries": { - "count": 5 - }, - "unfinished": { - "sec": 0 + "client": { + "request": { + "count": 1 } - } + }, + "code": "409", + "host": "192.168.58.2:8443", + "method": "PATCH" }, "Index": "", "ID": "", @@ -1293,7 +1104,7 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "volume_expand", + "name": "ephemeral_volume", "workqueue": { "adds": { "count": 0 @@ -1327,7 +1138,7 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "ephemeral_volume", + "name": "garbage_collector_attempt_to_orphan", "workqueue": { "adds": { "count": 0 @@ -1357,40 +1168,6 @@ "Period": 0, "DisableTimeSeries": false }, - { - "RootFields": {}, - "ModuleFields": null, - "MetricSetFields": { - "name": "deployment", - "workqueue": { - "adds": { - "count": 24 - }, - "depth": { - "count": 0 - }, - "longestrunning": { - "sec": 0 - }, - "retries": { - "count": 13 - }, - "unfinished": { - "sec": 0 - } - } - }, - "Index": "", - "ID": "", - "Namespace": "", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false - }, { "RootFields": {}, "ModuleFields": null, @@ -1400,42 +1177,42 @@ "duration": { "us": { "bucket": { - "+Inf": 12, - "100000": 12, - "1000000": 12, - "15000000": 12, - "2000000": 12, - "25000": 12, - "250000": 12, - "30000000": 12, - "4000000": 12, + "+Inf": 11, + "100000": 7, + "1000000": 11, + "15000000": 11, + "2000000": 11, + "25000": 4, + "250000": 8, + "30000000": 11, + "4000000": 11, "5000": 0, - "500000": 12, - "60000000": 12, - "8000000": 12 + "500000": 8, + "60000000": 11, + "8000000": 11 }, - "count": 12, - "sum": 164656.37399999998 + "count": 11, + "sum": 3115352.958 } }, "size": { "bytes": { "bucket": { - "+Inf": 12, - "1024": 7, - "1048576": 12, - "16384": 12, - "16777216": 12, - "256": 6, - "262144": 12, - "4096": 12, - "4194304": 12, - "512": 7, - "64": 1, - "65536": 12 + "+Inf": 11, + "1024": 6, + "1048576": 11, + "16384": 11, + "16777216": 11, + "256": 5, + "262144": 11, + "4096": 11, + "4194304": 11, + "512": 6, + "64": 2, + "65536": 11 }, - "count": 12, - "sum": 15373 + "count": 11, + "sum": 14842 } } }, @@ -1443,26 +1220,26 @@ "size": { "bytes": { "bucket": { - "+Inf": 12, - "1024": 4, - "1048576": 12, - "16384": 12, - "16777216": 12, - "256": 0, - "262144": 12, - "4096": 11, - "4194304": 12, - "512": 0, + "+Inf": 11, + "1024": 2, + "1048576": 11, + "16384": 11, + "16777216": 11, + "256": 1, + "262144": 11, + "4096": 7, + "4194304": 11, + "512": 1, "64": 0, - "65536": 12 + "65536": 11 }, - "count": 12, - "sum": 28374 + "count": 11, + "sum": 31657 } } } }, - "host": "172.18.0.2:6443", + "host": "192.168.58.2:8443", "verb": "PATCH" }, "Index": "", @@ -1480,10 +1257,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "garbage_collector_attempt_to_orphan", + "name": "token_cleaner", "workqueue": { "adds": { - "count": 0 + "count": 1 }, "depth": { "count": 0 @@ -1492,7 +1269,7 @@ "sec": 0 }, "retries": { - "count": 0 + "count": 1 }, "unfinished": { "sec": 0 @@ -1514,10 +1291,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "token_cleaner", + "name": "endpoint_slice", "workqueue": { "adds": { - "count": 1 + "count": 8 }, "depth": { "count": 0 @@ -1526,7 +1303,7 @@ "sec": 0 }, "retries": { - "count": 1 + "count": 6 }, "unfinished": { "sec": 0 @@ -1582,7 +1359,7 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "resource_quota_controller_resource_changes", + "name": "namespace", "workqueue": { "adds": { "count": 0 @@ -1616,10 +1393,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "serviceaccount", + "name": "horizontalpodautoscaler", "workqueue": { "adds": { - "count": 5 + "count": 0 }, "depth": { "count": 0 @@ -1650,22 +1427,42 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "namespace", - "workqueue": { - "adds": { - "count": 0 - }, - "depth": { - "count": 0 + "node": { + "collector": { + "count": 1, + "eviction": { + "count": 0 + }, + "health": { + "pct": 100 + }, + "unhealthy": { + "count": 0 + } + } + }, + "process": { + "cpu": { + "sec": 7 }, - "longestrunning": { - "sec": 0 + "fds": { + "max": { + "count": 1048576 + }, + "open": { + "count": 19 + } }, - "retries": { - "count": 0 + "memory": { + "resident": { + "bytes": 116060160 + }, + "virtual": { + "bytes": 1367392256 + } }, - "unfinished": { - "sec": 0 + "started": { + "sec": 1714044432.9 } } }, @@ -1684,10 +1481,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "horizontalpodautoscaler", + "name": "DynamicCABundle-client-ca-bundle", "workqueue": { "adds": { - "count": 0 + "count": 1 }, "depth": { "count": 0 @@ -1718,24 +1515,14 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "DynamicCABundle-client-ca-bundle", - "workqueue": { - "adds": { + "client": { + "request": { "count": 1 - }, - "depth": { - "count": 0 - }, - "longestrunning": { - "sec": 0 - }, - "retries": { - "count": 0 - }, - "unfinished": { - "sec": 0 } - } + }, + "code": "404", + "host": "192.168.58.2:8443", + "method": "DELETE" }, "Index": "", "ID": "", @@ -1788,12 +1575,12 @@ "MetricSetFields": { "client": { "request": { - "count": 4 + "count": 190 } }, - "code": "403", - "host": "172.18.0.2:6443", - "method": "POST" + "code": "200", + "host": "192.168.58.2:8443", + "method": "GET" }, "Index": "", "ID": "", @@ -1812,13 +1599,74 @@ "MetricSetFields": { "client": { "request": { - "count": 348 - } - }, - "code": "200", - "host": "172.18.0.2:6443", - "method": "PUT" - }, + "duration": { + "us": { + "bucket": { + "+Inf": 179, + "100000": 152, + "1000000": 179, + "15000000": 179, + "2000000": 179, + "25000": 85, + "250000": 164, + "30000000": 179, + "4000000": 179, + "5000": 77, + "500000": 175, + "60000000": 179, + "8000000": 179 + }, + "count": 179, + "sum": 12788541.488999996 + } + }, + "size": { + "bytes": { + "bucket": { + "+Inf": 179, + "1024": 179, + "1048576": 179, + "16384": 179, + "16777216": 179, + "256": 179, + "262144": 179, + "4096": 179, + "4194304": 179, + "512": 179, + "64": 179, + "65536": 179 + }, + "count": 179, + "sum": 0 + } + } + }, + "response": { + "size": { + "bytes": { + "bucket": { + "+Inf": 179, + "1024": 134, + "1048576": 179, + "16384": 163, + "16777216": 179, + "256": 92, + "262144": 179, + "4096": 143, + "4194304": 179, + "512": 128, + "64": 19, + "65536": 179 + }, + "count": 179, + "sum": 514937 + } + } + } + }, + "host": "192.168.58.2:8443", + "verb": "GET" + }, "Index": "", "ID": "", "Namespace": "", @@ -1834,10 +1682,95 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "ClusterRoleAggregator", + "client": { + "request": { + "duration": { + "us": { + "bucket": { + "+Inf": 2, + "100000": 1, + "1000000": 2, + "15000000": 2, + "2000000": 2, + "25000": 1, + "250000": 1, + "30000000": 2, + "4000000": 2, + "5000": 1, + "500000": 1, + "60000000": 2, + "8000000": 2 + }, + "count": 2, + "sum": 599931.8539999999 + } + }, + "size": { + "bytes": { + "bucket": { + "+Inf": 2, + "1024": 2, + "1048576": 2, + "16384": 2, + "16777216": 2, + "256": 2, + "262144": 2, + "4096": 2, + "4194304": 2, + "512": 2, + "64": 2, + "65536": 2 + }, + "count": 2, + "sum": 62 + } + } + }, + "response": { + "size": { + "bytes": { + "bucket": { + "+Inf": 2, + "1024": 2, + "1048576": 2, + "16384": 2, + "16777216": 2, + "256": 2, + "262144": 2, + "4096": 2, + "4194304": 2, + "512": 2, + "64": 0, + "65536": 2 + }, + "count": 2, + "sum": 275 + } + } + } + }, + "host": "192.168.58.2:8443", + "verb": "DELETE" + }, + "Index": "", + "ID": "", + "Namespace": "", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, + { + "RootFields": {}, + "ModuleFields": null, + "MetricSetFields": { + "name": "replicaset", "workqueue": { "adds": { - "count": 18 + "count": 7 }, "depth": { "count": 0 @@ -1868,10 +1801,95 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "garbage_collector_attempt_to_delete", + "client": { + "request": { + "duration": { + "us": { + "bucket": { + "+Inf": 71, + "100000": 49, + "1000000": 69, + "15000000": 71, + "2000000": 71, + "25000": 24, + "250000": 52, + "30000000": 71, + "4000000": 71, + "5000": 13, + "500000": 61, + "60000000": 71, + "8000000": 71 + }, + "count": 71, + "sum": 13400135.484 + } + }, + "size": { + "bytes": { + "bucket": { + "+Inf": 71, + "1024": 63, + "1048576": 71, + "16384": 71, + "16777216": 71, + "256": 56, + "262144": 71, + "4096": 71, + "4194304": 71, + "512": 61, + "64": 1, + "65536": 71 + }, + "count": 71, + "sum": 19672 + } + } + }, + "response": { + "size": { + "bytes": { + "bucket": { + "+Inf": 71, + "1024": 45, + "1048576": 71, + "16384": 71, + "16777216": 71, + "256": 38, + "262144": 71, + "4096": 71, + "4194304": 71, + "512": 38, + "64": 0, + "65536": 71 + }, + "count": 71, + "sum": 52967 + } + } + } + }, + "host": "192.168.58.2:8443", + "verb": "POST" + }, + "Index": "", + "ID": "", + "Namespace": "", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, + { + "RootFields": {}, + "ModuleFields": null, + "MetricSetFields": { + "name": "volumes", "workqueue": { "adds": { - "count": 6 + "count": 0 }, "depth": { "count": 0 @@ -1879,9 +1897,6 @@ "longestrunning": { "sec": 0 }, - "retries": { - "count": 0 - }, "unfinished": { "sec": 0 } @@ -1902,10 +1917,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "volumes", + "name": "deployment", "workqueue": { "adds": { - "count": 0 + "count": 9 }, "depth": { "count": 0 @@ -1913,6 +1928,9 @@ "longestrunning": { "sec": 0 }, + "retries": { + "count": 5 + }, "unfinished": { "sec": 0 } @@ -1964,10 +1982,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "replicaset", + "name": "serviceaccount", "workqueue": { "adds": { - "count": 21 + "count": 4 }, "depth": { "count": 0 @@ -2066,14 +2084,24 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "client": { - "request": { + "name": "garbage_collector_attempt_to_delete", + "workqueue": { + "adds": { "count": 1 + }, + "depth": { + "count": 0 + }, + "longestrunning": { + "sec": 0 + }, + "retries": { + "count": 0 + }, + "unfinished": { + "sec": 0 } - }, - "code": "403", - "host": "172.18.0.2:6443", - "method": "GET" + } }, "Index": "", "ID": "", @@ -2124,10 +2152,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "orphaned_pods_nodes", + "name": "root_ca_cert_publisher", "workqueue": { "adds": { - "count": 0 + "count": 4 }, "depth": { "count": 0 @@ -2158,10 +2186,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "DynamicCABundle-csr-controller", + "name": "orphaned_pods_nodes", "workqueue": { "adds": { - "count": 8 + "count": 0 }, "depth": { "count": 0 @@ -2192,10 +2220,34 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "daemonset", + "client": { + "request": { + "count": 1 + } + }, + "code": "200", + "host": "192.168.58.2:8443", + "method": "DELETE" + }, + "Index": "", + "ID": "", + "Namespace": "", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, + { + "RootFields": {}, + "ModuleFields": null, + "MetricSetFields": { + "name": "validatingadmissionpolicy-status", "workqueue": { "adds": { - "count": 20 + "count": 0 }, "depth": { "count": 0 @@ -2204,7 +2256,7 @@ "sec": 0 }, "retries": { - "count": 4 + "count": 0 }, "unfinished": { "sec": 0 @@ -2260,10 +2312,129 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "endpoint_slice_mirroring", + "name": "ttlcontroller", "workqueue": { "adds": { - "count": 5 + "count": 7 + }, + "depth": { + "count": 0 + }, + "longestrunning": { + "sec": 0 + }, + "retries": { + "count": 0 + }, + "unfinished": { + "sec": 0 + } + } + }, + "Index": "", + "ID": "", + "Namespace": "", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, + { + "RootFields": {}, + "ModuleFields": null, + "MetricSetFields": { + "client": { + "request": { + "duration": { + "us": { + "bucket": { + "+Inf": 17, + "100000": 14, + "1000000": 17, + "15000000": 17, + "2000000": 17, + "25000": 12, + "250000": 16, + "30000000": 17, + "4000000": 17, + "5000": 3, + "500000": 16, + "60000000": 17, + "8000000": 17 + }, + "count": 17, + "sum": 990688.5049999999 + } + }, + "size": { + "bytes": { + "bucket": { + "+Inf": 17, + "1024": 7, + "1048576": 17, + "16384": 17, + "16777216": 17, + "256": 0, + "262144": 17, + "4096": 17, + "4194304": 17, + "512": 2, + "64": 0, + "65536": 17 + }, + "count": 17, + "sum": 18631 + } + } + }, + "response": { + "size": { + "bytes": { + "bucket": { + "+Inf": 17, + "1024": 3, + "1048576": 17, + "16384": 17, + "16777216": 17, + "256": 1, + "262144": 17, + "4096": 17, + "4194304": 17, + "512": 1, + "64": 0, + "65536": 17 + }, + "count": 17, + "sum": 42059 + } + } + } + }, + "host": "192.168.58.2:8443", + "verb": "PUT" + }, + "Index": "", + "ID": "", + "Namespace": "", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, + { + "RootFields": {}, + "ModuleFields": null, + "MetricSetFields": { + "name": "node_lifecycle_controller_pods", + "workqueue": { + "adds": { + "count": 8 }, "depth": { "count": 0 diff --git a/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go b/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go index 561f48b01fb..8ee6bc82d6a 100644 --- a/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go +++ b/metricbeat/module/kubernetes/controllermanager/controllermanager_test.go @@ -29,10 +29,10 @@ import ( ) var files = []string{ - "./_meta/test/metrics.1.27", "./_meta/test/metrics.1.28", "./_meta/test/metrics.1.29", "./_meta/test/metrics.1.30", + "./_meta/test/metrics.1.31", } func TestEventMapping(t *testing.T) { diff --git a/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.27 b/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.27 deleted file mode 100644 index cb96688c886..00000000000 --- a/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.27 +++ /dev/null @@ -1,796 +0,0 @@ -# HELP aggregator_discovery_aggregation_count_total [ALPHA] Counter of number of times discovery was aggregated -# TYPE aggregator_discovery_aggregation_count_total counter -aggregator_discovery_aggregation_count_total 0 -# HELP apiserver_audit_event_total [ALPHA] Counter of audit events generated and sent to the audit backend. -# TYPE apiserver_audit_event_total counter -apiserver_audit_event_total 0 -# HELP apiserver_audit_requests_rejected_total [ALPHA] Counter of apiserver requests rejected due to an error in audit logging backend. -# TYPE apiserver_audit_requests_rejected_total counter -apiserver_audit_requests_rejected_total 0 -# HELP apiserver_client_certificate_expiration_seconds [ALPHA] Distribution of the remaining lifetime on the certificate used to authenticate a request. -# TYPE apiserver_client_certificate_expiration_seconds histogram -apiserver_client_certificate_expiration_seconds_bucket{le="0"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="1800"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="3600"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="7200"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="21600"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="43200"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="86400"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="172800"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="345600"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="604800"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="2.592e+06"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="7.776e+06"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="1.5552e+07"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="3.1104e+07"} 0 -apiserver_client_certificate_expiration_seconds_bucket{le="+Inf"} 0 -apiserver_client_certificate_expiration_seconds_sum 0 -apiserver_client_certificate_expiration_seconds_count 0 -# HELP apiserver_envelope_encryption_dek_cache_fill_percent [ALPHA] Percent of the cache slots currently occupied by cached DEKs. -# TYPE apiserver_envelope_encryption_dek_cache_fill_percent gauge -apiserver_envelope_encryption_dek_cache_fill_percent 0 -# HELP apiserver_storage_data_key_generation_duration_seconds [ALPHA] Latencies in seconds of data encryption key(DEK) generation operations. -# TYPE apiserver_storage_data_key_generation_duration_seconds histogram -apiserver_storage_data_key_generation_duration_seconds_bucket{le="5e-06"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="1e-05"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="2e-05"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="4e-05"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="8e-05"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00016"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00032"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00064"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00128"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00256"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00512"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.01024"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.02048"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.04096"} 0 -apiserver_storage_data_key_generation_duration_seconds_bucket{le="+Inf"} 0 -apiserver_storage_data_key_generation_duration_seconds_sum 0 -apiserver_storage_data_key_generation_duration_seconds_count 0 -# HELP apiserver_storage_data_key_generation_failures_total [ALPHA] Total number of failed data encryption key(DEK) generation operations. -# TYPE apiserver_storage_data_key_generation_failures_total counter -apiserver_storage_data_key_generation_failures_total 0 -# HELP apiserver_storage_envelope_transformation_cache_misses_total [ALPHA] Total number of cache misses while accessing key decryption key(KEK). -# TYPE apiserver_storage_envelope_transformation_cache_misses_total counter -apiserver_storage_envelope_transformation_cache_misses_total 0 -# HELP apiserver_webhooks_x509_insecure_sha1_total [ALPHA] Counts the number of requests to servers with insecure SHA1 signatures in their serving certificate OR the number of connection failures due to the insecure SHA1 signatures (either/or, based on the runtime environment) -# TYPE apiserver_webhooks_x509_insecure_sha1_total counter -apiserver_webhooks_x509_insecure_sha1_total 0 -# HELP apiserver_webhooks_x509_missing_san_total [ALPHA] Counts the number of requests to servers missing SAN extension in their serving certificate OR the number of connection failures due to the lack of x509 certificate SAN extension missing (either/or, based on the runtime environment) -# TYPE apiserver_webhooks_x509_missing_san_total counter -apiserver_webhooks_x509_missing_san_total 0 -# HELP disabled_metric_total [ALPHA] The count of disabled metrics. -# TYPE disabled_metric_total counter -disabled_metric_total 0 -# HELP go_cgo_go_to_c_calls_calls_total Count of calls made from Go to C by the current process. -# TYPE go_cgo_go_to_c_calls_calls_total counter -go_cgo_go_to_c_calls_calls_total 0 -# HELP go_cpu_classes_gc_mark_assist_cpu_seconds_total Estimated total CPU time goroutines spent performing GC tasks to assist the GC and prevent it from falling behind the application. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. -# TYPE go_cpu_classes_gc_mark_assist_cpu_seconds_total counter -go_cpu_classes_gc_mark_assist_cpu_seconds_total 0.000961092 -# HELP go_cpu_classes_gc_mark_dedicated_cpu_seconds_total Estimated total CPU time spent performing GC tasks on processors (as defined by GOMAXPROCS) dedicated to those tasks. This includes time spent with the world stopped due to the GC. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. -# TYPE go_cpu_classes_gc_mark_dedicated_cpu_seconds_total counter -go_cpu_classes_gc_mark_dedicated_cpu_seconds_total 0.037852446 -# HELP go_cpu_classes_gc_mark_idle_cpu_seconds_total Estimated total CPU time spent performing GC tasks on spare CPU resources that the Go scheduler could not otherwise find a use for. This should be subtracted from the total GC CPU time to obtain a measure of compulsory GC CPU time. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. -# TYPE go_cpu_classes_gc_mark_idle_cpu_seconds_total counter -go_cpu_classes_gc_mark_idle_cpu_seconds_total 0.009219818 -# HELP go_cpu_classes_gc_pause_cpu_seconds_total Estimated total CPU time spent with the application paused by the GC. Even if only one thread is running during the pause, this is computed as GOMAXPROCS times the pause latency because nothing else can be executing. This is the exact sum of samples in /gc/pause:seconds if each sample is multiplied by GOMAXPROCS at the time it is taken. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. -# TYPE go_cpu_classes_gc_pause_cpu_seconds_total counter -go_cpu_classes_gc_pause_cpu_seconds_total 0.014189328 -# HELP go_cpu_classes_gc_total_cpu_seconds_total Estimated total CPU time spent performing GC tasks. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes/gc. -# TYPE go_cpu_classes_gc_total_cpu_seconds_total counter -go_cpu_classes_gc_total_cpu_seconds_total 0.062222684 -# HELP go_cpu_classes_idle_cpu_seconds_total Estimated total available CPU time not spent executing any Go or Go runtime code. In other words, the part of /cpu/classes/total:cpu-seconds that was unused. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. -# TYPE go_cpu_classes_idle_cpu_seconds_total counter -go_cpu_classes_idle_cpu_seconds_total 6811.644443772 -# HELP go_cpu_classes_scavenge_assist_cpu_seconds_total Estimated total CPU time spent returning unused memory to the underlying platform in response eagerly in response to memory pressure. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. -# TYPE go_cpu_classes_scavenge_assist_cpu_seconds_total counter -go_cpu_classes_scavenge_assist_cpu_seconds_total 2.44e-07 -# HELP go_cpu_classes_scavenge_background_cpu_seconds_total Estimated total CPU time spent performing background tasks to return unused memory to the underlying platform. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. -# TYPE go_cpu_classes_scavenge_background_cpu_seconds_total counter -go_cpu_classes_scavenge_background_cpu_seconds_total 0.00130717 -# HELP go_cpu_classes_scavenge_total_cpu_seconds_total Estimated total CPU time spent performing tasks that return unused memory to the underlying platform. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes/scavenge. -# TYPE go_cpu_classes_scavenge_total_cpu_seconds_total counter -go_cpu_classes_scavenge_total_cpu_seconds_total 0.001307414 -# HELP go_cpu_classes_total_cpu_seconds_total Estimated total available CPU time for user Go code or the Go runtime, as defined by GOMAXPROCS. In other words, GOMAXPROCS integrated over the wall-clock duration this process has been executing for. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes. -# TYPE go_cpu_classes_total_cpu_seconds_total counter -go_cpu_classes_total_cpu_seconds_total 7760.349788544 -# HELP go_cpu_classes_user_cpu_seconds_total Estimated total CPU time spent running user Go code. This may also include some small amount of time spent in the Go runtime. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. -# TYPE go_cpu_classes_user_cpu_seconds_total counter -go_cpu_classes_user_cpu_seconds_total 948.641814674 -# HELP go_gc_cycles_automatic_gc_cycles_total Count of completed GC cycles generated by the Go runtime. -# TYPE go_gc_cycles_automatic_gc_cycles_total counter -go_gc_cycles_automatic_gc_cycles_total 13 -# HELP go_gc_cycles_forced_gc_cycles_total Count of completed GC cycles forced by the application. -# TYPE go_gc_cycles_forced_gc_cycles_total counter -go_gc_cycles_forced_gc_cycles_total 0 -# HELP go_gc_cycles_total_gc_cycles_total Count of all completed GC cycles. -# TYPE go_gc_cycles_total_gc_cycles_total counter -go_gc_cycles_total_gc_cycles_total 13 -# HELP go_gc_duration_seconds A summary of the pause duration of garbage collection cycles. -# TYPE go_gc_duration_seconds summary -go_gc_duration_seconds{quantile="0"} 4.9281e-05 -go_gc_duration_seconds{quantile="0.25"} 7.2211e-05 -go_gc_duration_seconds{quantile="0.5"} 0.000124378 -go_gc_duration_seconds{quantile="0.75"} 0.00021477 -go_gc_duration_seconds{quantile="1"} 0.000234768 -go_gc_duration_seconds_sum 0.001773666 -go_gc_duration_seconds_count 13 -# HELP go_gc_heap_allocs_by_size_bytes Distribution of heap allocations by approximate size. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. -# TYPE go_gc_heap_allocs_by_size_bytes histogram -go_gc_heap_allocs_by_size_bytes_bucket{le="8.999999999999998"} 4418 -go_gc_heap_allocs_by_size_bytes_bucket{le="24.999999999999996"} 34782 -go_gc_heap_allocs_by_size_bytes_bucket{le="64.99999999999999"} 53949 -go_gc_heap_allocs_by_size_bytes_bucket{le="144.99999999999997"} 75385 -go_gc_heap_allocs_by_size_bytes_bucket{le="320.99999999999994"} 80167 -go_gc_heap_allocs_by_size_bytes_bucket{le="704.9999999999999"} 82632 -go_gc_heap_allocs_by_size_bytes_bucket{le="1536.9999999999998"} 83817 -go_gc_heap_allocs_by_size_bytes_bucket{le="3200.9999999999995"} 84144 -go_gc_heap_allocs_by_size_bytes_bucket{le="6528.999999999999"} 84373 -go_gc_heap_allocs_by_size_bytes_bucket{le="13568.999999999998"} 84475 -go_gc_heap_allocs_by_size_bytes_bucket{le="27264.999999999996"} 84512 -go_gc_heap_allocs_by_size_bytes_bucket{le="+Inf"} 84559 -go_gc_heap_allocs_by_size_bytes_sum 1.3746456e+07 -go_gc_heap_allocs_by_size_bytes_count 84559 -# HELP go_gc_heap_allocs_bytes_total Cumulative sum of memory allocated to the heap by the application. -# TYPE go_gc_heap_allocs_bytes_total counter -go_gc_heap_allocs_bytes_total 1.3746456e+07 -# HELP go_gc_heap_allocs_objects_total Cumulative count of heap allocations triggered by the application. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. -# TYPE go_gc_heap_allocs_objects_total counter -go_gc_heap_allocs_objects_total 84559 -# HELP go_gc_heap_frees_by_size_bytes Distribution of freed heap allocations by approximate size. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. -# TYPE go_gc_heap_frees_by_size_bytes histogram -go_gc_heap_frees_by_size_bytes_bucket{le="8.999999999999998"} 2532 -go_gc_heap_frees_by_size_bytes_bucket{le="24.999999999999996"} 24640 -go_gc_heap_frees_by_size_bytes_bucket{le="64.99999999999999"} 36853 -go_gc_heap_frees_by_size_bytes_bucket{le="144.99999999999997"} 55352 -go_gc_heap_frees_by_size_bytes_bucket{le="320.99999999999994"} 58215 -go_gc_heap_frees_by_size_bytes_bucket{le="704.9999999999999"} 59913 -go_gc_heap_frees_by_size_bytes_bucket{le="1536.9999999999998"} 60878 -go_gc_heap_frees_by_size_bytes_bucket{le="3200.9999999999995"} 61056 -go_gc_heap_frees_by_size_bytes_bucket{le="6528.999999999999"} 61219 -go_gc_heap_frees_by_size_bytes_bucket{le="13568.999999999998"} 61276 -go_gc_heap_frees_by_size_bytes_bucket{le="27264.999999999996"} 61288 -go_gc_heap_frees_by_size_bytes_bucket{le="+Inf"} 61322 -go_gc_heap_frees_by_size_bytes_sum 9.11112e+06 -go_gc_heap_frees_by_size_bytes_count 61322 -# HELP go_gc_heap_frees_bytes_total Cumulative sum of heap memory freed by the garbage collector. -# TYPE go_gc_heap_frees_bytes_total counter -go_gc_heap_frees_bytes_total 9.11112e+06 -# HELP go_gc_heap_frees_objects_total Cumulative count of heap allocations whose storage was freed by the garbage collector. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. -# TYPE go_gc_heap_frees_objects_total counter -go_gc_heap_frees_objects_total 61322 -# HELP go_gc_heap_goal_bytes Heap size target for the end of the GC cycle. -# TYPE go_gc_heap_goal_bytes gauge -go_gc_heap_goal_bytes 9.774144e+06 -# HELP go_gc_heap_objects_objects Number of objects, live or unswept, occupying heap memory. -# TYPE go_gc_heap_objects_objects gauge -go_gc_heap_objects_objects 23237 -# HELP go_gc_heap_tiny_allocs_objects_total Count of small allocations that are packed together into blocks. These allocations are counted separately from other allocations because each individual allocation is not tracked by the runtime, only their block. Each block is already accounted for in allocs-by-size and frees-by-size. -# TYPE go_gc_heap_tiny_allocs_objects_total counter -go_gc_heap_tiny_allocs_objects_total 4068 -# HELP go_gc_limiter_last_enabled_gc_cycle GC cycle the last time the GC CPU limiter was enabled. This metric is useful for diagnosing the root cause of an out-of-memory error, because the limiter trades memory for CPU time when the GC's CPU time gets too high. This is most likely to occur with use of SetMemoryLimit. The first GC cycle is cycle 1, so a value of 0 indicates that it was never enabled. -# TYPE go_gc_limiter_last_enabled_gc_cycle gauge -go_gc_limiter_last_enabled_gc_cycle 0 -# HELP go_gc_pauses_seconds Distribution individual GC-related stop-the-world pause latencies. -# TYPE go_gc_pauses_seconds histogram -go_gc_pauses_seconds_bucket{le="6.399999999999999e-08"} 0 -go_gc_pauses_seconds_bucket{le="6.399999999999999e-07"} 0 -go_gc_pauses_seconds_bucket{le="7.167999999999999e-06"} 7 -go_gc_pauses_seconds_bucket{le="8.191999999999999e-05"} 18 -go_gc_pauses_seconds_bucket{le="0.0009175039999999999"} 26 -go_gc_pauses_seconds_bucket{le="0.010485759999999998"} 26 -go_gc_pauses_seconds_bucket{le="0.11744051199999998"} 26 -go_gc_pauses_seconds_bucket{le="+Inf"} 26 -go_gc_pauses_seconds_sum 0.000738688 -go_gc_pauses_seconds_count 26 -# HELP go_gc_stack_starting_size_bytes The stack size of new goroutines. -# TYPE go_gc_stack_starting_size_bytes gauge -go_gc_stack_starting_size_bytes 4096 -# HELP go_goroutines Number of goroutines that currently exist. -# TYPE go_goroutines gauge -go_goroutines 51 -# HELP go_info Information about the Go environment. -# TYPE go_info gauge -go_info{version="go1.20.3"} 1 -# HELP go_memory_classes_heap_free_bytes Memory that is completely free and eligible to be returned to the underlying system, but has not been. This metric is the runtime's estimate of free address space that is backed by physical memory. -# TYPE go_memory_classes_heap_free_bytes gauge -go_memory_classes_heap_free_bytes 737280 -# HELP go_memory_classes_heap_objects_bytes Memory occupied by live objects and dead objects that have not yet been marked free by the garbage collector. -# TYPE go_memory_classes_heap_objects_bytes gauge -go_memory_classes_heap_objects_bytes 4.635336e+06 -# HELP go_memory_classes_heap_released_bytes Memory that is completely free and has been returned to the underlying system. This metric is the runtime's estimate of free address space that is still mapped into the process, but is not backed by physical memory. -# TYPE go_memory_classes_heap_released_bytes gauge -go_memory_classes_heap_released_bytes 6.995968e+06 -# HELP go_memory_classes_heap_stacks_bytes Memory allocated from the heap that is reserved for stack space, whether or not it is currently in-use. -# TYPE go_memory_classes_heap_stacks_bytes gauge -go_memory_classes_heap_stacks_bytes 1.441792e+06 -# HELP go_memory_classes_heap_unused_bytes Memory that is reserved for heap objects but is not currently used to hold heap objects. -# TYPE go_memory_classes_heap_unused_bytes gauge -go_memory_classes_heap_unused_bytes 2.96684e+06 -# HELP go_memory_classes_metadata_mcache_free_bytes Memory that is reserved for runtime mcache structures, but not in-use. -# TYPE go_memory_classes_metadata_mcache_free_bytes gauge -go_memory_classes_metadata_mcache_free_bytes 6000 -# HELP go_memory_classes_metadata_mcache_inuse_bytes Memory that is occupied by runtime mcache structures that are currently being used. -# TYPE go_memory_classes_metadata_mcache_inuse_bytes gauge -go_memory_classes_metadata_mcache_inuse_bytes 9600 -# HELP go_memory_classes_metadata_mspan_free_bytes Memory that is reserved for runtime mspan structures, but not in-use. -# TYPE go_memory_classes_metadata_mspan_free_bytes gauge -go_memory_classes_metadata_mspan_free_bytes 32160 -# HELP go_memory_classes_metadata_mspan_inuse_bytes Memory that is occupied by runtime mspan structures that are currently being used. -# TYPE go_memory_classes_metadata_mspan_inuse_bytes gauge -go_memory_classes_metadata_mspan_inuse_bytes 196320 -# HELP go_memory_classes_metadata_other_bytes Memory that is reserved for or used to hold runtime metadata. -# TYPE go_memory_classes_metadata_other_bytes gauge -go_memory_classes_metadata_other_bytes 8.741456e+06 -# HELP go_memory_classes_os_stacks_bytes Stack memory allocated by the underlying operating system. -# TYPE go_memory_classes_os_stacks_bytes gauge -go_memory_classes_os_stacks_bytes 0 -# HELP go_memory_classes_other_bytes Memory used by execution trace buffers, structures for debugging the runtime, finalizer and profiler specials, and more. -# TYPE go_memory_classes_other_bytes gauge -go_memory_classes_other_bytes 2.010708e+06 -# HELP go_memory_classes_profiling_buckets_bytes Memory that is used by the stack trace hash map used for profiling. -# TYPE go_memory_classes_profiling_buckets_bytes gauge -go_memory_classes_profiling_buckets_bytes 1.452788e+06 -# HELP go_memory_classes_total_bytes All memory mapped by the Go runtime into the current process as read-write. Note that this does not include memory mapped by code called via cgo or via the syscall package. Sum of all metrics in /memory/classes. -# TYPE go_memory_classes_total_bytes gauge -go_memory_classes_total_bytes 2.9226248e+07 -# HELP go_memstats_alloc_bytes Number of bytes allocated and still in use. -# TYPE go_memstats_alloc_bytes gauge -go_memstats_alloc_bytes 4.635336e+06 -# HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed. -# TYPE go_memstats_alloc_bytes_total counter -go_memstats_alloc_bytes_total 1.3746456e+07 -# HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table. -# TYPE go_memstats_buck_hash_sys_bytes gauge -go_memstats_buck_hash_sys_bytes 1.452788e+06 -# HELP go_memstats_frees_total Total number of frees. -# TYPE go_memstats_frees_total counter -go_memstats_frees_total 65390 -# HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata. -# TYPE go_memstats_gc_sys_bytes gauge -go_memstats_gc_sys_bytes 8.741456e+06 -# HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use. -# TYPE go_memstats_heap_alloc_bytes gauge -go_memstats_heap_alloc_bytes 4.635336e+06 -# HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used. -# TYPE go_memstats_heap_idle_bytes gauge -go_memstats_heap_idle_bytes 7.733248e+06 -# HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use. -# TYPE go_memstats_heap_inuse_bytes gauge -go_memstats_heap_inuse_bytes 7.602176e+06 -# HELP go_memstats_heap_objects Number of allocated objects. -# TYPE go_memstats_heap_objects gauge -go_memstats_heap_objects 23237 -# HELP go_memstats_heap_released_bytes Number of heap bytes released to OS. -# TYPE go_memstats_heap_released_bytes gauge -go_memstats_heap_released_bytes 6.995968e+06 -# HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system. -# TYPE go_memstats_heap_sys_bytes gauge -go_memstats_heap_sys_bytes 1.5335424e+07 -# HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection. -# TYPE go_memstats_last_gc_time_seconds gauge -go_memstats_last_gc_time_seconds 1.69157316188872e+09 -# HELP go_memstats_lookups_total Total number of pointer lookups. -# TYPE go_memstats_lookups_total counter -go_memstats_lookups_total 0 -# HELP go_memstats_mallocs_total Total number of mallocs. -# TYPE go_memstats_mallocs_total counter -go_memstats_mallocs_total 88627 -# HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures. -# TYPE go_memstats_mcache_inuse_bytes gauge -go_memstats_mcache_inuse_bytes 9600 -# HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system. -# TYPE go_memstats_mcache_sys_bytes gauge -go_memstats_mcache_sys_bytes 15600 -# HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures. -# TYPE go_memstats_mspan_inuse_bytes gauge -go_memstats_mspan_inuse_bytes 196320 -# HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system. -# TYPE go_memstats_mspan_sys_bytes gauge -go_memstats_mspan_sys_bytes 228480 -# HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place. -# TYPE go_memstats_next_gc_bytes gauge -go_memstats_next_gc_bytes 9.774144e+06 -# HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations. -# TYPE go_memstats_other_sys_bytes gauge -go_memstats_other_sys_bytes 2.010708e+06 -# HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator. -# TYPE go_memstats_stack_inuse_bytes gauge -go_memstats_stack_inuse_bytes 1.441792e+06 -# HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator. -# TYPE go_memstats_stack_sys_bytes gauge -go_memstats_stack_sys_bytes 1.441792e+06 -# HELP go_memstats_sys_bytes Number of bytes obtained from system. -# TYPE go_memstats_sys_bytes gauge -go_memstats_sys_bytes 2.9226248e+07 -# HELP go_sched_gomaxprocs_threads The current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously. -# TYPE go_sched_gomaxprocs_threads gauge -go_sched_gomaxprocs_threads 8 -# HELP go_sched_goroutines_goroutines Count of live goroutines. -# TYPE go_sched_goroutines_goroutines gauge -go_sched_goroutines_goroutines 51 -# HELP go_sched_latencies_seconds Distribution of the time goroutines have spent in the scheduler in a runnable state before actually running. -# TYPE go_sched_latencies_seconds histogram -go_sched_latencies_seconds_bucket{le="6.399999999999999e-08"} 703 -go_sched_latencies_seconds_bucket{le="6.399999999999999e-07"} 760 -go_sched_latencies_seconds_bucket{le="7.167999999999999e-06"} 801 -go_sched_latencies_seconds_bucket{le="8.191999999999999e-05"} 949 -go_sched_latencies_seconds_bucket{le="0.0009175039999999999"} 970 -go_sched_latencies_seconds_bucket{le="0.010485759999999998"} 970 -go_sched_latencies_seconds_bucket{le="0.11744051199999998"} 970 -go_sched_latencies_seconds_bucket{le="+Inf"} 970 -go_sched_latencies_seconds_sum 0.002811072 -go_sched_latencies_seconds_count 970 -# HELP go_sync_mutex_wait_total_seconds_total Approximate cumulative time goroutines have spent blocked on a sync.Mutex or sync.RWMutex. This metric is useful for identifying global changes in lock contention. Collect a mutex or block profile using the runtime/pprof package for more detailed contention data. -# TYPE go_sync_mutex_wait_total_seconds_total counter -go_sync_mutex_wait_total_seconds_total 0 -# HELP go_threads Number of OS threads created. -# TYPE go_threads gauge -go_threads 10 -# HELP hidden_metric_total [ALPHA] The count of hidden metrics. -# TYPE hidden_metric_total counter -hidden_metric_total 0 -# HELP kubeproxy_network_programming_duration_seconds [ALPHA] In Cluster Network Programming Latency in seconds -# TYPE kubeproxy_network_programming_duration_seconds histogram -kubeproxy_network_programming_duration_seconds_bucket{le="0"} 0 -kubeproxy_network_programming_duration_seconds_bucket{le="0.25"} 0 -kubeproxy_network_programming_duration_seconds_bucket{le="0.5"} 1 -kubeproxy_network_programming_duration_seconds_bucket{le="1"} 1 -kubeproxy_network_programming_duration_seconds_bucket{le="2"} 2 -kubeproxy_network_programming_duration_seconds_bucket{le="3"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="4"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="5"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="6"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="7"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="8"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="9"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="10"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="11"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="12"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="13"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="14"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="15"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="16"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="17"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="18"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="19"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="20"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="21"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="22"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="23"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="24"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="25"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="26"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="27"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="28"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="29"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="30"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="31"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="32"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="33"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="34"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="35"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="36"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="37"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="38"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="39"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="40"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="41"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="42"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="43"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="44"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="45"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="46"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="47"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="48"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="49"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="50"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="51"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="52"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="53"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="54"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="55"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="56"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="57"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="58"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="59"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="60"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="65"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="70"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="75"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="80"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="85"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="90"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="95"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="100"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="105"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="110"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="115"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="120"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="150"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="180"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="210"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="240"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="270"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="300"} 3 -kubeproxy_network_programming_duration_seconds_bucket{le="+Inf"} 3 -kubeproxy_network_programming_duration_seconds_sum 4.4972745960000005 -kubeproxy_network_programming_duration_seconds_count 3 -# HELP kubeproxy_sync_proxy_rules_duration_seconds [ALPHA] SyncProxyRules latency in seconds -# TYPE kubeproxy_sync_proxy_rules_duration_seconds histogram -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.001"} 0 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.002"} 0 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.004"} 0 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.008"} 0 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.016"} 2 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.032"} 3 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.064"} 3 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.128"} 4 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.256"} 5 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.512"} 5 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="1.024"} 5 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="2.048"} 5 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="4.096"} 5 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="8.192"} 5 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="16.384"} 5 -kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="+Inf"} 5 -kubeproxy_sync_proxy_rules_duration_seconds_sum 0.301946608 -kubeproxy_sync_proxy_rules_duration_seconds_count 5 -# HELP kubeproxy_sync_proxy_rules_endpoint_changes_pending [ALPHA] Pending proxy rules Endpoint changes -# TYPE kubeproxy_sync_proxy_rules_endpoint_changes_pending gauge -kubeproxy_sync_proxy_rules_endpoint_changes_pending 0 -# HELP kubeproxy_sync_proxy_rules_endpoint_changes_total [ALPHA] Cumulative proxy rules Endpoint changes -# TYPE kubeproxy_sync_proxy_rules_endpoint_changes_total counter -kubeproxy_sync_proxy_rules_endpoint_changes_total 7 -# HELP kubeproxy_sync_proxy_rules_iptables_partial_restore_failures_total [ALPHA] Cumulative proxy iptables partial restore failures -# TYPE kubeproxy_sync_proxy_rules_iptables_partial_restore_failures_total counter -kubeproxy_sync_proxy_rules_iptables_partial_restore_failures_total 0 -# HELP kubeproxy_sync_proxy_rules_iptables_restore_failures_total [ALPHA] Cumulative proxy iptables restore failures -# TYPE kubeproxy_sync_proxy_rules_iptables_restore_failures_total counter -kubeproxy_sync_proxy_rules_iptables_restore_failures_total 0 -# HELP kubeproxy_sync_proxy_rules_iptables_total [ALPHA] Number of proxy iptables rules programmed -# TYPE kubeproxy_sync_proxy_rules_iptables_total gauge -kubeproxy_sync_proxy_rules_iptables_total{table="filter"} 4 -kubeproxy_sync_proxy_rules_iptables_total{table="nat"} 30 -# HELP kubeproxy_sync_proxy_rules_last_queued_timestamp_seconds [ALPHA] The last time a sync of proxy rules was queued -# TYPE kubeproxy_sync_proxy_rules_last_queued_timestamp_seconds gauge -kubeproxy_sync_proxy_rules_last_queued_timestamp_seconds 1.6915721965056264e+09 -# HELP kubeproxy_sync_proxy_rules_last_timestamp_seconds [ALPHA] The last time proxy rules were successfully synced -# TYPE kubeproxy_sync_proxy_rules_last_timestamp_seconds gauge -kubeproxy_sync_proxy_rules_last_timestamp_seconds 1.691572197521507e+09 -# HELP kubeproxy_sync_proxy_rules_no_local_endpoints_total [ALPHA] Number of services with a Local traffic policy and no endpoints -# TYPE kubeproxy_sync_proxy_rules_no_local_endpoints_total gauge -kubeproxy_sync_proxy_rules_no_local_endpoints_total{traffic_policy="external"} 0 -kubeproxy_sync_proxy_rules_no_local_endpoints_total{traffic_policy="internal"} 0 -# HELP kubeproxy_sync_proxy_rules_service_changes_pending [ALPHA] Pending proxy rules Service changes -# TYPE kubeproxy_sync_proxy_rules_service_changes_pending gauge -kubeproxy_sync_proxy_rules_service_changes_pending 0 -# HELP kubeproxy_sync_proxy_rules_service_changes_total [ALPHA] Cumulative proxy rules Service changes -# TYPE kubeproxy_sync_proxy_rules_service_changes_total counter -kubeproxy_sync_proxy_rules_service_changes_total 8 -# HELP kubernetes_build_info [ALPHA] A metric with a constant '1' value labeled by major, minor, git version, git commit, git tree state, build date, Go version, and compiler from which Kubernetes was built, and platform on which it is running. -# TYPE kubernetes_build_info gauge -kubernetes_build_info{build_date="2023-04-11T20:50:51Z",compiler="gc",git_commit="1b4df30b3cdfeaba6024e81e559a6cd09a089d65",git_tree_state="clean",git_version="v1.27.0",go_version="go1.20.3",major="1",minor="27",platform="linux/amd64"} 1 -# HELP kubernetes_feature_enabled [ALPHA] This metric records the data about the stage and enablement of a k8s feature. -# TYPE kubernetes_feature_enabled gauge -kubernetes_feature_enabled{name="APIListChunking",stage="BETA"} 1 -kubernetes_feature_enabled{name="APIPriorityAndFairness",stage="BETA"} 1 -kubernetes_feature_enabled{name="APIResponseCompression",stage="BETA"} 1 -kubernetes_feature_enabled{name="APISelfSubjectReview",stage="BETA"} 1 -kubernetes_feature_enabled{name="APIServerIdentity",stage="BETA"} 1 -kubernetes_feature_enabled{name="APIServerTracing",stage="BETA"} 1 -kubernetes_feature_enabled{name="AdmissionWebhookMatchConditions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="AdvancedAuditing",stage=""} 1 -kubernetes_feature_enabled{name="AggregatedDiscoveryEndpoint",stage="BETA"} 1 -kubernetes_feature_enabled{name="AllAlpha",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="AllBeta",stage="BETA"} 0 -kubernetes_feature_enabled{name="AnyVolumeDataSource",stage="BETA"} 1 -kubernetes_feature_enabled{name="AppArmor",stage="BETA"} 1 -kubernetes_feature_enabled{name="CPUManager",stage=""} 1 -kubernetes_feature_enabled{name="CPUManagerPolicyAlphaOptions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CPUManagerPolicyBetaOptions",stage="BETA"} 1 -kubernetes_feature_enabled{name="CPUManagerPolicyOptions",stage="BETA"} 1 -kubernetes_feature_enabled{name="CSIMigrationAzureFile",stage=""} 1 -kubernetes_feature_enabled{name="CSIMigrationGCE",stage=""} 1 -kubernetes_feature_enabled{name="CSIMigrationPortworx",stage="BETA"} 0 -kubernetes_feature_enabled{name="CSIMigrationRBD",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CSIMigrationvSphere",stage=""} 1 -kubernetes_feature_enabled{name="CSINodeExpandSecret",stage="BETA"} 1 -kubernetes_feature_enabled{name="CSIStorageCapacity",stage=""} 1 -kubernetes_feature_enabled{name="CSIVolumeHealth",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CloudControllerManagerWebhook",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CloudDualStackNodeIPs",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ClusterTrustBundle",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ComponentSLIs",stage="BETA"} 1 -kubernetes_feature_enabled{name="ConsistentHTTPGetHandlers",stage=""} 1 -kubernetes_feature_enabled{name="ContainerCheckpoint",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ContextualLogging",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CronJobTimeZone",stage=""} 1 -kubernetes_feature_enabled{name="CrossNamespaceVolumeDataSource",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CustomCPUCFSQuotaPeriod",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CustomResourceValidationExpressions",stage="BETA"} 1 -kubernetes_feature_enabled{name="DelegateFSGroupToCSIDriver",stage=""} 1 -kubernetes_feature_enabled{name="DevicePlugins",stage=""} 1 -kubernetes_feature_enabled{name="DisableAcceleratorUsageMetrics",stage=""} 1 -kubernetes_feature_enabled{name="DisableCloudProviders",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="DisableKubeletCloudCredentialProviders",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="DownwardAPIHugePages",stage=""} 1 -kubernetes_feature_enabled{name="DryRun",stage=""} 1 -kubernetes_feature_enabled{name="DynamicResourceAllocation",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="EfficientWatchResumption",stage=""} 1 -kubernetes_feature_enabled{name="ElasticIndexedJob",stage="BETA"} 1 -kubernetes_feature_enabled{name="EndpointSliceTerminatingCondition",stage=""} 1 -kubernetes_feature_enabled{name="EventedPLEG",stage="BETA"} 0 -kubernetes_feature_enabled{name="ExecProbeTimeout",stage=""} 1 -kubernetes_feature_enabled{name="ExpandedDNSConfig",stage="BETA"} 1 -kubernetes_feature_enabled{name="ExperimentalHostUserNamespaceDefaulting",stage="BETA"} 0 -kubernetes_feature_enabled{name="GRPCContainerProbe",stage=""} 1 -kubernetes_feature_enabled{name="GracefulNodeShutdown",stage="BETA"} 1 -kubernetes_feature_enabled{name="GracefulNodeShutdownBasedOnPodPriority",stage="BETA"} 1 -kubernetes_feature_enabled{name="HPAContainerMetrics",stage="BETA"} 1 -kubernetes_feature_enabled{name="HPAScaleToZero",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="HonorPVReclaimPolicy",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="IPTablesOwnershipCleanup",stage="BETA"} 1 -kubernetes_feature_enabled{name="InPlacePodVerticalScaling",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginAWSUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginAzureDiskUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginAzureFileUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginGCEUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginOpenStackUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginPortworxUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginRBDUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginvSphereUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="JobMutableNodeSchedulingDirectives",stage=""} 1 -kubernetes_feature_enabled{name="JobPodFailurePolicy",stage="BETA"} 1 -kubernetes_feature_enabled{name="JobReadyPods",stage="BETA"} 1 -kubernetes_feature_enabled{name="JobTrackingWithFinalizers",stage=""} 1 -kubernetes_feature_enabled{name="KMSv2",stage="BETA"} 1 -kubernetes_feature_enabled{name="KubeletCredentialProviders",stage=""} 1 -kubernetes_feature_enabled{name="KubeletInUserNamespace",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="KubeletPodResources",stage="BETA"} 1 -kubernetes_feature_enabled{name="KubeletPodResourcesDynamicResources",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="KubeletPodResourcesGet",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="KubeletPodResourcesGetAllocatable",stage="BETA"} 1 -kubernetes_feature_enabled{name="KubeletTracing",stage="BETA"} 1 -kubernetes_feature_enabled{name="LegacyServiceAccountTokenNoAutoGeneration",stage=""} 1 -kubernetes_feature_enabled{name="LegacyServiceAccountTokenTracking",stage="BETA"} 1 -kubernetes_feature_enabled{name="LocalStorageCapacityIsolationFSQuotaMonitoring",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="LogarithmicScaleDown",stage="BETA"} 1 -kubernetes_feature_enabled{name="LoggingAlphaOptions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="LoggingBetaOptions",stage="BETA"} 1 -kubernetes_feature_enabled{name="MatchLabelKeysInPodTopologySpread",stage="BETA"} 1 -kubernetes_feature_enabled{name="MaxUnavailableStatefulSet",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="MemoryManager",stage="BETA"} 1 -kubernetes_feature_enabled{name="MemoryQoS",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="MinDomainsInPodTopologySpread",stage="BETA"} 1 -kubernetes_feature_enabled{name="MinimizeIPTablesRestore",stage="BETA"} 1 -kubernetes_feature_enabled{name="MixedProtocolLBService",stage=""} 1 -kubernetes_feature_enabled{name="MultiCIDRRangeAllocator",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="MultiCIDRServiceAllocator",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="NetworkPolicyStatus",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="NewVolumeManagerReconstruction",stage="BETA"} 1 -kubernetes_feature_enabled{name="NodeInclusionPolicyInPodTopologySpread",stage="BETA"} 1 -kubernetes_feature_enabled{name="NodeLogQuery",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="NodeOutOfServiceVolumeDetach",stage="BETA"} 1 -kubernetes_feature_enabled{name="NodeSwap",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="OpenAPIEnums",stage="BETA"} 1 -kubernetes_feature_enabled{name="OpenAPIV3",stage=""} 1 -kubernetes_feature_enabled{name="PDBUnhealthyPodEvictionPolicy",stage="BETA"} 1 -kubernetes_feature_enabled{name="PodAndContainerStatsFromCRI",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="PodDeletionCost",stage="BETA"} 1 -kubernetes_feature_enabled{name="PodDisruptionConditions",stage="BETA"} 1 -kubernetes_feature_enabled{name="PodHasNetworkCondition",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="PodSchedulingReadiness",stage="BETA"} 1 -kubernetes_feature_enabled{name="PodSecurity",stage=""} 1 -kubernetes_feature_enabled{name="ProbeTerminationGracePeriod",stage="BETA"} 1 -kubernetes_feature_enabled{name="ProcMountType",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ProxyTerminatingEndpoints",stage="BETA"} 1 -kubernetes_feature_enabled{name="QOSReserved",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ReadWriteOncePod",stage="BETA"} 1 -kubernetes_feature_enabled{name="RecoverVolumeExpansionFailure",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="RemainingItemCount",stage="BETA"} 1 -kubernetes_feature_enabled{name="RemoveSelfLink",stage=""} 1 -kubernetes_feature_enabled{name="RetroactiveDefaultStorageClass",stage="BETA"} 1 -kubernetes_feature_enabled{name="RotateKubeletServerCertificate",stage="BETA"} 1 -kubernetes_feature_enabled{name="SELinuxMountReadWriteOncePod",stage="BETA"} 1 -kubernetes_feature_enabled{name="SeccompDefault",stage=""} 1 -kubernetes_feature_enabled{name="SecurityContextDeny",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ServerSideApply",stage=""} 1 -kubernetes_feature_enabled{name="ServerSideFieldValidation",stage=""} 1 -kubernetes_feature_enabled{name="ServiceIPStaticSubrange",stage=""} 1 -kubernetes_feature_enabled{name="ServiceInternalTrafficPolicy",stage=""} 1 -kubernetes_feature_enabled{name="ServiceNodePortStaticSubrange",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="SizeMemoryBackedVolumes",stage="BETA"} 1 -kubernetes_feature_enabled{name="StableLoadBalancerNodeSet",stage="BETA"} 1 -kubernetes_feature_enabled{name="StatefulSetAutoDeletePVC",stage="BETA"} 1 -kubernetes_feature_enabled{name="StatefulSetStartOrdinal",stage="BETA"} 1 -kubernetes_feature_enabled{name="StorageVersionAPI",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="StorageVersionHash",stage="BETA"} 1 -kubernetes_feature_enabled{name="TopologyAwareHints",stage="BETA"} 1 -kubernetes_feature_enabled{name="TopologyManager",stage=""} 1 -kubernetes_feature_enabled{name="TopologyManagerPolicyAlphaOptions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="TopologyManagerPolicyBetaOptions",stage="BETA"} 0 -kubernetes_feature_enabled{name="TopologyManagerPolicyOptions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="UserNamespacesStatelessPodsSupport",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ValidatingAdmissionPolicy",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="VolumeCapacityPriority",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="WatchBookmark",stage=""} 1 -kubernetes_feature_enabled{name="WatchList",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="WinDSR",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="WinOverlay",stage="BETA"} 1 -kubernetes_feature_enabled{name="WindowsHostNetwork",stage="ALPHA"} 1 -kubernetes_feature_enabled{name="WindowsHostProcessContainers",stage=""} 1 -# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds. -# TYPE process_cpu_seconds_total counter -process_cpu_seconds_total 0.42 -# HELP process_max_fds Maximum number of open file descriptors. -# TYPE process_max_fds gauge -process_max_fds 1.048576e+06 -# HELP process_open_fds Number of open file descriptors. -# TYPE process_open_fds gauge -process_open_fds 12 -# HELP process_resident_memory_bytes Resident memory size in bytes. -# TYPE process_resident_memory_bytes gauge -process_resident_memory_bytes 4.8123904e+07 -# HELP process_start_time_seconds Start time of the process since unix epoch in seconds. -# TYPE process_start_time_seconds gauge -process_start_time_seconds 1.69157219141e+09 -# HELP process_virtual_memory_bytes Virtual memory size in bytes. -# TYPE process_virtual_memory_bytes gauge -process_virtual_memory_bytes 7.84257024e+08 -# HELP process_virtual_memory_max_bytes Maximum amount of virtual memory available in bytes. -# TYPE process_virtual_memory_max_bytes gauge -process_virtual_memory_max_bytes 1.8446744073709552e+19 -# HELP registered_metric_total [ALPHA] The count of registered metrics broken by stability level and deprecation version. -# TYPE registered_metric_total counter -registered_metric_total{deprecated_version="",stability_level="ALPHA"} 76 -registered_metric_total{deprecated_version="",stability_level="STABLE"} 3 -# HELP rest_client_exec_plugin_certificate_rotation_age [ALPHA] Histogram of the number of seconds the last auth exec plugin client certificate lived before being rotated. If auth exec plugin client certificates are unused, histogram will contain no data. -# TYPE rest_client_exec_plugin_certificate_rotation_age histogram -rest_client_exec_plugin_certificate_rotation_age_bucket{le="600"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="1800"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="3600"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="14400"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="86400"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="604800"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="2.592e+06"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="7.776e+06"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="1.5552e+07"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="3.1104e+07"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="1.24416e+08"} 0 -rest_client_exec_plugin_certificate_rotation_age_bucket{le="+Inf"} 0 -rest_client_exec_plugin_certificate_rotation_age_sum 0 -rest_client_exec_plugin_certificate_rotation_age_count 0 -# HELP rest_client_exec_plugin_ttl_seconds [ALPHA] Gauge of the shortest TTL (time-to-live) of the client certificate(s) managed by the auth exec plugin. The value is in seconds until certificate expiry (negative if already expired). If auth exec plugins are unused or manage no TLS certificates, the value will be +INF. -# TYPE rest_client_exec_plugin_ttl_seconds gauge -rest_client_exec_plugin_ttl_seconds +Inf -# HELP rest_client_rate_limiter_duration_seconds [ALPHA] Client side rate limiter latency in seconds. Broken down by verb, and host. -# TYPE rest_client_rate_limiter_duration_seconds histogram -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.005"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.025"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.1"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.25"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.5"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="1"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="2"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="4"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="8"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="15"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="30"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="60"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="+Inf"} 4 -rest_client_rate_limiter_duration_seconds_sum{host="kind-control-plane:6443",verb="GET"} 1.2169e-05 -rest_client_rate_limiter_duration_seconds_count{host="kind-control-plane:6443",verb="GET"} 4 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.005"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.025"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.1"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.25"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.5"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="1"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="2"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="4"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="8"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="15"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="30"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="60"} 1 -rest_client_rate_limiter_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="+Inf"} 1 -rest_client_rate_limiter_duration_seconds_sum{host="kind-control-plane:6443",verb="POST"} 1.462e-06 -rest_client_rate_limiter_duration_seconds_count{host="kind-control-plane:6443",verb="POST"} 1 -# HELP rest_client_request_duration_seconds [ALPHA] Request latency in seconds. Broken down by verb, and host. -# TYPE rest_client_request_duration_seconds histogram -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.005"} 3 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.025"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.1"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.25"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="0.5"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="1"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="2"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="4"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="8"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="15"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="30"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="60"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="GET",le="+Inf"} 4 -rest_client_request_duration_seconds_sum{host="kind-control-plane:6443",verb="GET"} 0.01651628 -rest_client_request_duration_seconds_count{host="kind-control-plane:6443",verb="GET"} 4 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.005"} 0 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.025"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.1"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.25"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="0.5"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="1"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="2"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="4"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="8"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="15"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="30"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="60"} 1 -rest_client_request_duration_seconds_bucket{host="kind-control-plane:6443",verb="POST",le="+Inf"} 1 -rest_client_request_duration_seconds_sum{host="kind-control-plane:6443",verb="POST"} 0.007487781 -rest_client_request_duration_seconds_count{host="kind-control-plane:6443",verb="POST"} 1 -# HELP rest_client_request_size_bytes [ALPHA] Request size in bytes. Broken down by verb and host. -# TYPE rest_client_request_size_bytes histogram -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="64"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="256"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="512"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="1024"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="4096"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="16384"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="65536"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="262144"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="1.048576e+06"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="4.194304e+06"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="1.6777216e+07"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="+Inf"} 4 -rest_client_request_size_bytes_sum{host="kind-control-plane:6443",verb="GET"} 0 -rest_client_request_size_bytes_count{host="kind-control-plane:6443",verb="GET"} 4 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="64"} 0 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="256"} 0 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="512"} 1 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="1024"} 1 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="4096"} 1 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="16384"} 1 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="65536"} 1 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="262144"} 1 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="1.048576e+06"} 1 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="4.194304e+06"} 1 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="1.6777216e+07"} 1 -rest_client_request_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="+Inf"} 1 -rest_client_request_size_bytes_sum{host="kind-control-plane:6443",verb="POST"} 259 -rest_client_request_size_bytes_count{host="kind-control-plane:6443",verb="POST"} 1 -# HELP rest_client_requests_total [ALPHA] Number of HTTP requests, partitioned by status code, method, and host. -# TYPE rest_client_requests_total counter -rest_client_requests_total{code="200",host="kind-control-plane:6443",method="GET"} 13 -rest_client_requests_total{code="201",host="kind-control-plane:6443",method="POST"} 1 -# HELP rest_client_response_size_bytes [ALPHA] Response size in bytes. Broken down by verb and host. -# TYPE rest_client_response_size_bytes histogram -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="64"} 0 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="256"} 0 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="512"} 0 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="1024"} 0 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="4096"} 2 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="16384"} 4 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="65536"} 4 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="262144"} 4 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="1.048576e+06"} 4 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="4.194304e+06"} 4 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="1.6777216e+07"} 4 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="GET",le="+Inf"} 4 -rest_client_response_size_bytes_sum{host="kind-control-plane:6443",verb="GET"} 11430 -rest_client_response_size_bytes_count{host="kind-control-plane:6443",verb="GET"} 4 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="64"} 0 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="256"} 0 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="512"} 1 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="1024"} 1 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="4096"} 1 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="16384"} 1 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="65536"} 1 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="262144"} 1 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="1.048576e+06"} 1 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="4.194304e+06"} 1 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="1.6777216e+07"} 1 -rest_client_response_size_bytes_bucket{host="kind-control-plane:6443",verb="POST",le="+Inf"} 1 -rest_client_response_size_bytes_sum{host="kind-control-plane:6443",verb="POST"} 503 -rest_client_response_size_bytes_count{host="kind-control-plane:6443",verb="POST"} 1 diff --git a/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.31 b/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.31 new file mode 100644 index 00000000000..b7d67ea07f3 --- /dev/null +++ b/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.31 @@ -0,0 +1,1014 @@ +# HELP aggregator_discovery_aggregation_count_total [ALPHA] Counter of number of times discovery was aggregated +# TYPE aggregator_discovery_aggregation_count_total counter +aggregator_discovery_aggregation_count_total 0 +# HELP apiserver_audit_event_total [ALPHA] Counter of audit events generated and sent to the audit backend. +# TYPE apiserver_audit_event_total counter +apiserver_audit_event_total 0 +# HELP apiserver_audit_requests_rejected_total [ALPHA] Counter of apiserver requests rejected due to an error in audit logging backend. +# TYPE apiserver_audit_requests_rejected_total counter +apiserver_audit_requests_rejected_total 0 +# HELP apiserver_client_certificate_expiration_seconds [ALPHA] Distribution of the remaining lifetime on the certificate used to authenticate a request. +# TYPE apiserver_client_certificate_expiration_seconds histogram +apiserver_client_certificate_expiration_seconds_bucket{le="0"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="1800"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="3600"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="7200"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="21600"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="43200"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="86400"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="172800"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="345600"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="604800"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="2.592e+06"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="7.776e+06"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="1.5552e+07"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="3.1104e+07"} 0 +apiserver_client_certificate_expiration_seconds_bucket{le="+Inf"} 0 +apiserver_client_certificate_expiration_seconds_sum 0 +apiserver_client_certificate_expiration_seconds_count 0 +# HELP apiserver_envelope_encryption_dek_cache_fill_percent [ALPHA] Percent of the cache slots currently occupied by cached DEKs. +# TYPE apiserver_envelope_encryption_dek_cache_fill_percent gauge +apiserver_envelope_encryption_dek_cache_fill_percent 0 +# HELP apiserver_storage_data_key_generation_duration_seconds [ALPHA] Latencies in seconds of data encryption key(DEK) generation operations. +# TYPE apiserver_storage_data_key_generation_duration_seconds histogram +apiserver_storage_data_key_generation_duration_seconds_bucket{le="5e-06"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="1e-05"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="2e-05"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="4e-05"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="8e-05"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00016"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00032"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00064"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00128"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00256"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.00512"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.01024"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.02048"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="0.04096"} 0 +apiserver_storage_data_key_generation_duration_seconds_bucket{le="+Inf"} 0 +apiserver_storage_data_key_generation_duration_seconds_sum 0 +apiserver_storage_data_key_generation_duration_seconds_count 0 +# HELP apiserver_storage_data_key_generation_failures_total [ALPHA] Total number of failed data encryption key(DEK) generation operations. +# TYPE apiserver_storage_data_key_generation_failures_total counter +apiserver_storage_data_key_generation_failures_total 0 +# HELP apiserver_storage_envelope_transformation_cache_misses_total [ALPHA] Total number of cache misses while accessing key decryption key(KEK). +# TYPE apiserver_storage_envelope_transformation_cache_misses_total counter +apiserver_storage_envelope_transformation_cache_misses_total 0 +# HELP apiserver_webhooks_x509_insecure_sha1_total [ALPHA] Counts the number of requests to servers with insecure SHA1 signatures in their serving certificate OR the number of connection failures due to the insecure SHA1 signatures (either/or, based on the runtime environment) +# TYPE apiserver_webhooks_x509_insecure_sha1_total counter +apiserver_webhooks_x509_insecure_sha1_total 0 +# HELP apiserver_webhooks_x509_missing_san_total [ALPHA] Counts the number of requests to servers missing SAN extension in their serving certificate OR the number of connection failures due to the lack of x509 certificate SAN extension missing (either/or, based on the runtime environment) +# TYPE apiserver_webhooks_x509_missing_san_total counter +apiserver_webhooks_x509_missing_san_total 0 +# HELP cardinality_enforcement_unexpected_categorizations_total [ALPHA] The count of unexpected categorizations during cardinality enforcement. +# TYPE cardinality_enforcement_unexpected_categorizations_total counter +cardinality_enforcement_unexpected_categorizations_total 0 +# HELP disabled_metrics_total [BETA] The count of disabled metrics. +# TYPE disabled_metrics_total counter +disabled_metrics_total 0 +# HELP go_cgo_go_to_c_calls_calls_total Count of calls made from Go to C by the current process. +# TYPE go_cgo_go_to_c_calls_calls_total counter +go_cgo_go_to_c_calls_calls_total 0 +# HELP go_cpu_classes_gc_mark_assist_cpu_seconds_total Estimated total CPU time goroutines spent performing GC tasks to assist the GC and prevent it from falling behind the application. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +# TYPE go_cpu_classes_gc_mark_assist_cpu_seconds_total counter +go_cpu_classes_gc_mark_assist_cpu_seconds_total 0.001349122 +# HELP go_cpu_classes_gc_mark_dedicated_cpu_seconds_total Estimated total CPU time spent performing GC tasks on processors (as defined by GOMAXPROCS) dedicated to those tasks. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +# TYPE go_cpu_classes_gc_mark_dedicated_cpu_seconds_total counter +go_cpu_classes_gc_mark_dedicated_cpu_seconds_total 0.033924307 +# HELP go_cpu_classes_gc_mark_idle_cpu_seconds_total Estimated total CPU time spent performing GC tasks on spare CPU resources that the Go scheduler could not otherwise find a use for. This should be subtracted from the total GC CPU time to obtain a measure of compulsory GC CPU time. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +# TYPE go_cpu_classes_gc_mark_idle_cpu_seconds_total counter +go_cpu_classes_gc_mark_idle_cpu_seconds_total 0.004035353 +# HELP go_cpu_classes_gc_pause_cpu_seconds_total Estimated total CPU time spent with the application paused by the GC. Even if only one thread is running during the pause, this is computed as GOMAXPROCS times the pause latency because nothing else can be executing. This is the exact sum of samples in /sched/pauses/total/gc:seconds if each sample is multiplied by GOMAXPROCS at the time it is taken. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +# TYPE go_cpu_classes_gc_pause_cpu_seconds_total counter +go_cpu_classes_gc_pause_cpu_seconds_total 0.338564196 +# HELP go_cpu_classes_gc_total_cpu_seconds_total Estimated total CPU time spent performing GC tasks. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes/gc. +# TYPE go_cpu_classes_gc_total_cpu_seconds_total counter +go_cpu_classes_gc_total_cpu_seconds_total 0.377872978 +# HELP go_cpu_classes_idle_cpu_seconds_total Estimated total available CPU time not spent executing any Go or Go runtime code. In other words, the part of /cpu/classes/total:cpu-seconds that was unused. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +# TYPE go_cpu_classes_idle_cpu_seconds_total counter +go_cpu_classes_idle_cpu_seconds_total 7260.209085635 +# HELP go_cpu_classes_scavenge_assist_cpu_seconds_total Estimated total CPU time spent returning unused memory to the underlying platform in response eagerly in response to memory pressure. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +# TYPE go_cpu_classes_scavenge_assist_cpu_seconds_total counter +go_cpu_classes_scavenge_assist_cpu_seconds_total 4.53e-07 +# HELP go_cpu_classes_scavenge_background_cpu_seconds_total Estimated total CPU time spent performing background tasks to return unused memory to the underlying platform. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +# TYPE go_cpu_classes_scavenge_background_cpu_seconds_total counter +go_cpu_classes_scavenge_background_cpu_seconds_total 0.000732346 +# HELP go_cpu_classes_scavenge_total_cpu_seconds_total Estimated total CPU time spent performing tasks that return unused memory to the underlying platform. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes/scavenge. +# TYPE go_cpu_classes_scavenge_total_cpu_seconds_total counter +go_cpu_classes_scavenge_total_cpu_seconds_total 0.000732799 +# HELP go_cpu_classes_total_cpu_seconds_total Estimated total available CPU time for user Go code or the Go runtime, as defined by GOMAXPROCS. In other words, GOMAXPROCS integrated over the wall-clock duration this process has been executing for. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes. +# TYPE go_cpu_classes_total_cpu_seconds_total counter +go_cpu_classes_total_cpu_seconds_total 7261.229340252 +# HELP go_cpu_classes_user_cpu_seconds_total Estimated total CPU time spent running user Go code. This may also include some small amount of time spent in the Go runtime. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +# TYPE go_cpu_classes_user_cpu_seconds_total counter +go_cpu_classes_user_cpu_seconds_total 0.643546988 +# HELP go_gc_cycles_automatic_gc_cycles_total Count of completed GC cycles generated by the Go runtime. +# TYPE go_gc_cycles_automatic_gc_cycles_total counter +go_gc_cycles_automatic_gc_cycles_total 10 +# HELP go_gc_cycles_forced_gc_cycles_total Count of completed GC cycles forced by the application. +# TYPE go_gc_cycles_forced_gc_cycles_total counter +go_gc_cycles_forced_gc_cycles_total 0 +# HELP go_gc_cycles_total_gc_cycles_total Count of all completed GC cycles. +# TYPE go_gc_cycles_total_gc_cycles_total counter +go_gc_cycles_total_gc_cycles_total 10 +# HELP go_gc_duration_seconds A summary of the pause duration of garbage collection cycles. +# TYPE go_gc_duration_seconds summary +go_gc_duration_seconds{quantile="0"} 0.00013913 +go_gc_duration_seconds{quantile="0.25"} 0.000157688 +go_gc_duration_seconds{quantile="0.5"} 0.000439546 +go_gc_duration_seconds{quantile="0.75"} 0.000544208 +go_gc_duration_seconds{quantile="1"} 0.024953243 +go_gc_duration_seconds_sum 0.02805064 +go_gc_duration_seconds_count 10 +# HELP go_gc_gogc_percent Heap size target percentage configured by the user, otherwise 100. This value is set by the GOGC environment variable, and the runtime/debug.SetGCPercent function. +# TYPE go_gc_gogc_percent gauge +go_gc_gogc_percent 100 +# HELP go_gc_gomemlimit_bytes Go runtime memory limit configured by the user, otherwise math.MaxInt64. This value is set by the GOMEMLIMIT environment variable, and the runtime/debug.SetMemoryLimit function. +# TYPE go_gc_gomemlimit_bytes gauge +go_gc_gomemlimit_bytes 9.223372036854776e+18 +# HELP go_gc_heap_allocs_by_size_bytes Distribution of heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. +# TYPE go_gc_heap_allocs_by_size_bytes histogram +go_gc_heap_allocs_by_size_bytes_bucket{le="8.999999999999998"} 5848 +go_gc_heap_allocs_by_size_bytes_bucket{le="24.999999999999996"} 33248 +go_gc_heap_allocs_by_size_bytes_bucket{le="64.99999999999999"} 53539 +go_gc_heap_allocs_by_size_bytes_bucket{le="144.99999999999997"} 72624 +go_gc_heap_allocs_by_size_bytes_bucket{le="320.99999999999994"} 77576 +go_gc_heap_allocs_by_size_bytes_bucket{le="704.9999999999999"} 79909 +go_gc_heap_allocs_by_size_bytes_bucket{le="1536.9999999999998"} 80998 +go_gc_heap_allocs_by_size_bytes_bucket{le="3200.9999999999995"} 81371 +go_gc_heap_allocs_by_size_bytes_bucket{le="6528.999999999999"} 81584 +go_gc_heap_allocs_by_size_bytes_bucket{le="13568.999999999998"} 81691 +go_gc_heap_allocs_by_size_bytes_bucket{le="27264.999999999996"} 81730 +go_gc_heap_allocs_by_size_bytes_bucket{le="+Inf"} 81777 +go_gc_heap_allocs_by_size_bytes_sum 1.341748e+07 +go_gc_heap_allocs_by_size_bytes_count 81777 +# HELP go_gc_heap_allocs_bytes_total Cumulative sum of memory allocated to the heap by the application. +# TYPE go_gc_heap_allocs_bytes_total counter +go_gc_heap_allocs_bytes_total 1.341748e+07 +# HELP go_gc_heap_allocs_objects_total Cumulative count of heap allocations triggered by the application. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. +# TYPE go_gc_heap_allocs_objects_total counter +go_gc_heap_allocs_objects_total 81777 +# HELP go_gc_heap_frees_by_size_bytes Distribution of freed heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. +# TYPE go_gc_heap_frees_by_size_bytes histogram +go_gc_heap_frees_by_size_bytes_bucket{le="8.999999999999998"} 3645 +go_gc_heap_frees_by_size_bytes_bucket{le="24.999999999999996"} 22546 +go_gc_heap_frees_by_size_bytes_bucket{le="64.99999999999999"} 34610 +go_gc_heap_frees_by_size_bytes_bucket{le="144.99999999999997"} 49388 +go_gc_heap_frees_by_size_bytes_bucket{le="320.99999999999994"} 51964 +go_gc_heap_frees_by_size_bytes_bucket{le="704.9999999999999"} 53492 +go_gc_heap_frees_by_size_bytes_bucket{le="1536.9999999999998"} 54329 +go_gc_heap_frees_by_size_bytes_bucket{le="3200.9999999999995"} 54544 +go_gc_heap_frees_by_size_bytes_bucket{le="6528.999999999999"} 54664 +go_gc_heap_frees_by_size_bytes_bucket{le="13568.999999999998"} 54714 +go_gc_heap_frees_by_size_bytes_bucket{le="27264.999999999996"} 54727 +go_gc_heap_frees_by_size_bytes_bucket{le="+Inf"} 54761 +go_gc_heap_frees_by_size_bytes_sum 8.083512e+06 +go_gc_heap_frees_by_size_bytes_count 54761 +# HELP go_gc_heap_frees_bytes_total Cumulative sum of heap memory freed by the garbage collector. +# TYPE go_gc_heap_frees_bytes_total counter +go_gc_heap_frees_bytes_total 8.083512e+06 +# HELP go_gc_heap_frees_objects_total Cumulative count of heap allocations whose storage was freed by the garbage collector. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. +# TYPE go_gc_heap_frees_objects_total counter +go_gc_heap_frees_objects_total 54761 +# HELP go_gc_heap_goal_bytes Heap size target for the end of the GC cycle. +# TYPE go_gc_heap_goal_bytes gauge +go_gc_heap_goal_bytes 1.1383432e+07 +# HELP go_gc_heap_live_bytes Heap memory occupied by live objects that were marked by the previous GC. +# TYPE go_gc_heap_live_bytes gauge +go_gc_heap_live_bytes 5.25924e+06 +# HELP go_gc_heap_objects_objects Number of objects, live or unswept, occupying heap memory. +# TYPE go_gc_heap_objects_objects gauge +go_gc_heap_objects_objects 27016 +# HELP go_gc_heap_tiny_allocs_objects_total Count of small allocations that are packed together into blocks. These allocations are counted separately from other allocations because each individual allocation is not tracked by the runtime, only their block. Each block is already accounted for in allocs-by-size and frees-by-size. +# TYPE go_gc_heap_tiny_allocs_objects_total counter +go_gc_heap_tiny_allocs_objects_total 3649 +# HELP go_gc_limiter_last_enabled_gc_cycle GC cycle the last time the GC CPU limiter was enabled. This metric is useful for diagnosing the root cause of an out-of-memory error, because the limiter trades memory for CPU time when the GC's CPU time gets too high. This is most likely to occur with use of SetMemoryLimit. The first GC cycle is cycle 1, so a value of 0 indicates that it was never enabled. +# TYPE go_gc_limiter_last_enabled_gc_cycle gauge +go_gc_limiter_last_enabled_gc_cycle 0 +# HELP go_gc_pauses_seconds Deprecated. Prefer the identical /sched/pauses/total/gc:seconds. +# TYPE go_gc_pauses_seconds histogram +go_gc_pauses_seconds_bucket{le="6.399999999999999e-08"} 0 +go_gc_pauses_seconds_bucket{le="6.399999999999999e-07"} 0 +go_gc_pauses_seconds_bucket{le="7.167999999999999e-06"} 6 +go_gc_pauses_seconds_bucket{le="8.191999999999999e-05"} 7 +go_gc_pauses_seconds_bucket{le="0.0009175039999999999"} 20 +go_gc_pauses_seconds_bucket{le="0.010485759999999998"} 20 +go_gc_pauses_seconds_bucket{le="0.11744051199999998"} 21 +go_gc_pauses_seconds_bucket{le="+Inf"} 21 +go_gc_pauses_seconds_sum 0.011561728 +go_gc_pauses_seconds_count 21 +# HELP go_gc_scan_globals_bytes The total amount of global variable space that is scannable. +# TYPE go_gc_scan_globals_bytes gauge +go_gc_scan_globals_bytes 752000 +# HELP go_gc_scan_heap_bytes The total amount of heap space that is scannable. +# TYPE go_gc_scan_heap_bytes gauge +go_gc_scan_heap_bytes 4.012528e+06 +# HELP go_gc_scan_stack_bytes The number of bytes of stack that were scanned last GC cycle. +# TYPE go_gc_scan_stack_bytes gauge +go_gc_scan_stack_bytes 112952 +# HELP go_gc_scan_total_bytes The total amount space that is scannable. Sum of all metrics in /gc/scan. +# TYPE go_gc_scan_total_bytes gauge +go_gc_scan_total_bytes 4.87748e+06 +# HELP go_gc_stack_starting_size_bytes The stack size of new goroutines. +# TYPE go_gc_stack_starting_size_bytes gauge +go_gc_stack_starting_size_bytes 4096 +# HELP go_godebug_non_default_behavior_execerrdot_events_total The number of non-default behaviors executed by the os/exec package due to a non-default GODEBUG=execerrdot=... setting. +# TYPE go_godebug_non_default_behavior_execerrdot_events_total counter +go_godebug_non_default_behavior_execerrdot_events_total 0 +# HELP go_godebug_non_default_behavior_gocachehash_events_total The number of non-default behaviors executed by the cmd/go package due to a non-default GODEBUG=gocachehash=... setting. +# TYPE go_godebug_non_default_behavior_gocachehash_events_total counter +go_godebug_non_default_behavior_gocachehash_events_total 0 +# HELP go_godebug_non_default_behavior_gocachetest_events_total The number of non-default behaviors executed by the cmd/go package due to a non-default GODEBUG=gocachetest=... setting. +# TYPE go_godebug_non_default_behavior_gocachetest_events_total counter +go_godebug_non_default_behavior_gocachetest_events_total 0 +# HELP go_godebug_non_default_behavior_gocacheverify_events_total The number of non-default behaviors executed by the cmd/go package due to a non-default GODEBUG=gocacheverify=... setting. +# TYPE go_godebug_non_default_behavior_gocacheverify_events_total counter +go_godebug_non_default_behavior_gocacheverify_events_total 0 +# HELP go_godebug_non_default_behavior_gotypesalias_events_total The number of non-default behaviors executed by the go/types package due to a non-default GODEBUG=gotypesalias=... setting. +# TYPE go_godebug_non_default_behavior_gotypesalias_events_total counter +go_godebug_non_default_behavior_gotypesalias_events_total 0 +# HELP go_godebug_non_default_behavior_http2client_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=http2client=... setting. +# TYPE go_godebug_non_default_behavior_http2client_events_total counter +go_godebug_non_default_behavior_http2client_events_total 0 +# HELP go_godebug_non_default_behavior_http2server_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=http2server=... setting. +# TYPE go_godebug_non_default_behavior_http2server_events_total counter +go_godebug_non_default_behavior_http2server_events_total 0 +# HELP go_godebug_non_default_behavior_httplaxcontentlength_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=httplaxcontentlength=... setting. +# TYPE go_godebug_non_default_behavior_httplaxcontentlength_events_total counter +go_godebug_non_default_behavior_httplaxcontentlength_events_total 0 +# HELP go_godebug_non_default_behavior_httpmuxgo121_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=httpmuxgo121=... setting. +# TYPE go_godebug_non_default_behavior_httpmuxgo121_events_total counter +go_godebug_non_default_behavior_httpmuxgo121_events_total 0 +# HELP go_godebug_non_default_behavior_installgoroot_events_total The number of non-default behaviors executed by the go/build package due to a non-default GODEBUG=installgoroot=... setting. +# TYPE go_godebug_non_default_behavior_installgoroot_events_total counter +go_godebug_non_default_behavior_installgoroot_events_total 0 +# HELP go_godebug_non_default_behavior_jstmpllitinterp_events_total The number of non-default behaviors executed by the html/template package due to a non-default GODEBUG=jstmpllitinterp=... setting. +# TYPE go_godebug_non_default_behavior_jstmpllitinterp_events_total counter +go_godebug_non_default_behavior_jstmpllitinterp_events_total 0 +# HELP go_godebug_non_default_behavior_multipartmaxheaders_events_total The number of non-default behaviors executed by the mime/multipart package due to a non-default GODEBUG=multipartmaxheaders=... setting. +# TYPE go_godebug_non_default_behavior_multipartmaxheaders_events_total counter +go_godebug_non_default_behavior_multipartmaxheaders_events_total 0 +# HELP go_godebug_non_default_behavior_multipartmaxparts_events_total The number of non-default behaviors executed by the mime/multipart package due to a non-default GODEBUG=multipartmaxparts=... setting. +# TYPE go_godebug_non_default_behavior_multipartmaxparts_events_total counter +go_godebug_non_default_behavior_multipartmaxparts_events_total 0 +# HELP go_godebug_non_default_behavior_multipathtcp_events_total The number of non-default behaviors executed by the net package due to a non-default GODEBUG=multipathtcp=... setting. +# TYPE go_godebug_non_default_behavior_multipathtcp_events_total counter +go_godebug_non_default_behavior_multipathtcp_events_total 0 +# HELP go_godebug_non_default_behavior_panicnil_events_total The number of non-default behaviors executed by the runtime package due to a non-default GODEBUG=panicnil=... setting. +# TYPE go_godebug_non_default_behavior_panicnil_events_total counter +go_godebug_non_default_behavior_panicnil_events_total 0 +# HELP go_godebug_non_default_behavior_randautoseed_events_total The number of non-default behaviors executed by the math/rand package due to a non-default GODEBUG=randautoseed=... setting. +# TYPE go_godebug_non_default_behavior_randautoseed_events_total counter +go_godebug_non_default_behavior_randautoseed_events_total 0 +# HELP go_godebug_non_default_behavior_tarinsecurepath_events_total The number of non-default behaviors executed by the archive/tar package due to a non-default GODEBUG=tarinsecurepath=... setting. +# TYPE go_godebug_non_default_behavior_tarinsecurepath_events_total counter +go_godebug_non_default_behavior_tarinsecurepath_events_total 0 +# HELP go_godebug_non_default_behavior_tls10server_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tls10server=... setting. +# TYPE go_godebug_non_default_behavior_tls10server_events_total counter +go_godebug_non_default_behavior_tls10server_events_total 0 +# HELP go_godebug_non_default_behavior_tlsmaxrsasize_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tlsmaxrsasize=... setting. +# TYPE go_godebug_non_default_behavior_tlsmaxrsasize_events_total counter +go_godebug_non_default_behavior_tlsmaxrsasize_events_total 0 +# HELP go_godebug_non_default_behavior_tlsrsakex_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tlsrsakex=... setting. +# TYPE go_godebug_non_default_behavior_tlsrsakex_events_total counter +go_godebug_non_default_behavior_tlsrsakex_events_total 0 +# HELP go_godebug_non_default_behavior_tlsunsafeekm_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tlsunsafeekm=... setting. +# TYPE go_godebug_non_default_behavior_tlsunsafeekm_events_total counter +go_godebug_non_default_behavior_tlsunsafeekm_events_total 0 +# HELP go_godebug_non_default_behavior_x509sha1_events_total The number of non-default behaviors executed by the crypto/x509 package due to a non-default GODEBUG=x509sha1=... setting. +# TYPE go_godebug_non_default_behavior_x509sha1_events_total counter +go_godebug_non_default_behavior_x509sha1_events_total 0 +# HELP go_godebug_non_default_behavior_x509usefallbackroots_events_total The number of non-default behaviors executed by the crypto/x509 package due to a non-default GODEBUG=x509usefallbackroots=... setting. +# TYPE go_godebug_non_default_behavior_x509usefallbackroots_events_total counter +go_godebug_non_default_behavior_x509usefallbackroots_events_total 0 +# HELP go_godebug_non_default_behavior_x509usepolicies_events_total The number of non-default behaviors executed by the crypto/x509 package due to a non-default GODEBUG=x509usepolicies=... setting. +# TYPE go_godebug_non_default_behavior_x509usepolicies_events_total counter +go_godebug_non_default_behavior_x509usepolicies_events_total 0 +# HELP go_godebug_non_default_behavior_zipinsecurepath_events_total The number of non-default behaviors executed by the archive/zip package due to a non-default GODEBUG=zipinsecurepath=... setting. +# TYPE go_godebug_non_default_behavior_zipinsecurepath_events_total counter +go_godebug_non_default_behavior_zipinsecurepath_events_total 0 +# HELP go_goroutines Number of goroutines that currently exist. +# TYPE go_goroutines gauge +go_goroutines 51 +# HELP go_info Information about the Go environment. +# TYPE go_info gauge +go_info{version="go1.22.2"} 1 +# HELP go_memory_classes_heap_free_bytes Memory that is completely free and eligible to be returned to the underlying system, but has not been. This metric is the runtime's estimate of free address space that is backed by physical memory. +# TYPE go_memory_classes_heap_free_bytes gauge +go_memory_classes_heap_free_bytes 638976 +# HELP go_memory_classes_heap_objects_bytes Memory occupied by live objects and dead objects that have not yet been marked free by the garbage collector. +# TYPE go_memory_classes_heap_objects_bytes gauge +go_memory_classes_heap_objects_bytes 5.333968e+06 +# HELP go_memory_classes_heap_released_bytes Memory that is completely free and has been returned to the underlying system. This metric is the runtime's estimate of free address space that is still mapped into the process, but is not backed by physical memory. +# TYPE go_memory_classes_heap_released_bytes gauge +go_memory_classes_heap_released_bytes 5.963776e+06 +# HELP go_memory_classes_heap_stacks_bytes Memory allocated from the heap that is reserved for stack space, whether or not it is currently in-use. Currently, this represents all stack memory for goroutines. It also includes all OS thread stacks in non-cgo programs. Note that stacks may be allocated differently in the future, and this may change. +# TYPE go_memory_classes_heap_stacks_bytes gauge +go_memory_classes_heap_stacks_bytes 1.409024e+06 +# HELP go_memory_classes_heap_unused_bytes Memory that is reserved for heap objects but is not currently used to hold heap objects. +# TYPE go_memory_classes_heap_unused_bytes gauge +go_memory_classes_heap_unused_bytes 3.365936e+06 +# HELP go_memory_classes_metadata_mcache_free_bytes Memory that is reserved for runtime mcache structures, but not in-use. +# TYPE go_memory_classes_metadata_mcache_free_bytes gauge +go_memory_classes_metadata_mcache_free_bytes 1200 +# HELP go_memory_classes_metadata_mcache_inuse_bytes Memory that is occupied by runtime mcache structures that are currently being used. +# TYPE go_memory_classes_metadata_mcache_inuse_bytes gauge +go_memory_classes_metadata_mcache_inuse_bytes 14400 +# HELP go_memory_classes_metadata_mspan_free_bytes Memory that is reserved for runtime mspan structures, but not in-use. +# TYPE go_memory_classes_metadata_mspan_free_bytes gauge +go_memory_classes_metadata_mspan_free_bytes 11360 +# HELP go_memory_classes_metadata_mspan_inuse_bytes Memory that is occupied by runtime mspan structures that are currently being used. +# TYPE go_memory_classes_metadata_mspan_inuse_bytes gauge +go_memory_classes_metadata_mspan_inuse_bytes 200800 +# HELP go_memory_classes_metadata_other_bytes Memory that is reserved for or used to hold runtime metadata. +# TYPE go_memory_classes_metadata_other_bytes gauge +go_memory_classes_metadata_other_bytes 3.521104e+06 +# HELP go_memory_classes_os_stacks_bytes Stack memory allocated by the underlying operating system. In non-cgo programs this metric is currently zero. This may change in the future.In cgo programs this metric includes OS thread stacks allocated directly from the OS. Currently, this only accounts for one stack in c-shared and c-archive build modes, and other sources of stacks from the OS are not measured. This too may change in the future. +# TYPE go_memory_classes_os_stacks_bytes gauge +go_memory_classes_os_stacks_bytes 0 +# HELP go_memory_classes_other_bytes Memory used by execution trace buffers, structures for debugging the runtime, finalizer and profiler specials, and more. +# TYPE go_memory_classes_other_bytes gauge +go_memory_classes_other_bytes 2.286511e+06 +# HELP go_memory_classes_profiling_buckets_bytes Memory that is used by the stack trace hash map used for profiling. +# TYPE go_memory_classes_profiling_buckets_bytes gauge +go_memory_classes_profiling_buckets_bytes 1.457497e+06 +# HELP go_memory_classes_total_bytes All memory mapped by the Go runtime into the current process as read-write. Note that this does not include memory mapped by code called via cgo or via the syscall package. Sum of all metrics in /memory/classes. +# TYPE go_memory_classes_total_bytes gauge +go_memory_classes_total_bytes 2.4204552e+07 +# HELP go_memstats_alloc_bytes Number of bytes allocated and still in use. +# TYPE go_memstats_alloc_bytes gauge +go_memstats_alloc_bytes 5.333968e+06 +# HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed. +# TYPE go_memstats_alloc_bytes_total counter +go_memstats_alloc_bytes_total 1.341748e+07 +# HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table. +# TYPE go_memstats_buck_hash_sys_bytes gauge +go_memstats_buck_hash_sys_bytes 1.457497e+06 +# HELP go_memstats_frees_total Total number of frees. +# TYPE go_memstats_frees_total counter +go_memstats_frees_total 58410 +# HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata. +# TYPE go_memstats_gc_sys_bytes gauge +go_memstats_gc_sys_bytes 3.521104e+06 +# HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use. +# TYPE go_memstats_heap_alloc_bytes gauge +go_memstats_heap_alloc_bytes 5.333968e+06 +# HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used. +# TYPE go_memstats_heap_idle_bytes gauge +go_memstats_heap_idle_bytes 6.602752e+06 +# HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use. +# TYPE go_memstats_heap_inuse_bytes gauge +go_memstats_heap_inuse_bytes 8.699904e+06 +# HELP go_memstats_heap_objects Number of allocated objects. +# TYPE go_memstats_heap_objects gauge +go_memstats_heap_objects 27016 +# HELP go_memstats_heap_released_bytes Number of heap bytes released to OS. +# TYPE go_memstats_heap_released_bytes gauge +go_memstats_heap_released_bytes 5.963776e+06 +# HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system. +# TYPE go_memstats_heap_sys_bytes gauge +go_memstats_heap_sys_bytes 1.5302656e+07 +# HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection. +# TYPE go_memstats_last_gc_time_seconds gauge +go_memstats_last_gc_time_seconds 1.7140408650522914e+09 +# HELP go_memstats_lookups_total Total number of pointer lookups. +# TYPE go_memstats_lookups_total counter +go_memstats_lookups_total 0 +# HELP go_memstats_mallocs_total Total number of mallocs. +# TYPE go_memstats_mallocs_total counter +go_memstats_mallocs_total 85426 +# HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures. +# TYPE go_memstats_mcache_inuse_bytes gauge +go_memstats_mcache_inuse_bytes 14400 +# HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system. +# TYPE go_memstats_mcache_sys_bytes gauge +go_memstats_mcache_sys_bytes 15600 +# HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures. +# TYPE go_memstats_mspan_inuse_bytes gauge +go_memstats_mspan_inuse_bytes 200800 +# HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system. +# TYPE go_memstats_mspan_sys_bytes gauge +go_memstats_mspan_sys_bytes 212160 +# HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place. +# TYPE go_memstats_next_gc_bytes gauge +go_memstats_next_gc_bytes 1.1383432e+07 +# HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations. +# TYPE go_memstats_other_sys_bytes gauge +go_memstats_other_sys_bytes 2.286511e+06 +# HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator. +# TYPE go_memstats_stack_inuse_bytes gauge +go_memstats_stack_inuse_bytes 1.409024e+06 +# HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator. +# TYPE go_memstats_stack_sys_bytes gauge +go_memstats_stack_sys_bytes 1.409024e+06 +# HELP go_memstats_sys_bytes Number of bytes obtained from system. +# TYPE go_memstats_sys_bytes gauge +go_memstats_sys_bytes 2.4204552e+07 +# HELP go_sched_gomaxprocs_threads The current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously. +# TYPE go_sched_gomaxprocs_threads gauge +go_sched_gomaxprocs_threads 12 +# HELP go_sched_goroutines_goroutines Count of live goroutines. +# TYPE go_sched_goroutines_goroutines gauge +go_sched_goroutines_goroutines 52 +# HELP go_sched_latencies_seconds Distribution of the time goroutines have spent in the scheduler in a runnable state before actually running. Bucket counts increase monotonically. +# TYPE go_sched_latencies_seconds histogram +go_sched_latencies_seconds_bucket{le="6.399999999999999e-08"} 632 +go_sched_latencies_seconds_bucket{le="6.399999999999999e-07"} 695 +go_sched_latencies_seconds_bucket{le="7.167999999999999e-06"} 719 +go_sched_latencies_seconds_bucket{le="8.191999999999999e-05"} 788 +go_sched_latencies_seconds_bucket{le="0.0009175039999999999"} 874 +go_sched_latencies_seconds_bucket{le="0.010485759999999998"} 875 +go_sched_latencies_seconds_bucket{le="0.11744051199999998"} 875 +go_sched_latencies_seconds_bucket{le="+Inf"} 875 +go_sched_latencies_seconds_sum 0.008476608 +go_sched_latencies_seconds_count 875 +# HELP go_sched_pauses_stopping_gc_seconds Distribution of individual GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total GC-related stop-the-world time (/sched/pauses/total/gc:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. +# TYPE go_sched_pauses_stopping_gc_seconds histogram +go_sched_pauses_stopping_gc_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_stopping_gc_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_stopping_gc_seconds_bucket{le="7.167999999999999e-06"} 7 +go_sched_pauses_stopping_gc_seconds_bucket{le="8.191999999999999e-05"} 9 +go_sched_pauses_stopping_gc_seconds_bucket{le="0.0009175039999999999"} 20 +go_sched_pauses_stopping_gc_seconds_bucket{le="0.010485759999999998"} 20 +go_sched_pauses_stopping_gc_seconds_bucket{le="0.11744051199999998"} 21 +go_sched_pauses_stopping_gc_seconds_bucket{le="+Inf"} 21 +go_sched_pauses_stopping_gc_seconds_sum 0.011405696 +go_sched_pauses_stopping_gc_seconds_count 21 +# HELP go_sched_pauses_stopping_other_seconds Distribution of individual non-GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total non-GC-related stop-the-world time (/sched/pauses/total/other:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. +# TYPE go_sched_pauses_stopping_other_seconds histogram +go_sched_pauses_stopping_other_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="7.167999999999999e-06"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="8.191999999999999e-05"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="0.0009175039999999999"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="0.010485759999999998"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="0.11744051199999998"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="+Inf"} 0 +go_sched_pauses_stopping_other_seconds_sum 0 +go_sched_pauses_stopping_other_seconds_count 0 +# HELP go_sched_pauses_total_gc_seconds Distribution of individual GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (this is measured directly in /sched/pauses/stopping/gc:seconds), during which some threads may still be running. Bucket counts increase monotonically. +# TYPE go_sched_pauses_total_gc_seconds histogram +go_sched_pauses_total_gc_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_total_gc_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_total_gc_seconds_bucket{le="7.167999999999999e-06"} 6 +go_sched_pauses_total_gc_seconds_bucket{le="8.191999999999999e-05"} 7 +go_sched_pauses_total_gc_seconds_bucket{le="0.0009175039999999999"} 20 +go_sched_pauses_total_gc_seconds_bucket{le="0.010485759999999998"} 20 +go_sched_pauses_total_gc_seconds_bucket{le="0.11744051199999998"} 21 +go_sched_pauses_total_gc_seconds_bucket{le="+Inf"} 21 +go_sched_pauses_total_gc_seconds_sum 0.011561728 +go_sched_pauses_total_gc_seconds_count 21 +# HELP go_sched_pauses_total_other_seconds Distribution of individual non-GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (measured directly in /sched/pauses/stopping/other:seconds). Bucket counts increase monotonically. +# TYPE go_sched_pauses_total_other_seconds histogram +go_sched_pauses_total_other_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_total_other_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_total_other_seconds_bucket{le="7.167999999999999e-06"} 0 +go_sched_pauses_total_other_seconds_bucket{le="8.191999999999999e-05"} 0 +go_sched_pauses_total_other_seconds_bucket{le="0.0009175039999999999"} 0 +go_sched_pauses_total_other_seconds_bucket{le="0.010485759999999998"} 0 +go_sched_pauses_total_other_seconds_bucket{le="0.11744051199999998"} 0 +go_sched_pauses_total_other_seconds_bucket{le="+Inf"} 0 +go_sched_pauses_total_other_seconds_sum 0 +go_sched_pauses_total_other_seconds_count 0 +# HELP go_sync_mutex_wait_total_seconds_total Approximate cumulative time goroutines have spent blocked on a sync.Mutex, sync.RWMutex, or runtime-internal lock. This metric is useful for identifying global changes in lock contention. Collect a mutex or block profile using the runtime/pprof package for more detailed contention data. +# TYPE go_sync_mutex_wait_total_seconds_total counter +go_sync_mutex_wait_total_seconds_total 0.018666088 +# HELP go_threads Number of OS threads created. +# TYPE go_threads gauge +go_threads 12 +# HELP hidden_metrics_total [BETA] The count of hidden metrics. +# TYPE hidden_metrics_total counter +hidden_metrics_total 0 +# HELP kubeproxy_network_programming_duration_seconds [ALPHA] In Cluster Network Programming Latency in seconds +# TYPE kubeproxy_network_programming_duration_seconds histogram +kubeproxy_network_programming_duration_seconds_bucket{le="0"} 0 +kubeproxy_network_programming_duration_seconds_bucket{le="0.25"} 0 +kubeproxy_network_programming_duration_seconds_bucket{le="0.5"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="1"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="2"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="3"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="4"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="5"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="6"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="7"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="8"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="9"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="10"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="11"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="12"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="13"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="14"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="15"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="16"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="17"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="18"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="19"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="20"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="21"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="22"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="23"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="24"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="25"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="26"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="27"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="28"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="29"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="30"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="31"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="32"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="33"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="34"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="35"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="36"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="37"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="38"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="39"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="40"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="41"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="42"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="43"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="44"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="45"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="46"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="47"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="48"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="49"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="50"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="51"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="52"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="53"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="54"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="55"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="56"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="57"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="58"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="59"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="60"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="65"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="70"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="75"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="80"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="85"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="90"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="95"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="100"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="105"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="110"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="115"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="120"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="150"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="180"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="210"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="240"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="270"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="300"} 1 +kubeproxy_network_programming_duration_seconds_bucket{le="+Inf"} 1 +kubeproxy_network_programming_duration_seconds_sum 0.454639356 +kubeproxy_network_programming_duration_seconds_count 1 +# HELP kubeproxy_sync_full_proxy_rules_duration_seconds [ALPHA] SyncProxyRules latency in seconds for full resyncs +# TYPE kubeproxy_sync_full_proxy_rules_duration_seconds histogram +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.001"} 0 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.002"} 0 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.004"} 0 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.008"} 0 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.016"} 0 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.032"} 0 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.064"} 0 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.128"} 2 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.256"} 2 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="0.512"} 2 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="1.024"} 2 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="2.048"} 2 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="4.096"} 2 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="8.192"} 2 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="16.384"} 2 +kubeproxy_sync_full_proxy_rules_duration_seconds_bucket{le="+Inf"} 2 +kubeproxy_sync_full_proxy_rules_duration_seconds_sum 0.195615253 +kubeproxy_sync_full_proxy_rules_duration_seconds_count 2 +# HELP kubeproxy_sync_partial_proxy_rules_duration_seconds [ALPHA] SyncProxyRules latency in seconds for partial resyncs +# TYPE kubeproxy_sync_partial_proxy_rules_duration_seconds histogram +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.001"} 0 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.002"} 0 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.004"} 0 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.008"} 0 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.016"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.032"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.064"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.128"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.256"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="0.512"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="1.024"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="2.048"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="4.096"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="8.192"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="16.384"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_bucket{le="+Inf"} 1 +kubeproxy_sync_partial_proxy_rules_duration_seconds_sum 0.014351483 +kubeproxy_sync_partial_proxy_rules_duration_seconds_count 1 +# HELP kubeproxy_sync_proxy_rules_duration_seconds [ALPHA] SyncProxyRules latency in seconds +# TYPE kubeproxy_sync_proxy_rules_duration_seconds histogram +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.001"} 0 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.002"} 0 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.004"} 0 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.008"} 0 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.016"} 1 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.032"} 1 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.064"} 1 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.128"} 3 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.256"} 3 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="0.512"} 3 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="1.024"} 3 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="2.048"} 3 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="4.096"} 3 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="8.192"} 3 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="16.384"} 3 +kubeproxy_sync_proxy_rules_duration_seconds_bucket{le="+Inf"} 3 +kubeproxy_sync_proxy_rules_duration_seconds_sum 0.209962232 +kubeproxy_sync_proxy_rules_duration_seconds_count 3 +# HELP kubeproxy_sync_proxy_rules_endpoint_changes_pending [ALPHA] Pending proxy rules Endpoint changes +# TYPE kubeproxy_sync_proxy_rules_endpoint_changes_pending gauge +kubeproxy_sync_proxy_rules_endpoint_changes_pending 0 +# HELP kubeproxy_sync_proxy_rules_endpoint_changes_total [ALPHA] Cumulative proxy rules Endpoint changes +# TYPE kubeproxy_sync_proxy_rules_endpoint_changes_total counter +kubeproxy_sync_proxy_rules_endpoint_changes_total 3 +# HELP kubeproxy_sync_proxy_rules_iptables_last [ALPHA] Number of iptables rules written by kube-proxy in last sync +# TYPE kubeproxy_sync_proxy_rules_iptables_last gauge +kubeproxy_sync_proxy_rules_iptables_last{table="filter"} 4 +kubeproxy_sync_proxy_rules_iptables_last{table="nat"} 21 +# HELP kubeproxy_sync_proxy_rules_iptables_partial_restore_failures_total [ALPHA] Cumulative proxy iptables partial restore failures +# TYPE kubeproxy_sync_proxy_rules_iptables_partial_restore_failures_total counter +kubeproxy_sync_proxy_rules_iptables_partial_restore_failures_total 0 +# HELP kubeproxy_sync_proxy_rules_iptables_restore_failures_total [ALPHA] Cumulative proxy iptables restore failures +# TYPE kubeproxy_sync_proxy_rules_iptables_restore_failures_total counter +kubeproxy_sync_proxy_rules_iptables_restore_failures_total 0 +# HELP kubeproxy_sync_proxy_rules_iptables_total [ALPHA] Total number of iptables rules owned by kube-proxy +# TYPE kubeproxy_sync_proxy_rules_iptables_total gauge +kubeproxy_sync_proxy_rules_iptables_total{table="filter"} 4 +kubeproxy_sync_proxy_rules_iptables_total{table="nat"} 25 +# HELP kubeproxy_sync_proxy_rules_last_queued_timestamp_seconds [ALPHA] The last time a sync of proxy rules was queued +# TYPE kubeproxy_sync_proxy_rules_last_queued_timestamp_seconds gauge +kubeproxy_sync_proxy_rules_last_queued_timestamp_seconds 1.7140402714481494e+09 +# HELP kubeproxy_sync_proxy_rules_last_timestamp_seconds [ALPHA] The last time proxy rules were successfully synced +# TYPE kubeproxy_sync_proxy_rules_last_timestamp_seconds gauge +kubeproxy_sync_proxy_rules_last_timestamp_seconds 1.7140402714546502e+09 +# HELP kubeproxy_sync_proxy_rules_no_local_endpoints_total [ALPHA] Number of services with a Local traffic policy and no endpoints +# TYPE kubeproxy_sync_proxy_rules_no_local_endpoints_total gauge +kubeproxy_sync_proxy_rules_no_local_endpoints_total{traffic_policy="external"} 0 +kubeproxy_sync_proxy_rules_no_local_endpoints_total{traffic_policy="internal"} 0 +# HELP kubeproxy_sync_proxy_rules_service_changes_pending [ALPHA] Pending proxy rules Service changes +# TYPE kubeproxy_sync_proxy_rules_service_changes_pending gauge +kubeproxy_sync_proxy_rules_service_changes_pending 0 +# HELP kubeproxy_sync_proxy_rules_service_changes_total [ALPHA] Cumulative proxy rules Service changes +# TYPE kubeproxy_sync_proxy_rules_service_changes_total counter +kubeproxy_sync_proxy_rules_service_changes_total 4 +# HELP kubernetes_build_info [ALPHA] A metric with a constant '1' value labeled by major, minor, git version, git commit, git tree state, build date, Go version, and compiler from which Kubernetes was built, and platform on which it is running. +# TYPE kubernetes_build_info gauge +kubernetes_build_info{build_date="2024-04-17T17:34:08Z",compiler="gc",git_commit="7c48c2bd72b9bf5c44d21d7338cc7bea77d0ad2a",git_tree_state="clean",git_version="v1.30.0",go_version="go1.22.2",major="1",minor="30",platform="linux/amd64"} 1 +# HELP kubernetes_feature_enabled [BETA] This metric records the data about the stage and enablement of a k8s feature. +# TYPE kubernetes_feature_enabled gauge +kubernetes_feature_enabled{name="APIListChunking",stage=""} 1 +kubernetes_feature_enabled{name="APIPriorityAndFairness",stage=""} 1 +kubernetes_feature_enabled{name="APIResponseCompression",stage="BETA"} 1 +kubernetes_feature_enabled{name="APIServerIdentity",stage="BETA"} 1 +kubernetes_feature_enabled{name="APIServerTracing",stage="BETA"} 1 +kubernetes_feature_enabled{name="APIServingWithRoutine",stage="BETA"} 1 +kubernetes_feature_enabled{name="AdmissionWebhookMatchConditions",stage=""} 1 +kubernetes_feature_enabled{name="AggregatedDiscoveryEndpoint",stage=""} 1 +kubernetes_feature_enabled{name="AllAlpha",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="AllBeta",stage="BETA"} 0 +kubernetes_feature_enabled{name="AllowServiceLBStatusOnNonLB",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="AnyVolumeDataSource",stage="BETA"} 1 +kubernetes_feature_enabled{name="AppArmor",stage="BETA"} 1 +kubernetes_feature_enabled{name="AppArmorFields",stage="BETA"} 1 +kubernetes_feature_enabled{name="CPUManager",stage=""} 1 +kubernetes_feature_enabled{name="CPUManagerPolicyAlphaOptions",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CPUManagerPolicyBetaOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="CPUManagerPolicyOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="CRDValidationRatcheting",stage="BETA"} 1 +kubernetes_feature_enabled{name="CSIMigrationPortworx",stage="BETA"} 0 +kubernetes_feature_enabled{name="CSIMigrationRBD",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="CSINodeExpandSecret",stage=""} 1 +kubernetes_feature_enabled{name="CSIVolumeHealth",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CloudControllerManagerWebhook",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CloudDualStackNodeIPs",stage=""} 1 +kubernetes_feature_enabled{name="ClusterTrustBundle",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ClusterTrustBundleProjection",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ComponentSLIs",stage="BETA"} 1 +kubernetes_feature_enabled{name="ConsistentHTTPGetHandlers",stage=""} 1 +kubernetes_feature_enabled{name="ConsistentListFromCache",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ContainerCheckpoint",stage="BETA"} 1 +kubernetes_feature_enabled{name="ContextualLogging",stage="BETA"} 1 +kubernetes_feature_enabled{name="CronJobsScheduledAnnotation",stage="BETA"} 1 +kubernetes_feature_enabled{name="CrossNamespaceVolumeDataSource",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CustomCPUCFSQuotaPeriod",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CustomResourceFieldSelectors",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CustomResourceValidationExpressions",stage=""} 1 +kubernetes_feature_enabled{name="DefaultHostNetworkHostPortsInPodTemplates",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="DevicePluginCDIDevices",stage="BETA"} 1 +kubernetes_feature_enabled{name="DisableCloudProviders",stage="BETA"} 1 +kubernetes_feature_enabled{name="DisableKubeletCloudCredentialProviders",stage="BETA"} 1 +kubernetes_feature_enabled{name="DisableNodeKubeProxyVersion",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="DynamicResourceAllocation",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="EfficientWatchResumption",stage=""} 1 +kubernetes_feature_enabled{name="ElasticIndexedJob",stage="BETA"} 1 +kubernetes_feature_enabled{name="EventedPLEG",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ExecProbeTimeout",stage=""} 1 +kubernetes_feature_enabled{name="GracefulNodeShutdown",stage="BETA"} 1 +kubernetes_feature_enabled{name="GracefulNodeShutdownBasedOnPodPriority",stage="BETA"} 1 +kubernetes_feature_enabled{name="HPAContainerMetrics",stage=""} 1 +kubernetes_feature_enabled{name="HPAScaleToZero",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="HonorPVReclaimPolicy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ImageMaximumGCAge",stage="BETA"} 1 +kubernetes_feature_enabled{name="InPlacePodVerticalScaling",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InTreePluginAWSUnregister",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InTreePluginAzureDiskUnregister",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InTreePluginAzureFileUnregister",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InTreePluginGCEUnregister",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InTreePluginOpenStackUnregister",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InTreePluginPortworxUnregister",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InTreePluginRBDUnregister",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="InTreePluginvSphereUnregister",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InformerResourceVersion",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="JobBackoffLimitPerIndex",stage="BETA"} 1 +kubernetes_feature_enabled{name="JobManagedBy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="JobPodFailurePolicy",stage="BETA"} 1 +kubernetes_feature_enabled{name="JobPodReplacementPolicy",stage="BETA"} 1 +kubernetes_feature_enabled{name="JobReadyPods",stage=""} 1 +kubernetes_feature_enabled{name="JobSuccessPolicy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="KMSv1",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="KMSv2",stage=""} 1 +kubernetes_feature_enabled{name="KMSv2KDF",stage=""} 1 +kubernetes_feature_enabled{name="KubeProxyDrainingTerminatingNodes",stage="BETA"} 1 +kubernetes_feature_enabled{name="KubeletCgroupDriverFromCRI",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="KubeletInUserNamespace",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="KubeletPodResourcesDynamicResources",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="KubeletPodResourcesGet",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="KubeletSeparateDiskGC",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="KubeletTracing",stage="BETA"} 1 +kubernetes_feature_enabled{name="LegacyServiceAccountTokenCleanUp",stage=""} 1 +kubernetes_feature_enabled{name="LoadBalancerIPMode",stage="BETA"} 1 +kubernetes_feature_enabled{name="LocalStorageCapacityIsolationFSQuotaMonitoring",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="LogarithmicScaleDown",stage="BETA"} 1 +kubernetes_feature_enabled{name="LoggingAlphaOptions",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="LoggingBetaOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="MatchLabelKeysInPodAffinity",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="MatchLabelKeysInPodTopologySpread",stage="BETA"} 1 +kubernetes_feature_enabled{name="MaxUnavailableStatefulSet",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="MemoryManager",stage="BETA"} 1 +kubernetes_feature_enabled{name="MemoryQoS",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="MinDomainsInPodTopologySpread",stage=""} 1 +kubernetes_feature_enabled{name="MultiCIDRServiceAllocator",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="MutatingAdmissionPolicy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="NFTablesProxyMode",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="NewVolumeManagerReconstruction",stage=""} 1 +kubernetes_feature_enabled{name="NodeInclusionPolicyInPodTopologySpread",stage="BETA"} 1 +kubernetes_feature_enabled{name="NodeLogQuery",stage="BETA"} 0 +kubernetes_feature_enabled{name="NodeOutOfServiceVolumeDetach",stage=""} 1 +kubernetes_feature_enabled{name="NodeSwap",stage="BETA"} 1 +kubernetes_feature_enabled{name="OpenAPIEnums",stage="BETA"} 1 +kubernetes_feature_enabled{name="PDBUnhealthyPodEvictionPolicy",stage="BETA"} 1 +kubernetes_feature_enabled{name="PersistentVolumeLastPhaseTransitionTime",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodAndContainerStatsFromCRI",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="PodDeletionCost",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodDisruptionConditions",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodHostIPs",stage=""} 1 +kubernetes_feature_enabled{name="PodIndexLabel",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodLifecycleSleepAction",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodReadyToStartContainersCondition",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodSchedulingReadiness",stage=""} 1 +kubernetes_feature_enabled{name="PortForwardWebsockets",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ProcMountType",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="QOSReserved",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ReadWriteOncePod",stage=""} 1 +kubernetes_feature_enabled{name="RecoverVolumeExpansionFailure",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="RecursiveReadOnlyMounts",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="RelaxedEnvironmentVariableValidation",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="RemainingItemCount",stage=""} 1 +kubernetes_feature_enabled{name="RetryGenerateName",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="RotateKubeletServerCertificate",stage="BETA"} 1 +kubernetes_feature_enabled{name="RuntimeClassInImageCriApi",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="SELinuxMount",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="SELinuxMountReadWriteOncePod",stage="BETA"} 1 +kubernetes_feature_enabled{name="SchedulerQueueingHints",stage="BETA"} 0 +kubernetes_feature_enabled{name="SeparateCacheWatchRPC",stage="BETA"} 1 +kubernetes_feature_enabled{name="SeparateTaintEvictionController",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServerSideApply",stage=""} 1 +kubernetes_feature_enabled{name="ServerSideFieldValidation",stage=""} 1 +kubernetes_feature_enabled{name="ServiceAccountTokenJTI",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServiceAccountTokenNodeBinding",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ServiceAccountTokenNodeBindingValidation",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServiceAccountTokenPodNodeInfo",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServiceNodePortStaticSubrange",stage=""} 1 +kubernetes_feature_enabled{name="ServiceTrafficDistribution",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="SidecarContainers",stage="BETA"} 1 +kubernetes_feature_enabled{name="SizeMemoryBackedVolumes",stage="BETA"} 1 +kubernetes_feature_enabled{name="SkipReadOnlyValidationGCE",stage="DEPRECATED"} 1 +kubernetes_feature_enabled{name="StableLoadBalancerNodeSet",stage=""} 1 +kubernetes_feature_enabled{name="StatefulSetAutoDeletePVC",stage="BETA"} 1 +kubernetes_feature_enabled{name="StatefulSetStartOrdinal",stage="BETA"} 1 +kubernetes_feature_enabled{name="StorageNamespaceIndex",stage="BETA"} 1 +kubernetes_feature_enabled{name="StorageVersionAPI",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="StorageVersionHash",stage="BETA"} 1 +kubernetes_feature_enabled{name="StorageVersionMigrator",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="StructuredAuthenticationConfiguration",stage="BETA"} 1 +kubernetes_feature_enabled{name="StructuredAuthorizationConfiguration",stage="BETA"} 1 +kubernetes_feature_enabled{name="TopologyAwareHints",stage="BETA"} 1 +kubernetes_feature_enabled{name="TopologyManagerPolicyAlphaOptions",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="TopologyManagerPolicyBetaOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="TopologyManagerPolicyOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="TranslateStreamCloseWebsocketRequests",stage="BETA"} 1 +kubernetes_feature_enabled{name="UnauthenticatedHTTP2DOSMitigation",stage="BETA"} 1 +kubernetes_feature_enabled{name="UnknownVersionInteroperabilityProxy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="UserNamespacesPodSecurityStandards",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="UserNamespacesSupport",stage="BETA"} 0 +kubernetes_feature_enabled{name="ValidatingAdmissionPolicy",stage=""} 1 +kubernetes_feature_enabled{name="VolumeAttributesClass",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="VolumeCapacityPriority",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="WatchBookmark",stage=""} 1 +kubernetes_feature_enabled{name="WatchFromStorageWithoutResourceVersion",stage="BETA"} 0 +kubernetes_feature_enabled{name="WatchList",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="WatchListClient",stage="BETA"} 0 +kubernetes_feature_enabled{name="WinDSR",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="WinOverlay",stage="BETA"} 1 +kubernetes_feature_enabled{name="WindowsHostNetwork",stage="ALPHA"} 1 +kubernetes_feature_enabled{name="ZeroLimitedNominalConcurrencyShares",stage=""} 1 +# HELP process_cpu_seconds_total Total user and system CPU time spent in seconds. +# TYPE process_cpu_seconds_total counter +process_cpu_seconds_total 0.59 +# HELP process_max_fds Maximum number of open file descriptors. +# TYPE process_max_fds gauge +process_max_fds 1.048576e+06 +# HELP process_open_fds Number of open file descriptors. +# TYPE process_open_fds gauge +process_open_fds 12 +# HELP process_resident_memory_bytes Resident memory size in bytes. +# TYPE process_resident_memory_bytes gauge +process_resident_memory_bytes 5.2031488e+07 +# HELP process_start_time_seconds Start time of the process since unix epoch in seconds. +# TYPE process_start_time_seconds gauge +process_start_time_seconds 1.71404025895e+09 +# HELP process_virtual_memory_bytes Virtual memory size in bytes. +# TYPE process_virtual_memory_bytes gauge +process_virtual_memory_bytes 1.316646912e+09 +# HELP process_virtual_memory_max_bytes Maximum amount of virtual memory available in bytes. +# TYPE process_virtual_memory_max_bytes gauge +process_virtual_memory_max_bytes 1.8446744073709552e+19 +# HELP registered_metrics_total [BETA] The count of registered metrics broken by stability level and deprecation version. +# TYPE registered_metrics_total counter +registered_metrics_total{deprecated_version="",stability_level="ALPHA"} 87 +registered_metrics_total{deprecated_version="",stability_level="BETA"} 4 +registered_metrics_total{deprecated_version="",stability_level="STABLE"} 5 +registered_metrics_total{deprecated_version="1.30.0",stability_level="ALPHA"} 2 +# HELP rest_client_exec_plugin_certificate_rotation_age [ALPHA] Histogram of the number of seconds the last auth exec plugin client certificate lived before being rotated. If auth exec plugin client certificates are unused, histogram will contain no data. +# TYPE rest_client_exec_plugin_certificate_rotation_age histogram +rest_client_exec_plugin_certificate_rotation_age_bucket{le="600"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="1800"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="3600"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="14400"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="86400"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="604800"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="2.592e+06"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="7.776e+06"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="1.5552e+07"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="3.1104e+07"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="1.24416e+08"} 0 +rest_client_exec_plugin_certificate_rotation_age_bucket{le="+Inf"} 0 +rest_client_exec_plugin_certificate_rotation_age_sum 0 +rest_client_exec_plugin_certificate_rotation_age_count 0 +# HELP rest_client_exec_plugin_ttl_seconds [ALPHA] Gauge of the shortest TTL (time-to-live) of the client certificate(s) managed by the auth exec plugin. The value is in seconds until certificate expiry (negative if already expired). If auth exec plugins are unused or manage no TLS certificates, the value will be +INF. +# TYPE rest_client_exec_plugin_ttl_seconds gauge +rest_client_exec_plugin_ttl_seconds +Inf +# HELP rest_client_rate_limiter_duration_seconds [ALPHA] Client side rate limiter latency in seconds. Broken down by verb, and host. +# TYPE rest_client_rate_limiter_duration_seconds histogram +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.005"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.025"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.1"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.25"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.5"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="1"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="2"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="4"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="8"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="15"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="30"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="60"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="+Inf"} 4 +rest_client_rate_limiter_duration_seconds_sum{host="control-plane.minikube.internal:8443",verb="GET"} 0.000274367 +rest_client_rate_limiter_duration_seconds_count{host="control-plane.minikube.internal:8443",verb="GET"} 4 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.005"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.025"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.1"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.25"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.5"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="1"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="2"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="4"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="8"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="15"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="30"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="60"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="+Inf"} 1 +rest_client_rate_limiter_duration_seconds_sum{host="control-plane.minikube.internal:8443",verb="POST"} 2.171e-06 +rest_client_rate_limiter_duration_seconds_count{host="control-plane.minikube.internal:8443",verb="POST"} 1 +# HELP rest_client_request_duration_seconds [ALPHA] Request latency in seconds. Broken down by verb, and host. +# TYPE rest_client_request_duration_seconds histogram +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.005"} 2 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.025"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.1"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.25"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="0.5"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="1"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="2"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="4"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="8"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="15"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="30"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="60"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="+Inf"} 4 +rest_client_request_duration_seconds_sum{host="control-plane.minikube.internal:8443",verb="GET"} 0.024650908 +rest_client_request_duration_seconds_count{host="control-plane.minikube.internal:8443",verb="GET"} 4 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.005"} 0 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.025"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.1"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.25"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="0.5"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="1"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="2"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="4"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="8"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="15"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="30"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="60"} 1 +rest_client_request_duration_seconds_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="+Inf"} 1 +rest_client_request_duration_seconds_sum{host="control-plane.minikube.internal:8443",verb="POST"} 0.008318793 +rest_client_request_duration_seconds_count{host="control-plane.minikube.internal:8443",verb="POST"} 1 +# HELP rest_client_request_size_bytes [ALPHA] Request size in bytes. Broken down by verb and host. +# TYPE rest_client_request_size_bytes histogram +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="64"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="256"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="512"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="1024"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="4096"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="16384"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="65536"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="262144"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="1.048576e+06"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="4.194304e+06"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="1.6777216e+07"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="+Inf"} 4 +rest_client_request_size_bytes_sum{host="control-plane.minikube.internal:8443",verb="GET"} 0 +rest_client_request_size_bytes_count{host="control-plane.minikube.internal:8443",verb="GET"} 4 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="64"} 0 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="256"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="512"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="1024"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="4096"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="16384"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="65536"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="262144"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="1.048576e+06"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="4.194304e+06"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="1.6777216e+07"} 1 +rest_client_request_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="+Inf"} 1 +rest_client_request_size_bytes_sum{host="control-plane.minikube.internal:8443",verb="POST"} 218 +rest_client_request_size_bytes_count{host="control-plane.minikube.internal:8443",verb="POST"} 1 +# HELP rest_client_requests_total [ALPHA] Number of HTTP requests, partitioned by status code, method, and host. +# TYPE rest_client_requests_total counter +rest_client_requests_total{code="200",host="control-plane.minikube.internal:8443",method="GET"} 10 +rest_client_requests_total{code="201",host="control-plane.minikube.internal:8443",method="POST"} 1 +# HELP rest_client_response_size_bytes [ALPHA] Response size in bytes. Broken down by verb and host. +# TYPE rest_client_response_size_bytes histogram +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="64"} 0 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="256"} 0 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="512"} 0 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="1024"} 0 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="4096"} 2 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="16384"} 4 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="65536"} 4 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="262144"} 4 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="1.048576e+06"} 4 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="4.194304e+06"} 4 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="1.6777216e+07"} 4 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="GET",le="+Inf"} 4 +rest_client_response_size_bytes_sum{host="control-plane.minikube.internal:8443",verb="GET"} 13386 +rest_client_response_size_bytes_count{host="control-plane.minikube.internal:8443",verb="GET"} 4 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="64"} 0 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="256"} 0 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="512"} 1 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="1024"} 1 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="4096"} 1 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="16384"} 1 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="65536"} 1 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="262144"} 1 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="1.048576e+06"} 1 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="4.194304e+06"} 1 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="1.6777216e+07"} 1 +rest_client_response_size_bytes_bucket{host="control-plane.minikube.internal:8443",verb="POST",le="+Inf"} 1 +rest_client_response_size_bytes_sum{host="control-plane.minikube.internal:8443",verb="POST"} 465 +rest_client_response_size_bytes_count{host="control-plane.minikube.internal:8443",verb="POST"} 1 +# HELP rest_client_transport_cache_entries [ALPHA] Number of transport entries in the internal cache. +# TYPE rest_client_transport_cache_entries gauge +rest_client_transport_cache_entries 0 +# HELP rest_client_transport_create_calls_total [ALPHA] Number of calls to get a new transport, partitioned by the result of the operation hit: obtained from the cache, miss: created and added to the cache, uncacheable: created and not cached +# TYPE rest_client_transport_create_calls_total counter +rest_client_transport_create_calls_total{result="miss"} 1 \ No newline at end of file diff --git a/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.27.expected b/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.31.expected similarity index 63% rename from metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.27.expected rename to metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.31.expected index 1299d5de0ae..9fc14248760 100644 --- a/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.27.expected +++ b/metricbeat/module/kubernetes/proxy/_meta/test/metrics.1.31.expected @@ -1,4 +1,28 @@ [ + { + "RootFields": {}, + "ModuleFields": null, + "MetricSetFields": { + "client": { + "request": { + "count": 1 + } + }, + "code": "201", + "host": "control-plane.minikube.internal:8443", + "method": "POST" + }, + "Index": "", + "ID": "", + "Namespace": "", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, { "RootFields": {}, "ModuleFields": null, @@ -17,13 +41,13 @@ "250000": 4, "30000000": 4, "4000000": 4, - "5000": 3, + "5000": 2, "500000": 4, "60000000": 4, "8000000": 4 }, "count": 4, - "sum": 16516.280000000002 + "sum": 24650.908 } }, "size": { @@ -65,12 +89,12 @@ "65536": 4 }, "count": 4, - "sum": 11430 + "sum": 13386 } } } }, - "host": "kind-control-plane:6443", + "host": "control-plane.minikube.internal:8443", "verb": "GET" }, "Index": "", @@ -90,11 +114,11 @@ "MetricSetFields": { "client": { "request": { - "count": 13 + "count": 10 } }, "code": "200", - "host": "kind-control-plane:6443", + "host": "control-plane.minikube.internal:8443", "method": "GET" }, "Index": "", @@ -126,14 +150,14 @@ }, "memory": { "resident": { - "bytes": 48123904 + "bytes": 52031488 }, "virtual": { - "bytes": 784257024 + "bytes": 1316646912 } }, "started": { - "sec": 1691572191.41 + "sec": 1714040258.95 } }, "sync": { @@ -141,91 +165,91 @@ "duration": { "us": { "bucket": { - "+Inf": 3, + "+Inf": 1, "0": 0, "1000000": 1, - "10000000": 3, - "100000000": 3, - "105000000": 3, - "11000000": 3, - "110000000": 3, - "115000000": 3, - "12000000": 3, - "120000000": 3, - "13000000": 3, - "14000000": 3, - "15000000": 3, - "150000000": 3, - "16000000": 3, - "17000000": 3, - "18000000": 3, - "180000000": 3, - "19000000": 3, - "2000000": 2, - "20000000": 3, - "21000000": 3, - "210000000": 3, - "22000000": 3, - "23000000": 3, - "24000000": 3, - "240000000": 3, + "10000000": 1, + "100000000": 1, + "105000000": 1, + "11000000": 1, + "110000000": 1, + "115000000": 1, + "12000000": 1, + "120000000": 1, + "13000000": 1, + "14000000": 1, + "15000000": 1, + "150000000": 1, + "16000000": 1, + "17000000": 1, + "18000000": 1, + "180000000": 1, + "19000000": 1, + "2000000": 1, + "20000000": 1, + "21000000": 1, + "210000000": 1, + "22000000": 1, + "23000000": 1, + "24000000": 1, + "240000000": 1, "250000": 0, - "25000000": 3, - "26000000": 3, - "27000000": 3, - "270000000": 3, - "28000000": 3, - "29000000": 3, - "3000000": 3, - "30000000": 3, - "300000000": 3, - "31000000": 3, - "32000000": 3, - "33000000": 3, - "34000000": 3, - "35000000": 3, - "36000000": 3, - "37000000": 3, - "38000000": 3, - "39000000": 3, - "4000000": 3, - "40000000": 3, - "41000000": 3, - "42000000": 3, - "43000000": 3, - "44000000": 3, - "45000000": 3, - "46000000": 3, - "47000000": 3, - "48000000": 3, - "49000000": 3, + "25000000": 1, + "26000000": 1, + "27000000": 1, + "270000000": 1, + "28000000": 1, + "29000000": 1, + "3000000": 1, + "30000000": 1, + "300000000": 1, + "31000000": 1, + "32000000": 1, + "33000000": 1, + "34000000": 1, + "35000000": 1, + "36000000": 1, + "37000000": 1, + "38000000": 1, + "39000000": 1, + "4000000": 1, + "40000000": 1, + "41000000": 1, + "42000000": 1, + "43000000": 1, + "44000000": 1, + "45000000": 1, + "46000000": 1, + "47000000": 1, + "48000000": 1, + "49000000": 1, "500000": 1, - "5000000": 3, - "50000000": 3, - "51000000": 3, - "52000000": 3, - "53000000": 3, - "54000000": 3, - "55000000": 3, - "56000000": 3, - "57000000": 3, - "58000000": 3, - "59000000": 3, - "6000000": 3, - "60000000": 3, - "65000000": 3, - "7000000": 3, - "70000000": 3, - "75000000": 3, - "8000000": 3, - "80000000": 3, - "85000000": 3, - "9000000": 3, - "90000000": 3, - "95000000": 3 + "5000000": 1, + "50000000": 1, + "51000000": 1, + "52000000": 1, + "53000000": 1, + "54000000": 1, + "55000000": 1, + "56000000": 1, + "57000000": 1, + "58000000": 1, + "59000000": 1, + "6000000": 1, + "60000000": 1, + "65000000": 1, + "7000000": 1, + "70000000": 1, + "75000000": 1, + "8000000": 1, + "80000000": 1, + "85000000": 1, + "9000000": 1, + "90000000": 1, + "95000000": 1 }, - "count": 3, - "sum": 4497274.596000001 + "count": 1, + "sum": 454639.35599999997 } } }, @@ -233,25 +257,25 @@ "duration": { "us": { "bucket": { - "+Inf": 5, + "+Inf": 3, "1000": 0, - "1024000": 5, - "128000": 4, - "16000": 2, - "16384000": 5, + "1024000": 3, + "128000": 3, + "16000": 1, + "16384000": 3, "2000": 0, - "2048000": 5, - "256000": 5, - "32000": 3, + "2048000": 3, + "256000": 3, + "32000": 1, "4000": 0, - "4096000": 5, - "512000": 5, - "64000": 3, + "4096000": 3, + "512000": 3, + "64000": 1, "8000": 0, - "8192000": 5 + "8192000": 3 }, - "count": 5, - "sum": 301946.608 + "count": 3, + "sum": 209962.232 } } } @@ -292,7 +316,7 @@ "8000000": 1 }, "count": 1, - "sum": 7487.781 + "sum": 8318.793 } }, "size": { @@ -303,7 +327,7 @@ "1048576": 1, "16384": 1, "16777216": 1, - "256": 0, + "256": 1, "262144": 1, "4096": 1, "4194304": 1, @@ -312,7 +336,7 @@ "65536": 1 }, "count": 1, - "sum": 259 + "sum": 218 } } }, @@ -334,12 +358,12 @@ "65536": 1 }, "count": 1, - "sum": 503 + "sum": 465 } } } }, - "host": "kind-control-plane:6443", + "host": "control-plane.minikube.internal:8443", "verb": "POST" }, "Index": "", @@ -352,29 +376,5 @@ "Took": 0, "Period": 0, "DisableTimeSeries": false - }, - { - "RootFields": {}, - "ModuleFields": null, - "MetricSetFields": { - "client": { - "request": { - "count": 1 - } - }, - "code": "201", - "host": "kind-control-plane:6443", - "method": "POST" - }, - "Index": "", - "ID": "", - "Namespace": "", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false } ] \ No newline at end of file diff --git a/metricbeat/module/kubernetes/proxy/proxy_test.go b/metricbeat/module/kubernetes/proxy/proxy_test.go index 082cb7cebf8..1fdf2a87e96 100644 --- a/metricbeat/module/kubernetes/proxy/proxy_test.go +++ b/metricbeat/module/kubernetes/proxy/proxy_test.go @@ -30,10 +30,10 @@ import ( ) var files = []string{ - "./_meta/test/metrics.1.27", "./_meta/test/metrics.1.28", "./_meta/test/metrics.1.29", "./_meta/test/metrics.1.30", + "./_meta/test/metrics.1.31", } func TestEventMapping(t *testing.T) { diff --git a/metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.27 b/metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.31 similarity index 52% rename from metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.27 rename to metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.31 index a27a0ff92c9..876427f8a29 100644 --- a/metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.27 +++ b/metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.31 @@ -37,7 +37,7 @@ apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="3"} 2 apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="5"} 2 apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="10"} 2 apiserver_delegated_authn_request_duration_seconds_bucket{code="201",le="+Inf"} 2 -apiserver_delegated_authn_request_duration_seconds_sum{code="201"} 0.006375487 +apiserver_delegated_authn_request_duration_seconds_sum{code="201"} 0.0057811600000000005 apiserver_delegated_authn_request_duration_seconds_count{code="201"} 2 # HELP apiserver_delegated_authn_request_total [ALPHA] Number of HTTP requests partitioned by status code. # TYPE apiserver_delegated_authn_request_total counter @@ -53,7 +53,7 @@ apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="3"} 2 apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="5"} 2 apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="10"} 2 apiserver_delegated_authz_request_duration_seconds_bucket{code="201",le="+Inf"} 2 -apiserver_delegated_authz_request_duration_seconds_sum{code="201"} 0.007088867 +apiserver_delegated_authz_request_duration_seconds_sum{code="201"} 0.005424043 apiserver_delegated_authz_request_duration_seconds_count{code="201"} 2 # HELP apiserver_delegated_authz_request_total [ALPHA] Number of HTTP requests partitioned by status code. # TYPE apiserver_delegated_authz_request_total counter @@ -94,53 +94,39 @@ apiserver_webhooks_x509_insecure_sha1_total 0 apiserver_webhooks_x509_missing_san_total 0 # HELP authenticated_user_requests [ALPHA] Counter of authenticated requests broken out by username. # TYPE authenticated_user_requests counter -authenticated_user_requests{username="other"} 121 +authenticated_user_requests{username="other"} 53 # HELP authentication_attempts [ALPHA] Counter of authenticated attempts. # TYPE authentication_attempts counter -authentication_attempts{result="success"} 121 +authentication_attempts{result="success"} 53 # HELP authentication_duration_seconds [ALPHA] Authentication duration in seconds broken out by result. # TYPE authentication_duration_seconds histogram -authentication_duration_seconds_bucket{result="success",le="0.001"} 120 -authentication_duration_seconds_bucket{result="success",le="0.002"} 120 -authentication_duration_seconds_bucket{result="success",le="0.004"} 121 -authentication_duration_seconds_bucket{result="success",le="0.008"} 121 -authentication_duration_seconds_bucket{result="success",le="0.016"} 121 -authentication_duration_seconds_bucket{result="success",le="0.032"} 121 -authentication_duration_seconds_bucket{result="success",le="0.064"} 121 -authentication_duration_seconds_bucket{result="success",le="0.128"} 121 -authentication_duration_seconds_bucket{result="success",le="0.256"} 121 -authentication_duration_seconds_bucket{result="success",le="0.512"} 121 -authentication_duration_seconds_bucket{result="success",le="1.024"} 121 -authentication_duration_seconds_bucket{result="success",le="2.048"} 121 -authentication_duration_seconds_bucket{result="success",le="4.096"} 121 -authentication_duration_seconds_bucket{result="success",le="8.192"} 121 -authentication_duration_seconds_bucket{result="success",le="16.384"} 121 -authentication_duration_seconds_bucket{result="success",le="+Inf"} 121 -authentication_duration_seconds_sum{result="success"} 0.007299385000000001 -authentication_duration_seconds_count{result="success"} 121 -# HELP authentication_token_cache_active_fetch_count [ALPHA] +authentication_duration_seconds_bucket{result="success",le="0.001"} 52 +authentication_duration_seconds_bucket{result="success",le="0.002"} 52 +authentication_duration_seconds_bucket{result="success",le="0.004"} 53 +authentication_duration_seconds_bucket{result="success",le="0.008"} 53 +authentication_duration_seconds_bucket{result="success",le="0.016"} 53 +authentication_duration_seconds_bucket{result="success",le="0.032"} 53 +authentication_duration_seconds_bucket{result="success",le="0.064"} 53 +authentication_duration_seconds_bucket{result="success",le="0.128"} 53 +authentication_duration_seconds_bucket{result="success",le="0.256"} 53 +authentication_duration_seconds_bucket{result="success",le="0.512"} 53 +authentication_duration_seconds_bucket{result="success",le="1.024"} 53 +authentication_duration_seconds_bucket{result="success",le="2.048"} 53 +authentication_duration_seconds_bucket{result="success",le="4.096"} 53 +authentication_duration_seconds_bucket{result="success",le="8.192"} 53 +authentication_duration_seconds_bucket{result="success",le="16.384"} 53 +authentication_duration_seconds_bucket{result="success",le="+Inf"} 53 +authentication_duration_seconds_sum{result="success"} 0.0032351209999999997 +authentication_duration_seconds_count{result="success"} 53 +# HELP authentication_token_cache_active_fetch_count [ALPHA] # TYPE authentication_token_cache_active_fetch_count gauge authentication_token_cache_active_fetch_count{status="blocked"} 0 authentication_token_cache_active_fetch_count{status="in_flight"} 0 -# HELP authentication_token_cache_fetch_total [ALPHA] +# HELP authentication_token_cache_fetch_total [ALPHA] # TYPE authentication_token_cache_fetch_total counter authentication_token_cache_fetch_total{status="ok"} 2 -# HELP authentication_token_cache_request_duration_seconds [ALPHA] +# HELP authentication_token_cache_request_duration_seconds [ALPHA] # TYPE authentication_token_cache_request_duration_seconds histogram -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.005"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.01"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.025"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.05"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.1"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.25"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="0.5"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="1"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="2.5"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="5"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="10"} 1 -authentication_token_cache_request_duration_seconds_bucket{status="hit",le="+Inf"} 1 -authentication_token_cache_request_duration_seconds_sum{status="hit"} 0 -authentication_token_cache_request_duration_seconds_count{status="hit"} 1 authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.005"} 2 authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.01"} 2 authentication_token_cache_request_duration_seconds_bucket{status="miss",le="0.025"} 2 @@ -153,347 +139,511 @@ authentication_token_cache_request_duration_seconds_bucket{status="miss",le="2.5 authentication_token_cache_request_duration_seconds_bucket{status="miss",le="5"} 2 authentication_token_cache_request_duration_seconds_bucket{status="miss",le="10"} 2 authentication_token_cache_request_duration_seconds_bucket{status="miss",le="+Inf"} 2 -authentication_token_cache_request_duration_seconds_sum{status="miss"} 0.006 +authentication_token_cache_request_duration_seconds_sum{status="miss"} 0.005 authentication_token_cache_request_duration_seconds_count{status="miss"} 2 -# HELP authentication_token_cache_request_total [ALPHA] +# HELP authentication_token_cache_request_total [ALPHA] # TYPE authentication_token_cache_request_total counter -authentication_token_cache_request_total{status="hit"} 1 authentication_token_cache_request_total{status="miss"} 2 -# HELP disabled_metric_total [ALPHA] The count of disabled metrics. -# TYPE disabled_metric_total counter -disabled_metric_total 0 +# HELP authorization_attempts_total [ALPHA] Counter of authorization attempts broken down by result. It can be either 'allowed', 'denied', 'no-opinion' or 'error'. +# TYPE authorization_attempts_total counter +authorization_attempts_total{result="allowed"} 53 +# HELP authorization_duration_seconds [ALPHA] Authorization duration in seconds broken out by result. +# TYPE authorization_duration_seconds histogram +authorization_duration_seconds_bucket{result="allowed",le="0.001"} 52 +authorization_duration_seconds_bucket{result="allowed",le="0.002"} 52 +authorization_duration_seconds_bucket{result="allowed",le="0.004"} 53 +authorization_duration_seconds_bucket{result="allowed",le="0.008"} 53 +authorization_duration_seconds_bucket{result="allowed",le="0.016"} 53 +authorization_duration_seconds_bucket{result="allowed",le="0.032"} 53 +authorization_duration_seconds_bucket{result="allowed",le="0.064"} 53 +authorization_duration_seconds_bucket{result="allowed",le="0.128"} 53 +authorization_duration_seconds_bucket{result="allowed",le="0.256"} 53 +authorization_duration_seconds_bucket{result="allowed",le="0.512"} 53 +authorization_duration_seconds_bucket{result="allowed",le="1.024"} 53 +authorization_duration_seconds_bucket{result="allowed",le="2.048"} 53 +authorization_duration_seconds_bucket{result="allowed",le="4.096"} 53 +authorization_duration_seconds_bucket{result="allowed",le="8.192"} 53 +authorization_duration_seconds_bucket{result="allowed",le="16.384"} 53 +authorization_duration_seconds_bucket{result="allowed",le="+Inf"} 53 +authorization_duration_seconds_sum{result="allowed"} 0.002906287 +authorization_duration_seconds_count{result="allowed"} 53 +# HELP cardinality_enforcement_unexpected_categorizations_total [ALPHA] The count of unexpected categorizations during cardinality enforcement. +# TYPE cardinality_enforcement_unexpected_categorizations_total counter +cardinality_enforcement_unexpected_categorizations_total 0 +# HELP disabled_metrics_total [BETA] The count of disabled metrics. +# TYPE disabled_metrics_total counter +disabled_metrics_total 0 # HELP go_cgo_go_to_c_calls_calls_total Count of calls made from Go to C by the current process. # TYPE go_cgo_go_to_c_calls_calls_total counter go_cgo_go_to_c_calls_calls_total 0 # HELP go_cpu_classes_gc_mark_assist_cpu_seconds_total Estimated total CPU time goroutines spent performing GC tasks to assist the GC and prevent it from falling behind the application. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_gc_mark_assist_cpu_seconds_total counter -go_cpu_classes_gc_mark_assist_cpu_seconds_total 0.008079706 -# HELP go_cpu_classes_gc_mark_dedicated_cpu_seconds_total Estimated total CPU time spent performing GC tasks on processors (as defined by GOMAXPROCS) dedicated to those tasks. This includes time spent with the world stopped due to the GC. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +go_cpu_classes_gc_mark_assist_cpu_seconds_total 0.003560223 +# HELP go_cpu_classes_gc_mark_dedicated_cpu_seconds_total Estimated total CPU time spent performing GC tasks on processors (as defined by GOMAXPROCS) dedicated to those tasks. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_gc_mark_dedicated_cpu_seconds_total counter -go_cpu_classes_gc_mark_dedicated_cpu_seconds_total 0.086176314 +go_cpu_classes_gc_mark_dedicated_cpu_seconds_total 0.052338014 # HELP go_cpu_classes_gc_mark_idle_cpu_seconds_total Estimated total CPU time spent performing GC tasks on spare CPU resources that the Go scheduler could not otherwise find a use for. This should be subtracted from the total GC CPU time to obtain a measure of compulsory GC CPU time. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_gc_mark_idle_cpu_seconds_total counter -go_cpu_classes_gc_mark_idle_cpu_seconds_total 0.019868985 -# HELP go_cpu_classes_gc_pause_cpu_seconds_total Estimated total CPU time spent with the application paused by the GC. Even if only one thread is running during the pause, this is computed as GOMAXPROCS times the pause latency because nothing else can be executing. This is the exact sum of samples in /gc/pause:seconds if each sample is multiplied by GOMAXPROCS at the time it is taken. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. +go_cpu_classes_gc_mark_idle_cpu_seconds_total 0.010331886 +# HELP go_cpu_classes_gc_pause_cpu_seconds_total Estimated total CPU time spent with the application paused by the GC. Even if only one thread is running during the pause, this is computed as GOMAXPROCS times the pause latency because nothing else can be executing. This is the exact sum of samples in /sched/pauses/total/gc:seconds if each sample is multiplied by GOMAXPROCS at the time it is taken. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_gc_pause_cpu_seconds_total counter -go_cpu_classes_gc_pause_cpu_seconds_total 0.024395008 +go_cpu_classes_gc_pause_cpu_seconds_total 0.97803108 # HELP go_cpu_classes_gc_total_cpu_seconds_total Estimated total CPU time spent performing GC tasks. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes/gc. # TYPE go_cpu_classes_gc_total_cpu_seconds_total counter -go_cpu_classes_gc_total_cpu_seconds_total 0.138520013 +go_cpu_classes_gc_total_cpu_seconds_total 1.044261203 # HELP go_cpu_classes_idle_cpu_seconds_total Estimated total available CPU time not spent executing any Go or Go runtime code. In other words, the part of /cpu/classes/total:cpu-seconds that was unused. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_idle_cpu_seconds_total counter -go_cpu_classes_idle_cpu_seconds_total 7713.429833094 +go_cpu_classes_idle_cpu_seconds_total 5820.052802986 # HELP go_cpu_classes_scavenge_assist_cpu_seconds_total Estimated total CPU time spent returning unused memory to the underlying platform in response eagerly in response to memory pressure. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_scavenge_assist_cpu_seconds_total counter -go_cpu_classes_scavenge_assist_cpu_seconds_total 4.43e-07 +go_cpu_classes_scavenge_assist_cpu_seconds_total 2.22e-07 # HELP go_cpu_classes_scavenge_background_cpu_seconds_total Estimated total CPU time spent performing background tasks to return unused memory to the underlying platform. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_scavenge_background_cpu_seconds_total counter -go_cpu_classes_scavenge_background_cpu_seconds_total 0.001458433 +go_cpu_classes_scavenge_background_cpu_seconds_total 0.000635705 # HELP go_cpu_classes_scavenge_total_cpu_seconds_total Estimated total CPU time spent performing tasks that return unused memory to the underlying platform. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes/scavenge. # TYPE go_cpu_classes_scavenge_total_cpu_seconds_total counter -go_cpu_classes_scavenge_total_cpu_seconds_total 0.001458876 +go_cpu_classes_scavenge_total_cpu_seconds_total 0.000635927 # HELP go_cpu_classes_total_cpu_seconds_total Estimated total available CPU time for user Go code or the Go runtime, as defined by GOMAXPROCS. In other words, GOMAXPROCS integrated over the wall-clock duration this process has been executing for. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. Sum of all metrics in /cpu/classes. # TYPE go_cpu_classes_total_cpu_seconds_total counter -go_cpu_classes_total_cpu_seconds_total 8817.213977184 +go_cpu_classes_total_cpu_seconds_total 5826.23507028 # HELP go_cpu_classes_user_cpu_seconds_total Estimated total CPU time spent running user Go code. This may also include some small amount of time spent in the Go runtime. This metric is an overestimate, and not directly comparable to system CPU time measurements. Compare only with other /cpu/classes metrics. # TYPE go_cpu_classes_user_cpu_seconds_total counter -go_cpu_classes_user_cpu_seconds_total 1103.644165201 +go_cpu_classes_user_cpu_seconds_total 5.137370164 # HELP go_gc_cycles_automatic_gc_cycles_total Count of completed GC cycles generated by the Go runtime. # TYPE go_gc_cycles_automatic_gc_cycles_total counter -go_gc_cycles_automatic_gc_cycles_total 20 +go_gc_cycles_automatic_gc_cycles_total 12 # HELP go_gc_cycles_forced_gc_cycles_total Count of completed GC cycles forced by the application. # TYPE go_gc_cycles_forced_gc_cycles_total counter go_gc_cycles_forced_gc_cycles_total 0 # HELP go_gc_cycles_total_gc_cycles_total Count of all completed GC cycles. # TYPE go_gc_cycles_total_gc_cycles_total counter -go_gc_cycles_total_gc_cycles_total 20 +go_gc_cycles_total_gc_cycles_total 12 # HELP go_gc_duration_seconds A summary of the pause duration of garbage collection cycles. # TYPE go_gc_duration_seconds summary -go_gc_duration_seconds{quantile="0"} 4.8356e-05 -go_gc_duration_seconds{quantile="0.25"} 8.5317e-05 -go_gc_duration_seconds{quantile="0.5"} 0.000127535 -go_gc_duration_seconds{quantile="0.75"} 0.000222715 -go_gc_duration_seconds{quantile="1"} 0.000325782 -go_gc_duration_seconds_sum 0.003049376 -go_gc_duration_seconds_count 20 -# HELP go_gc_heap_allocs_by_size_bytes Distribution of heap allocations by approximate size. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. +go_gc_duration_seconds{quantile="0"} 6.1691e-05 +go_gc_duration_seconds{quantile="0.25"} 0.000187722 +go_gc_duration_seconds{quantile="0.5"} 0.000220963 +go_gc_duration_seconds{quantile="0.75"} 0.000594416 +go_gc_duration_seconds{quantile="1"} 0.078428376 +go_gc_duration_seconds_sum 0.081495357 +go_gc_duration_seconds_count 12 +# HELP go_gc_gogc_percent Heap size target percentage configured by the user, otherwise 100. This value is set by the GOGC environment variable, and the runtime/debug.SetGCPercent function. +# TYPE go_gc_gogc_percent gauge +go_gc_gogc_percent 100 +# HELP go_gc_gomemlimit_bytes Go runtime memory limit configured by the user, otherwise math.MaxInt64. This value is set by the GOMEMLIMIT environment variable, and the runtime/debug.SetMemoryLimit function. +# TYPE go_gc_gomemlimit_bytes gauge +go_gc_gomemlimit_bytes 9.223372036854776e+18 +# HELP go_gc_heap_allocs_by_size_bytes Distribution of heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. # TYPE go_gc_heap_allocs_by_size_bytes histogram -go_gc_heap_allocs_by_size_bytes_bucket{le="8.999999999999998"} 8495 -go_gc_heap_allocs_by_size_bytes_bucket{le="24.999999999999996"} 191251 -go_gc_heap_allocs_by_size_bytes_bucket{le="64.99999999999999"} 358479 -go_gc_heap_allocs_by_size_bytes_bucket{le="144.99999999999997"} 492192 -go_gc_heap_allocs_by_size_bytes_bucket{le="320.99999999999994"} 563573 -go_gc_heap_allocs_by_size_bytes_bucket{le="704.9999999999999"} 577807 -go_gc_heap_allocs_by_size_bytes_bucket{le="1536.9999999999998"} 580583 -go_gc_heap_allocs_by_size_bytes_bucket{le="3200.9999999999995"} 581466 -go_gc_heap_allocs_by_size_bytes_bucket{le="6528.999999999999"} 583279 -go_gc_heap_allocs_by_size_bytes_bucket{le="13568.999999999998"} 583421 -go_gc_heap_allocs_by_size_bytes_bucket{le="27264.999999999996"} 583478 -go_gc_heap_allocs_by_size_bytes_bucket{le="+Inf"} 583536 -go_gc_heap_allocs_by_size_bytes_sum 6.8647168e+07 -go_gc_heap_allocs_by_size_bytes_count 583536 +go_gc_heap_allocs_by_size_bytes_bucket{le="8.999999999999998"} 7289 +go_gc_heap_allocs_by_size_bytes_bucket{le="24.999999999999996"} 64229 +go_gc_heap_allocs_by_size_bytes_bucket{le="64.99999999999999"} 111370 +go_gc_heap_allocs_by_size_bytes_bucket{le="144.99999999999997"} 147275 +go_gc_heap_allocs_by_size_bytes_bucket{le="320.99999999999994"} 178995 +go_gc_heap_allocs_by_size_bytes_bucket{le="704.9999999999999"} 182683 +go_gc_heap_allocs_by_size_bytes_bucket{le="1536.9999999999998"} 183921 +go_gc_heap_allocs_by_size_bytes_bucket{le="3200.9999999999995"} 184675 +go_gc_heap_allocs_by_size_bytes_bucket{le="6528.999999999999"} 185669 +go_gc_heap_allocs_by_size_bytes_bucket{le="13568.999999999998"} 185824 +go_gc_heap_allocs_by_size_bytes_bucket{le="27264.999999999996"} 185879 +go_gc_heap_allocs_by_size_bytes_bucket{le="+Inf"} 185928 +go_gc_heap_allocs_by_size_bytes_sum 2.9935952e+07 +go_gc_heap_allocs_by_size_bytes_count 185928 # HELP go_gc_heap_allocs_bytes_total Cumulative sum of memory allocated to the heap by the application. # TYPE go_gc_heap_allocs_bytes_total counter -go_gc_heap_allocs_bytes_total 6.8647168e+07 +go_gc_heap_allocs_bytes_total 2.9935952e+07 # HELP go_gc_heap_allocs_objects_total Cumulative count of heap allocations triggered by the application. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. # TYPE go_gc_heap_allocs_objects_total counter -go_gc_heap_allocs_objects_total 583536 -# HELP go_gc_heap_frees_by_size_bytes Distribution of freed heap allocations by approximate size. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. +go_gc_heap_allocs_objects_total 185928 +# HELP go_gc_heap_frees_by_size_bytes Distribution of freed heap allocations by approximate size. Bucket counts increase monotonically. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. # TYPE go_gc_heap_frees_by_size_bytes histogram -go_gc_heap_frees_by_size_bytes_bucket{le="8.999999999999998"} 5837 -go_gc_heap_frees_by_size_bytes_bucket{le="24.999999999999996"} 163562 -go_gc_heap_frees_by_size_bytes_bucket{le="64.99999999999999"} 308952 -go_gc_heap_frees_by_size_bytes_bucket{le="144.99999999999997"} 429271 -go_gc_heap_frees_by_size_bytes_bucket{le="320.99999999999994"} 496853 -go_gc_heap_frees_by_size_bytes_bucket{le="704.9999999999999"} 509217 -go_gc_heap_frees_by_size_bytes_bucket{le="1536.9999999999998"} 511566 -go_gc_heap_frees_by_size_bytes_bucket{le="3200.9999999999995"} 512219 -go_gc_heap_frees_by_size_bytes_bucket{le="6528.999999999999"} 513926 -go_gc_heap_frees_by_size_bytes_bucket{le="13568.999999999998"} 514008 -go_gc_heap_frees_by_size_bytes_bucket{le="27264.999999999996"} 514024 -go_gc_heap_frees_by_size_bytes_bucket{le="+Inf"} 514066 -go_gc_heap_frees_by_size_bytes_sum 5.9847008e+07 -go_gc_heap_frees_by_size_bytes_count 514066 +go_gc_heap_frees_by_size_bytes_bucket{le="8.999999999999998"} 4379 +go_gc_heap_frees_by_size_bytes_bucket{le="24.999999999999996"} 47313 +go_gc_heap_frees_by_size_bytes_bucket{le="64.99999999999999"} 83049 +go_gc_heap_frees_by_size_bytes_bucket{le="144.99999999999997"} 112937 +go_gc_heap_frees_by_size_bytes_bucket{le="320.99999999999994"} 141367 +go_gc_heap_frees_by_size_bytes_bucket{le="704.9999999999999"} 143890 +go_gc_heap_frees_by_size_bytes_bucket{le="1536.9999999999998"} 144768 +go_gc_heap_frees_by_size_bytes_bucket{le="3200.9999999999995"} 145275 +go_gc_heap_frees_by_size_bytes_bucket{le="6528.999999999999"} 146152 +go_gc_heap_frees_by_size_bytes_bucket{le="13568.999999999998"} 146232 +go_gc_heap_frees_by_size_bytes_bucket{le="27264.999999999996"} 146250 +go_gc_heap_frees_by_size_bytes_bucket{le="+Inf"} 146284 +go_gc_heap_frees_by_size_bytes_sum 2.29784e+07 +go_gc_heap_frees_by_size_bytes_count 146284 # HELP go_gc_heap_frees_bytes_total Cumulative sum of heap memory freed by the garbage collector. # TYPE go_gc_heap_frees_bytes_total counter -go_gc_heap_frees_bytes_total 5.9847008e+07 +go_gc_heap_frees_bytes_total 2.29784e+07 # HELP go_gc_heap_frees_objects_total Cumulative count of heap allocations whose storage was freed by the garbage collector. Note that this does not include tiny objects as defined by /gc/heap/tiny/allocs:objects, only tiny blocks. # TYPE go_gc_heap_frees_objects_total counter -go_gc_heap_frees_objects_total 514066 +go_gc_heap_frees_objects_total 146284 # HELP go_gc_heap_goal_bytes Heap size target for the end of the GC cycle. # TYPE go_gc_heap_goal_bytes gauge -go_gc_heap_goal_bytes 1.2893368e+07 +go_gc_heap_goal_bytes 1.455508e+07 +# HELP go_gc_heap_live_bytes Heap memory occupied by live objects that were marked by the previous GC. +# TYPE go_gc_heap_live_bytes gauge +go_gc_heap_live_bytes 6.822432e+06 # HELP go_gc_heap_objects_objects Number of objects, live or unswept, occupying heap memory. # TYPE go_gc_heap_objects_objects gauge -go_gc_heap_objects_objects 69470 +go_gc_heap_objects_objects 39644 # HELP go_gc_heap_tiny_allocs_objects_total Count of small allocations that are packed together into blocks. These allocations are counted separately from other allocations because each individual allocation is not tracked by the runtime, only their block. Each block is already accounted for in allocs-by-size and frees-by-size. # TYPE go_gc_heap_tiny_allocs_objects_total counter -go_gc_heap_tiny_allocs_objects_total 53436 +go_gc_heap_tiny_allocs_objects_total 17107 # HELP go_gc_limiter_last_enabled_gc_cycle GC cycle the last time the GC CPU limiter was enabled. This metric is useful for diagnosing the root cause of an out-of-memory error, because the limiter trades memory for CPU time when the GC's CPU time gets too high. This is most likely to occur with use of SetMemoryLimit. The first GC cycle is cycle 1, so a value of 0 indicates that it was never enabled. # TYPE go_gc_limiter_last_enabled_gc_cycle gauge go_gc_limiter_last_enabled_gc_cycle 0 -# HELP go_gc_pauses_seconds Distribution individual GC-related stop-the-world pause latencies. +# HELP go_gc_pauses_seconds Deprecated. Prefer the identical /sched/pauses/total/gc:seconds. # TYPE go_gc_pauses_seconds histogram go_gc_pauses_seconds_bucket{le="6.399999999999999e-08"} 0 go_gc_pauses_seconds_bucket{le="6.399999999999999e-07"} 0 -go_gc_pauses_seconds_bucket{le="7.167999999999999e-06"} 7 -go_gc_pauses_seconds_bucket{le="8.191999999999999e-05"} 29 -go_gc_pauses_seconds_bucket{le="0.0009175039999999999"} 40 -go_gc_pauses_seconds_bucket{le="0.010485759999999998"} 40 -go_gc_pauses_seconds_bucket{le="0.11744051199999998"} 40 -go_gc_pauses_seconds_bucket{le="+Inf"} 40 -go_gc_pauses_seconds_sum 0.001063296 -go_gc_pauses_seconds_count 40 +go_gc_pauses_seconds_bucket{le="7.167999999999999e-06"} 4 +go_gc_pauses_seconds_bucket{le="8.191999999999999e-05"} 13 +go_gc_pauses_seconds_bucket{le="0.0009175039999999999"} 23 +go_gc_pauses_seconds_bucket{le="0.010485759999999998"} 23 +go_gc_pauses_seconds_bucket{le="0.11744051199999998"} 24 +go_gc_pauses_seconds_bucket{le="+Inf"} 24 +go_gc_pauses_seconds_sum 0.011372032 +go_gc_pauses_seconds_count 24 +# HELP go_gc_scan_globals_bytes The total amount of global variable space that is scannable. +# TYPE go_gc_scan_globals_bytes gauge +go_gc_scan_globals_bytes 750720 +# HELP go_gc_scan_heap_bytes The total amount of heap space that is scannable. +# TYPE go_gc_scan_heap_bytes gauge +go_gc_scan_heap_bytes 5.318056e+06 +# HELP go_gc_scan_stack_bytes The number of bytes of stack that were scanned last GC cycle. +# TYPE go_gc_scan_stack_bytes gauge +go_gc_scan_stack_bytes 159496 +# HELP go_gc_scan_total_bytes The total amount space that is scannable. Sum of all metrics in /gc/scan. +# TYPE go_gc_scan_total_bytes gauge +go_gc_scan_total_bytes 6.228272e+06 # HELP go_gc_stack_starting_size_bytes The stack size of new goroutines. # TYPE go_gc_stack_starting_size_bytes gauge go_gc_stack_starting_size_bytes 2048 +# HELP go_godebug_non_default_behavior_execerrdot_events_total The number of non-default behaviors executed by the os/exec package due to a non-default GODEBUG=execerrdot=... setting. +# TYPE go_godebug_non_default_behavior_execerrdot_events_total counter +go_godebug_non_default_behavior_execerrdot_events_total 0 +# HELP go_godebug_non_default_behavior_gocachehash_events_total The number of non-default behaviors executed by the cmd/go package due to a non-default GODEBUG=gocachehash=... setting. +# TYPE go_godebug_non_default_behavior_gocachehash_events_total counter +go_godebug_non_default_behavior_gocachehash_events_total 0 +# HELP go_godebug_non_default_behavior_gocachetest_events_total The number of non-default behaviors executed by the cmd/go package due to a non-default GODEBUG=gocachetest=... setting. +# TYPE go_godebug_non_default_behavior_gocachetest_events_total counter +go_godebug_non_default_behavior_gocachetest_events_total 0 +# HELP go_godebug_non_default_behavior_gocacheverify_events_total The number of non-default behaviors executed by the cmd/go package due to a non-default GODEBUG=gocacheverify=... setting. +# TYPE go_godebug_non_default_behavior_gocacheverify_events_total counter +go_godebug_non_default_behavior_gocacheverify_events_total 0 +# HELP go_godebug_non_default_behavior_gotypesalias_events_total The number of non-default behaviors executed by the go/types package due to a non-default GODEBUG=gotypesalias=... setting. +# TYPE go_godebug_non_default_behavior_gotypesalias_events_total counter +go_godebug_non_default_behavior_gotypesalias_events_total 0 +# HELP go_godebug_non_default_behavior_http2client_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=http2client=... setting. +# TYPE go_godebug_non_default_behavior_http2client_events_total counter +go_godebug_non_default_behavior_http2client_events_total 0 +# HELP go_godebug_non_default_behavior_http2server_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=http2server=... setting. +# TYPE go_godebug_non_default_behavior_http2server_events_total counter +go_godebug_non_default_behavior_http2server_events_total 0 +# HELP go_godebug_non_default_behavior_httplaxcontentlength_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=httplaxcontentlength=... setting. +# TYPE go_godebug_non_default_behavior_httplaxcontentlength_events_total counter +go_godebug_non_default_behavior_httplaxcontentlength_events_total 0 +# HELP go_godebug_non_default_behavior_httpmuxgo121_events_total The number of non-default behaviors executed by the net/http package due to a non-default GODEBUG=httpmuxgo121=... setting. +# TYPE go_godebug_non_default_behavior_httpmuxgo121_events_total counter +go_godebug_non_default_behavior_httpmuxgo121_events_total 0 +# HELP go_godebug_non_default_behavior_installgoroot_events_total The number of non-default behaviors executed by the go/build package due to a non-default GODEBUG=installgoroot=... setting. +# TYPE go_godebug_non_default_behavior_installgoroot_events_total counter +go_godebug_non_default_behavior_installgoroot_events_total 0 +# HELP go_godebug_non_default_behavior_jstmpllitinterp_events_total The number of non-default behaviors executed by the html/template package due to a non-default GODEBUG=jstmpllitinterp=... setting. +# TYPE go_godebug_non_default_behavior_jstmpllitinterp_events_total counter +go_godebug_non_default_behavior_jstmpllitinterp_events_total 0 +# HELP go_godebug_non_default_behavior_multipartmaxheaders_events_total The number of non-default behaviors executed by the mime/multipart package due to a non-default GODEBUG=multipartmaxheaders=... setting. +# TYPE go_godebug_non_default_behavior_multipartmaxheaders_events_total counter +go_godebug_non_default_behavior_multipartmaxheaders_events_total 0 +# HELP go_godebug_non_default_behavior_multipartmaxparts_events_total The number of non-default behaviors executed by the mime/multipart package due to a non-default GODEBUG=multipartmaxparts=... setting. +# TYPE go_godebug_non_default_behavior_multipartmaxparts_events_total counter +go_godebug_non_default_behavior_multipartmaxparts_events_total 0 +# HELP go_godebug_non_default_behavior_multipathtcp_events_total The number of non-default behaviors executed by the net package due to a non-default GODEBUG=multipathtcp=... setting. +# TYPE go_godebug_non_default_behavior_multipathtcp_events_total counter +go_godebug_non_default_behavior_multipathtcp_events_total 0 +# HELP go_godebug_non_default_behavior_panicnil_events_total The number of non-default behaviors executed by the runtime package due to a non-default GODEBUG=panicnil=... setting. +# TYPE go_godebug_non_default_behavior_panicnil_events_total counter +go_godebug_non_default_behavior_panicnil_events_total 0 +# HELP go_godebug_non_default_behavior_randautoseed_events_total The number of non-default behaviors executed by the math/rand package due to a non-default GODEBUG=randautoseed=... setting. +# TYPE go_godebug_non_default_behavior_randautoseed_events_total counter +go_godebug_non_default_behavior_randautoseed_events_total 0 +# HELP go_godebug_non_default_behavior_tarinsecurepath_events_total The number of non-default behaviors executed by the archive/tar package due to a non-default GODEBUG=tarinsecurepath=... setting. +# TYPE go_godebug_non_default_behavior_tarinsecurepath_events_total counter +go_godebug_non_default_behavior_tarinsecurepath_events_total 0 +# HELP go_godebug_non_default_behavior_tls10server_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tls10server=... setting. +# TYPE go_godebug_non_default_behavior_tls10server_events_total counter +go_godebug_non_default_behavior_tls10server_events_total 0 +# HELP go_godebug_non_default_behavior_tlsmaxrsasize_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tlsmaxrsasize=... setting. +# TYPE go_godebug_non_default_behavior_tlsmaxrsasize_events_total counter +go_godebug_non_default_behavior_tlsmaxrsasize_events_total 0 +# HELP go_godebug_non_default_behavior_tlsrsakex_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tlsrsakex=... setting. +# TYPE go_godebug_non_default_behavior_tlsrsakex_events_total counter +go_godebug_non_default_behavior_tlsrsakex_events_total 0 +# HELP go_godebug_non_default_behavior_tlsunsafeekm_events_total The number of non-default behaviors executed by the crypto/tls package due to a non-default GODEBUG=tlsunsafeekm=... setting. +# TYPE go_godebug_non_default_behavior_tlsunsafeekm_events_total counter +go_godebug_non_default_behavior_tlsunsafeekm_events_total 0 +# HELP go_godebug_non_default_behavior_x509sha1_events_total The number of non-default behaviors executed by the crypto/x509 package due to a non-default GODEBUG=x509sha1=... setting. +# TYPE go_godebug_non_default_behavior_x509sha1_events_total counter +go_godebug_non_default_behavior_x509sha1_events_total 0 +# HELP go_godebug_non_default_behavior_x509usefallbackroots_events_total The number of non-default behaviors executed by the crypto/x509 package due to a non-default GODEBUG=x509usefallbackroots=... setting. +# TYPE go_godebug_non_default_behavior_x509usefallbackroots_events_total counter +go_godebug_non_default_behavior_x509usefallbackroots_events_total 0 +# HELP go_godebug_non_default_behavior_x509usepolicies_events_total The number of non-default behaviors executed by the crypto/x509 package due to a non-default GODEBUG=x509usepolicies=... setting. +# TYPE go_godebug_non_default_behavior_x509usepolicies_events_total counter +go_godebug_non_default_behavior_x509usepolicies_events_total 0 +# HELP go_godebug_non_default_behavior_zipinsecurepath_events_total The number of non-default behaviors executed by the archive/zip package due to a non-default GODEBUG=zipinsecurepath=... setting. +# TYPE go_godebug_non_default_behavior_zipinsecurepath_events_total counter +go_godebug_non_default_behavior_zipinsecurepath_events_total 0 # HELP go_goroutines Number of goroutines that currently exist. # TYPE go_goroutines gauge go_goroutines 172 # HELP go_info Information about the Go environment. # TYPE go_info gauge -go_info{version="go1.20.3"} 1 +go_info{version="go1.22.2"} 1 # HELP go_memory_classes_heap_free_bytes Memory that is completely free and eligible to be returned to the underlying system, but has not been. This metric is the runtime's estimate of free address space that is backed by physical memory. # TYPE go_memory_classes_heap_free_bytes gauge -go_memory_classes_heap_free_bytes 655360 +go_memory_classes_heap_free_bytes 1.048576e+06 # HELP go_memory_classes_heap_objects_bytes Memory occupied by live objects and dead objects that have not yet been marked free by the garbage collector. # TYPE go_memory_classes_heap_objects_bytes gauge -go_memory_classes_heap_objects_bytes 8.80016e+06 +go_memory_classes_heap_objects_bytes 6.957552e+06 # HELP go_memory_classes_heap_released_bytes Memory that is completely free and has been returned to the underlying system. This metric is the runtime's estimate of free address space that is still mapped into the process, but is not backed by physical memory. # TYPE go_memory_classes_heap_released_bytes gauge -go_memory_classes_heap_released_bytes 5.914624e+06 -# HELP go_memory_classes_heap_stacks_bytes Memory allocated from the heap that is reserved for stack space, whether or not it is currently in-use. +go_memory_classes_heap_released_bytes 2.768896e+06 +# HELP go_memory_classes_heap_stacks_bytes Memory allocated from the heap that is reserved for stack space, whether or not it is currently in-use. Currently, this represents all stack memory for goroutines. It also includes all OS thread stacks in non-cgo programs. Note that stacks may be allocated differently in the future, and this may change. # TYPE go_memory_classes_heap_stacks_bytes gauge -go_memory_classes_heap_stacks_bytes 1.6384e+06 +go_memory_classes_heap_stacks_bytes 1.769472e+06 # HELP go_memory_classes_heap_unused_bytes Memory that is reserved for heap objects but is not currently used to hold heap objects. # TYPE go_memory_classes_heap_unused_bytes gauge -go_memory_classes_heap_unused_bytes 3.962976e+06 +go_memory_classes_heap_unused_bytes 4.23272e+06 # HELP go_memory_classes_metadata_mcache_free_bytes Memory that is reserved for runtime mcache structures, but not in-use. # TYPE go_memory_classes_metadata_mcache_free_bytes gauge -go_memory_classes_metadata_mcache_free_bytes 6000 +go_memory_classes_metadata_mcache_free_bytes 1200 # HELP go_memory_classes_metadata_mcache_inuse_bytes Memory that is occupied by runtime mcache structures that are currently being used. # TYPE go_memory_classes_metadata_mcache_inuse_bytes gauge -go_memory_classes_metadata_mcache_inuse_bytes 9600 +go_memory_classes_metadata_mcache_inuse_bytes 14400 # HELP go_memory_classes_metadata_mspan_free_bytes Memory that is reserved for runtime mspan structures, but not in-use. # TYPE go_memory_classes_metadata_mspan_free_bytes gauge -go_memory_classes_metadata_mspan_free_bytes 8640 +go_memory_classes_metadata_mspan_free_bytes 19680 # HELP go_memory_classes_metadata_mspan_inuse_bytes Memory that is occupied by runtime mspan structures that are currently being used. # TYPE go_memory_classes_metadata_mspan_inuse_bytes gauge -go_memory_classes_metadata_mspan_inuse_bytes 268800 +go_memory_classes_metadata_mspan_inuse_bytes 241440 # HELP go_memory_classes_metadata_other_bytes Memory that is reserved for or used to hold runtime metadata. # TYPE go_memory_classes_metadata_other_bytes gauge -go_memory_classes_metadata_other_bytes 8.957288e+06 -# HELP go_memory_classes_os_stacks_bytes Stack memory allocated by the underlying operating system. +go_memory_classes_metadata_other_bytes 3.624128e+06 +# HELP go_memory_classes_os_stacks_bytes Stack memory allocated by the underlying operating system. In non-cgo programs this metric is currently zero. This may change in the future.In cgo programs this metric includes OS thread stacks allocated directly from the OS. Currently, this only accounts for one stack in c-shared and c-archive build modes, and other sources of stacks from the OS are not measured. This too may change in the future. # TYPE go_memory_classes_os_stacks_bytes gauge go_memory_classes_os_stacks_bytes 0 # HELP go_memory_classes_other_bytes Memory used by execution trace buffers, structures for debugging the runtime, finalizer and profiler specials, and more. # TYPE go_memory_classes_other_bytes gauge -go_memory_classes_other_bytes 1.433287e+06 +go_memory_classes_other_bytes 2.560267e+06 # HELP go_memory_classes_profiling_buckets_bytes Memory that is used by the stack trace hash map used for profiling. # TYPE go_memory_classes_profiling_buckets_bytes gauge -go_memory_classes_profiling_buckets_bytes 1.503273e+06 +go_memory_classes_profiling_buckets_bytes 1.490509e+06 # HELP go_memory_classes_total_bytes All memory mapped by the Go runtime into the current process as read-write. Note that this does not include memory mapped by code called via cgo or via the syscall package. Sum of all metrics in /memory/classes. # TYPE go_memory_classes_total_bytes gauge -go_memory_classes_total_bytes 3.3158408e+07 +go_memory_classes_total_bytes 2.472884e+07 # HELP go_memstats_alloc_bytes Number of bytes allocated and still in use. # TYPE go_memstats_alloc_bytes gauge -go_memstats_alloc_bytes 8.80016e+06 +go_memstats_alloc_bytes 6.957552e+06 # HELP go_memstats_alloc_bytes_total Total number of bytes allocated, even if freed. # TYPE go_memstats_alloc_bytes_total counter -go_memstats_alloc_bytes_total 6.8647168e+07 +go_memstats_alloc_bytes_total 2.9935952e+07 # HELP go_memstats_buck_hash_sys_bytes Number of bytes used by the profiling bucket hash table. # TYPE go_memstats_buck_hash_sys_bytes gauge -go_memstats_buck_hash_sys_bytes 1.503273e+06 +go_memstats_buck_hash_sys_bytes 1.490509e+06 # HELP go_memstats_frees_total Total number of frees. # TYPE go_memstats_frees_total counter -go_memstats_frees_total 567502 +go_memstats_frees_total 163391 # HELP go_memstats_gc_sys_bytes Number of bytes used for garbage collection system metadata. # TYPE go_memstats_gc_sys_bytes gauge -go_memstats_gc_sys_bytes 8.957288e+06 +go_memstats_gc_sys_bytes 3.624128e+06 # HELP go_memstats_heap_alloc_bytes Number of heap bytes allocated and still in use. # TYPE go_memstats_heap_alloc_bytes gauge -go_memstats_heap_alloc_bytes 8.80016e+06 +go_memstats_heap_alloc_bytes 6.957552e+06 # HELP go_memstats_heap_idle_bytes Number of heap bytes waiting to be used. # TYPE go_memstats_heap_idle_bytes gauge -go_memstats_heap_idle_bytes 6.569984e+06 +go_memstats_heap_idle_bytes 3.817472e+06 # HELP go_memstats_heap_inuse_bytes Number of heap bytes that are in use. # TYPE go_memstats_heap_inuse_bytes gauge -go_memstats_heap_inuse_bytes 1.2763136e+07 +go_memstats_heap_inuse_bytes 1.1190272e+07 # HELP go_memstats_heap_objects Number of allocated objects. # TYPE go_memstats_heap_objects gauge -go_memstats_heap_objects 69470 +go_memstats_heap_objects 39644 # HELP go_memstats_heap_released_bytes Number of heap bytes released to OS. # TYPE go_memstats_heap_released_bytes gauge -go_memstats_heap_released_bytes 5.914624e+06 +go_memstats_heap_released_bytes 2.768896e+06 # HELP go_memstats_heap_sys_bytes Number of heap bytes obtained from system. # TYPE go_memstats_heap_sys_bytes gauge -go_memstats_heap_sys_bytes 1.933312e+07 +go_memstats_heap_sys_bytes 1.5007744e+07 # HELP go_memstats_last_gc_time_seconds Number of seconds since 1970 of last garbage collection. # TYPE go_memstats_last_gc_time_seconds gauge -go_memstats_last_gc_time_seconds 1.6915732718005395e+09 +go_memstats_last_gc_time_seconds 1.7140449195219896e+09 # HELP go_memstats_lookups_total Total number of pointer lookups. # TYPE go_memstats_lookups_total counter go_memstats_lookups_total 0 # HELP go_memstats_mallocs_total Total number of mallocs. # TYPE go_memstats_mallocs_total counter -go_memstats_mallocs_total 636972 +go_memstats_mallocs_total 203035 # HELP go_memstats_mcache_inuse_bytes Number of bytes in use by mcache structures. # TYPE go_memstats_mcache_inuse_bytes gauge -go_memstats_mcache_inuse_bytes 9600 +go_memstats_mcache_inuse_bytes 14400 # HELP go_memstats_mcache_sys_bytes Number of bytes used for mcache structures obtained from system. # TYPE go_memstats_mcache_sys_bytes gauge go_memstats_mcache_sys_bytes 15600 # HELP go_memstats_mspan_inuse_bytes Number of bytes in use by mspan structures. # TYPE go_memstats_mspan_inuse_bytes gauge -go_memstats_mspan_inuse_bytes 268800 +go_memstats_mspan_inuse_bytes 241440 # HELP go_memstats_mspan_sys_bytes Number of bytes used for mspan structures obtained from system. # TYPE go_memstats_mspan_sys_bytes gauge -go_memstats_mspan_sys_bytes 277440 +go_memstats_mspan_sys_bytes 261120 # HELP go_memstats_next_gc_bytes Number of heap bytes when next garbage collection will take place. # TYPE go_memstats_next_gc_bytes gauge -go_memstats_next_gc_bytes 1.2893368e+07 +go_memstats_next_gc_bytes 1.455508e+07 # HELP go_memstats_other_sys_bytes Number of bytes used for other system allocations. # TYPE go_memstats_other_sys_bytes gauge -go_memstats_other_sys_bytes 1.433287e+06 +go_memstats_other_sys_bytes 2.560267e+06 # HELP go_memstats_stack_inuse_bytes Number of bytes in use by the stack allocator. # TYPE go_memstats_stack_inuse_bytes gauge -go_memstats_stack_inuse_bytes 1.6384e+06 +go_memstats_stack_inuse_bytes 1.769472e+06 # HELP go_memstats_stack_sys_bytes Number of bytes obtained from system for stack allocator. # TYPE go_memstats_stack_sys_bytes gauge -go_memstats_stack_sys_bytes 1.6384e+06 +go_memstats_stack_sys_bytes 1.769472e+06 # HELP go_memstats_sys_bytes Number of bytes obtained from system. # TYPE go_memstats_sys_bytes gauge -go_memstats_sys_bytes 3.3158408e+07 +go_memstats_sys_bytes 2.472884e+07 # HELP go_sched_gomaxprocs_threads The current runtime.GOMAXPROCS setting, or the number of operating system threads that can execute user-level Go code simultaneously. # TYPE go_sched_gomaxprocs_threads gauge -go_sched_gomaxprocs_threads 8 +go_sched_gomaxprocs_threads 12 # HELP go_sched_goroutines_goroutines Count of live goroutines. # TYPE go_sched_goroutines_goroutines gauge -go_sched_goroutines_goroutines 172 -# HELP go_sched_latencies_seconds Distribution of the time goroutines have spent in the scheduler in a runnable state before actually running. +go_sched_goroutines_goroutines 171 +# HELP go_sched_latencies_seconds Distribution of the time goroutines have spent in the scheduler in a runnable state before actually running. Bucket counts increase monotonically. # TYPE go_sched_latencies_seconds histogram -go_sched_latencies_seconds_bucket{le="6.399999999999999e-08"} 2372 -go_sched_latencies_seconds_bucket{le="6.399999999999999e-07"} 2635 -go_sched_latencies_seconds_bucket{le="7.167999999999999e-06"} 3677 -go_sched_latencies_seconds_bucket{le="8.191999999999999e-05"} 6413 -go_sched_latencies_seconds_bucket{le="0.0009175039999999999"} 6800 -go_sched_latencies_seconds_bucket{le="0.010485759999999998"} 6801 -go_sched_latencies_seconds_bucket{le="0.11744051199999998"} 6801 -go_sched_latencies_seconds_bucket{le="+Inf"} 6801 -go_sched_latencies_seconds_sum 0.052915904 -go_sched_latencies_seconds_count 6801 -# HELP go_sync_mutex_wait_total_seconds_total Approximate cumulative time goroutines have spent blocked on a sync.Mutex or sync.RWMutex. This metric is useful for identifying global changes in lock contention. Collect a mutex or block profile using the runtime/pprof package for more detailed contention data. +go_sched_latencies_seconds_bucket{le="6.399999999999999e-08"} 775 +go_sched_latencies_seconds_bucket{le="6.399999999999999e-07"} 906 +go_sched_latencies_seconds_bucket{le="7.167999999999999e-06"} 1187 +go_sched_latencies_seconds_bucket{le="8.191999999999999e-05"} 2116 +go_sched_latencies_seconds_bucket{le="0.0009175039999999999"} 2262 +go_sched_latencies_seconds_bucket{le="0.010485759999999998"} 2266 +go_sched_latencies_seconds_bucket{le="0.11744051199999998"} 2266 +go_sched_latencies_seconds_bucket{le="+Inf"} 2266 +go_sched_latencies_seconds_sum 0.022477631999999997 +go_sched_latencies_seconds_count 2266 +# HELP go_sched_pauses_stopping_gc_seconds Distribution of individual GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total GC-related stop-the-world time (/sched/pauses/total/gc:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. +# TYPE go_sched_pauses_stopping_gc_seconds histogram +go_sched_pauses_stopping_gc_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_stopping_gc_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_stopping_gc_seconds_bucket{le="7.167999999999999e-06"} 11 +go_sched_pauses_stopping_gc_seconds_bucket{le="8.191999999999999e-05"} 14 +go_sched_pauses_stopping_gc_seconds_bucket{le="0.0009175039999999999"} 23 +go_sched_pauses_stopping_gc_seconds_bucket{le="0.010485759999999998"} 23 +go_sched_pauses_stopping_gc_seconds_bucket{le="0.11744051199999998"} 24 +go_sched_pauses_stopping_gc_seconds_bucket{le="+Inf"} 24 +go_sched_pauses_stopping_gc_seconds_sum 0.011251584 +go_sched_pauses_stopping_gc_seconds_count 24 +# HELP go_sched_pauses_stopping_other_seconds Distribution of individual non-GC-related stop-the-world stopping latencies. This is the time it takes from deciding to stop the world until all Ps are stopped. This is a subset of the total non-GC-related stop-the-world time (/sched/pauses/total/other:seconds). During this time, some threads may be executing. Bucket counts increase monotonically. +# TYPE go_sched_pauses_stopping_other_seconds histogram +go_sched_pauses_stopping_other_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="7.167999999999999e-06"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="8.191999999999999e-05"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="0.0009175039999999999"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="0.010485759999999998"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="0.11744051199999998"} 0 +go_sched_pauses_stopping_other_seconds_bucket{le="+Inf"} 0 +go_sched_pauses_stopping_other_seconds_sum 0 +go_sched_pauses_stopping_other_seconds_count 0 +# HELP go_sched_pauses_total_gc_seconds Distribution of individual GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (this is measured directly in /sched/pauses/stopping/gc:seconds), during which some threads may still be running. Bucket counts increase monotonically. +# TYPE go_sched_pauses_total_gc_seconds histogram +go_sched_pauses_total_gc_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_total_gc_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_total_gc_seconds_bucket{le="7.167999999999999e-06"} 4 +go_sched_pauses_total_gc_seconds_bucket{le="8.191999999999999e-05"} 13 +go_sched_pauses_total_gc_seconds_bucket{le="0.0009175039999999999"} 23 +go_sched_pauses_total_gc_seconds_bucket{le="0.010485759999999998"} 23 +go_sched_pauses_total_gc_seconds_bucket{le="0.11744051199999998"} 24 +go_sched_pauses_total_gc_seconds_bucket{le="+Inf"} 24 +go_sched_pauses_total_gc_seconds_sum 0.011372032 +go_sched_pauses_total_gc_seconds_count 24 +# HELP go_sched_pauses_total_other_seconds Distribution of individual non-GC-related stop-the-world pause latencies. This is the time from deciding to stop the world until the world is started again. Some of this time is spent getting all threads to stop (measured directly in /sched/pauses/stopping/other:seconds). Bucket counts increase monotonically. +# TYPE go_sched_pauses_total_other_seconds histogram +go_sched_pauses_total_other_seconds_bucket{le="6.399999999999999e-08"} 0 +go_sched_pauses_total_other_seconds_bucket{le="6.399999999999999e-07"} 0 +go_sched_pauses_total_other_seconds_bucket{le="7.167999999999999e-06"} 0 +go_sched_pauses_total_other_seconds_bucket{le="8.191999999999999e-05"} 0 +go_sched_pauses_total_other_seconds_bucket{le="0.0009175039999999999"} 0 +go_sched_pauses_total_other_seconds_bucket{le="0.010485759999999998"} 0 +go_sched_pauses_total_other_seconds_bucket{le="0.11744051199999998"} 0 +go_sched_pauses_total_other_seconds_bucket{le="+Inf"} 0 +go_sched_pauses_total_other_seconds_sum 0 +go_sched_pauses_total_other_seconds_count 0 +# HELP go_sync_mutex_wait_total_seconds_total Approximate cumulative time goroutines have spent blocked on a sync.Mutex, sync.RWMutex, or runtime-internal lock. This metric is useful for identifying global changes in lock contention. Collect a mutex or block profile using the runtime/pprof package for more detailed contention data. # TYPE go_sync_mutex_wait_total_seconds_total counter -go_sync_mutex_wait_total_seconds_total 0.000617744 +go_sync_mutex_wait_total_seconds_total 0.081866008 # HELP go_threads Number of OS threads created. # TYPE go_threads gauge -go_threads 13 -# HELP hidden_metric_total [ALPHA] The count of hidden metrics. -# TYPE hidden_metric_total counter -hidden_metric_total 1 +go_threads 17 +# HELP hidden_metrics_total [BETA] The count of hidden metrics. +# TYPE hidden_metrics_total counter +hidden_metrics_total 1 # HELP kubernetes_build_info [ALPHA] A metric with a constant '1' value labeled by major, minor, git version, git commit, git tree state, build date, Go version, and compiler from which Kubernetes was built, and platform on which it is running. # TYPE kubernetes_build_info gauge -kubernetes_build_info{build_date="2023-04-11T20:50:51Z",compiler="gc",git_commit="1b4df30b3cdfeaba6024e81e559a6cd09a089d65",git_tree_state="clean",git_version="v1.27.0",go_version="go1.20.3",major="1",minor="27",platform="linux/amd64"} 1 -# HELP kubernetes_feature_enabled [ALPHA] This metric records the data about the stage and enablement of a k8s feature. +kubernetes_build_info{build_date="2024-04-17T17:27:03Z",compiler="gc",git_commit="7c48c2bd72b9bf5c44d21d7338cc7bea77d0ad2a",git_tree_state="clean",git_version="v1.30.0",go_version="go1.22.2",major="1",minor="30",platform="linux/amd64"} 1 +# HELP kubernetes_feature_enabled [BETA] This metric records the data about the stage and enablement of a k8s feature. # TYPE kubernetes_feature_enabled gauge -kubernetes_feature_enabled{name="APIListChunking",stage="BETA"} 1 -kubernetes_feature_enabled{name="APIPriorityAndFairness",stage="BETA"} 1 +kubernetes_feature_enabled{name="APIListChunking",stage=""} 1 +kubernetes_feature_enabled{name="APIPriorityAndFairness",stage=""} 1 kubernetes_feature_enabled{name="APIResponseCompression",stage="BETA"} 1 -kubernetes_feature_enabled{name="APISelfSubjectReview",stage="BETA"} 1 kubernetes_feature_enabled{name="APIServerIdentity",stage="BETA"} 1 kubernetes_feature_enabled{name="APIServerTracing",stage="BETA"} 1 -kubernetes_feature_enabled{name="AdmissionWebhookMatchConditions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="AdvancedAuditing",stage=""} 1 -kubernetes_feature_enabled{name="AggregatedDiscoveryEndpoint",stage="BETA"} 1 +kubernetes_feature_enabled{name="APIServingWithRoutine",stage="BETA"} 1 +kubernetes_feature_enabled{name="AdmissionWebhookMatchConditions",stage=""} 1 +kubernetes_feature_enabled{name="AggregatedDiscoveryEndpoint",stage=""} 1 kubernetes_feature_enabled{name="AllAlpha",stage="ALPHA"} 0 kubernetes_feature_enabled{name="AllBeta",stage="BETA"} 0 +kubernetes_feature_enabled{name="AllowServiceLBStatusOnNonLB",stage="DEPRECATED"} 0 kubernetes_feature_enabled{name="AnyVolumeDataSource",stage="BETA"} 1 kubernetes_feature_enabled{name="AppArmor",stage="BETA"} 1 +kubernetes_feature_enabled{name="AppArmorFields",stage="BETA"} 1 kubernetes_feature_enabled{name="CPUManager",stage=""} 1 kubernetes_feature_enabled{name="CPUManagerPolicyAlphaOptions",stage="ALPHA"} 0 kubernetes_feature_enabled{name="CPUManagerPolicyBetaOptions",stage="BETA"} 1 kubernetes_feature_enabled{name="CPUManagerPolicyOptions",stage="BETA"} 1 -kubernetes_feature_enabled{name="CSIMigrationAzureFile",stage=""} 1 -kubernetes_feature_enabled{name="CSIMigrationGCE",stage=""} 1 +kubernetes_feature_enabled{name="CRDValidationRatcheting",stage="BETA"} 1 kubernetes_feature_enabled{name="CSIMigrationPortworx",stage="BETA"} 0 -kubernetes_feature_enabled{name="CSIMigrationRBD",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CSIMigrationvSphere",stage=""} 1 -kubernetes_feature_enabled{name="CSINodeExpandSecret",stage="BETA"} 1 -kubernetes_feature_enabled{name="CSIStorageCapacity",stage=""} 1 +kubernetes_feature_enabled{name="CSIMigrationRBD",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="CSINodeExpandSecret",stage=""} 1 kubernetes_feature_enabled{name="CSIVolumeHealth",stage="ALPHA"} 0 kubernetes_feature_enabled{name="CloudControllerManagerWebhook",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CloudDualStackNodeIPs",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CloudDualStackNodeIPs",stage=""} 1 kubernetes_feature_enabled{name="ClusterTrustBundle",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ClusterTrustBundleProjection",stage="ALPHA"} 0 kubernetes_feature_enabled{name="ComponentSLIs",stage="BETA"} 1 kubernetes_feature_enabled{name="ConsistentHTTPGetHandlers",stage=""} 1 -kubernetes_feature_enabled{name="ContainerCheckpoint",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ContextualLogging",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CronJobTimeZone",stage=""} 1 +kubernetes_feature_enabled{name="ConsistentListFromCache",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ContainerCheckpoint",stage="BETA"} 1 +kubernetes_feature_enabled{name="ContextualLogging",stage="BETA"} 1 +kubernetes_feature_enabled{name="CronJobsScheduledAnnotation",stage="BETA"} 1 kubernetes_feature_enabled{name="CrossNamespaceVolumeDataSource",stage="ALPHA"} 0 kubernetes_feature_enabled{name="CustomCPUCFSQuotaPeriod",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="CustomResourceValidationExpressions",stage="BETA"} 1 -kubernetes_feature_enabled{name="DelegateFSGroupToCSIDriver",stage=""} 1 -kubernetes_feature_enabled{name="DevicePlugins",stage=""} 1 -kubernetes_feature_enabled{name="DisableAcceleratorUsageMetrics",stage=""} 1 -kubernetes_feature_enabled{name="DisableCloudProviders",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="DisableKubeletCloudCredentialProviders",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="DownwardAPIHugePages",stage=""} 1 -kubernetes_feature_enabled{name="DryRun",stage=""} 1 +kubernetes_feature_enabled{name="CustomResourceFieldSelectors",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="CustomResourceValidationExpressions",stage=""} 1 +kubernetes_feature_enabled{name="DefaultHostNetworkHostPortsInPodTemplates",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="DevicePluginCDIDevices",stage="BETA"} 1 +kubernetes_feature_enabled{name="DisableCloudProviders",stage="BETA"} 1 +kubernetes_feature_enabled{name="DisableKubeletCloudCredentialProviders",stage="BETA"} 1 +kubernetes_feature_enabled{name="DisableNodeKubeProxyVersion",stage="ALPHA"} 0 kubernetes_feature_enabled{name="DynamicResourceAllocation",stage="ALPHA"} 0 kubernetes_feature_enabled{name="EfficientWatchResumption",stage=""} 1 kubernetes_feature_enabled{name="ElasticIndexedJob",stage="BETA"} 1 -kubernetes_feature_enabled{name="EndpointSliceTerminatingCondition",stage=""} 1 -kubernetes_feature_enabled{name="EventedPLEG",stage="BETA"} 0 +kubernetes_feature_enabled{name="EventedPLEG",stage="ALPHA"} 0 kubernetes_feature_enabled{name="ExecProbeTimeout",stage=""} 1 -kubernetes_feature_enabled{name="ExpandedDNSConfig",stage="BETA"} 1 -kubernetes_feature_enabled{name="ExperimentalHostUserNamespaceDefaulting",stage="BETA"} 0 -kubernetes_feature_enabled{name="GRPCContainerProbe",stage=""} 1 kubernetes_feature_enabled{name="GracefulNodeShutdown",stage="BETA"} 1 kubernetes_feature_enabled{name="GracefulNodeShutdownBasedOnPodPriority",stage="BETA"} 1 -kubernetes_feature_enabled{name="HPAContainerMetrics",stage="BETA"} 1 +kubernetes_feature_enabled{name="HPAContainerMetrics",stage=""} 1 kubernetes_feature_enabled{name="HPAScaleToZero",stage="ALPHA"} 0 kubernetes_feature_enabled{name="HonorPVReclaimPolicy",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="IPTablesOwnershipCleanup",stage="BETA"} 1 +kubernetes_feature_enabled{name="ImageMaximumGCAge",stage="BETA"} 1 kubernetes_feature_enabled{name="InPlacePodVerticalScaling",stage="ALPHA"} 0 kubernetes_feature_enabled{name="InTreePluginAWSUnregister",stage="ALPHA"} 0 kubernetes_feature_enabled{name="InTreePluginAzureDiskUnregister",stage="ALPHA"} 0 @@ -501,94 +651,115 @@ kubernetes_feature_enabled{name="InTreePluginAzureFileUnregister",stage="ALPHA"} kubernetes_feature_enabled{name="InTreePluginGCEUnregister",stage="ALPHA"} 0 kubernetes_feature_enabled{name="InTreePluginOpenStackUnregister",stage="ALPHA"} 0 kubernetes_feature_enabled{name="InTreePluginPortworxUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="InTreePluginRBDUnregister",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="InTreePluginRBDUnregister",stage="DEPRECATED"} 0 kubernetes_feature_enabled{name="InTreePluginvSphereUnregister",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="JobMutableNodeSchedulingDirectives",stage=""} 1 +kubernetes_feature_enabled{name="InformerResourceVersion",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="JobBackoffLimitPerIndex",stage="BETA"} 1 +kubernetes_feature_enabled{name="JobManagedBy",stage="ALPHA"} 0 kubernetes_feature_enabled{name="JobPodFailurePolicy",stage="BETA"} 1 -kubernetes_feature_enabled{name="JobReadyPods",stage="BETA"} 1 -kubernetes_feature_enabled{name="JobTrackingWithFinalizers",stage=""} 1 -kubernetes_feature_enabled{name="KMSv2",stage="BETA"} 1 -kubernetes_feature_enabled{name="KubeletCredentialProviders",stage=""} 1 +kubernetes_feature_enabled{name="JobPodReplacementPolicy",stage="BETA"} 1 +kubernetes_feature_enabled{name="JobReadyPods",stage=""} 1 +kubernetes_feature_enabled{name="JobSuccessPolicy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="KMSv1",stage="DEPRECATED"} 0 +kubernetes_feature_enabled{name="KMSv2",stage=""} 1 +kubernetes_feature_enabled{name="KMSv2KDF",stage=""} 1 +kubernetes_feature_enabled{name="KubeProxyDrainingTerminatingNodes",stage="BETA"} 1 +kubernetes_feature_enabled{name="KubeletCgroupDriverFromCRI",stage="ALPHA"} 0 kubernetes_feature_enabled{name="KubeletInUserNamespace",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="KubeletPodResources",stage="BETA"} 1 kubernetes_feature_enabled{name="KubeletPodResourcesDynamicResources",stage="ALPHA"} 0 kubernetes_feature_enabled{name="KubeletPodResourcesGet",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="KubeletPodResourcesGetAllocatable",stage="BETA"} 1 +kubernetes_feature_enabled{name="KubeletSeparateDiskGC",stage="ALPHA"} 0 kubernetes_feature_enabled{name="KubeletTracing",stage="BETA"} 1 -kubernetes_feature_enabled{name="LegacyServiceAccountTokenNoAutoGeneration",stage=""} 1 -kubernetes_feature_enabled{name="LegacyServiceAccountTokenTracking",stage="BETA"} 1 +kubernetes_feature_enabled{name="LegacyServiceAccountTokenCleanUp",stage=""} 1 +kubernetes_feature_enabled{name="LoadBalancerIPMode",stage="BETA"} 1 kubernetes_feature_enabled{name="LocalStorageCapacityIsolationFSQuotaMonitoring",stage="ALPHA"} 0 kubernetes_feature_enabled{name="LogarithmicScaleDown",stage="BETA"} 1 kubernetes_feature_enabled{name="LoggingAlphaOptions",stage="ALPHA"} 0 kubernetes_feature_enabled{name="LoggingBetaOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="MatchLabelKeysInPodAffinity",stage="ALPHA"} 0 kubernetes_feature_enabled{name="MatchLabelKeysInPodTopologySpread",stage="BETA"} 1 kubernetes_feature_enabled{name="MaxUnavailableStatefulSet",stage="ALPHA"} 0 kubernetes_feature_enabled{name="MemoryManager",stage="BETA"} 1 kubernetes_feature_enabled{name="MemoryQoS",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="MinDomainsInPodTopologySpread",stage="BETA"} 1 -kubernetes_feature_enabled{name="MinimizeIPTablesRestore",stage="BETA"} 1 -kubernetes_feature_enabled{name="MixedProtocolLBService",stage=""} 1 -kubernetes_feature_enabled{name="MultiCIDRRangeAllocator",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="MinDomainsInPodTopologySpread",stage=""} 1 kubernetes_feature_enabled{name="MultiCIDRServiceAllocator",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="NetworkPolicyStatus",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="NewVolumeManagerReconstruction",stage="BETA"} 1 +kubernetes_feature_enabled{name="MutatingAdmissionPolicy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="NFTablesProxyMode",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="NewVolumeManagerReconstruction",stage=""} 1 kubernetes_feature_enabled{name="NodeInclusionPolicyInPodTopologySpread",stage="BETA"} 1 -kubernetes_feature_enabled{name="NodeLogQuery",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="NodeOutOfServiceVolumeDetach",stage="BETA"} 1 -kubernetes_feature_enabled{name="NodeSwap",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="NodeLogQuery",stage="BETA"} 0 +kubernetes_feature_enabled{name="NodeOutOfServiceVolumeDetach",stage=""} 1 +kubernetes_feature_enabled{name="NodeSwap",stage="BETA"} 1 kubernetes_feature_enabled{name="OpenAPIEnums",stage="BETA"} 1 -kubernetes_feature_enabled{name="OpenAPIV3",stage=""} 1 kubernetes_feature_enabled{name="PDBUnhealthyPodEvictionPolicy",stage="BETA"} 1 +kubernetes_feature_enabled{name="PersistentVolumeLastPhaseTransitionTime",stage="BETA"} 1 kubernetes_feature_enabled{name="PodAndContainerStatsFromCRI",stage="ALPHA"} 0 kubernetes_feature_enabled{name="PodDeletionCost",stage="BETA"} 1 kubernetes_feature_enabled{name="PodDisruptionConditions",stage="BETA"} 1 -kubernetes_feature_enabled{name="PodHasNetworkCondition",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="PodSchedulingReadiness",stage="BETA"} 1 -kubernetes_feature_enabled{name="PodSecurity",stage=""} 1 -kubernetes_feature_enabled{name="ProbeTerminationGracePeriod",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodHostIPs",stage=""} 1 +kubernetes_feature_enabled{name="PodIndexLabel",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodLifecycleSleepAction",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodReadyToStartContainersCondition",stage="BETA"} 1 +kubernetes_feature_enabled{name="PodSchedulingReadiness",stage=""} 1 +kubernetes_feature_enabled{name="PortForwardWebsockets",stage="ALPHA"} 0 kubernetes_feature_enabled{name="ProcMountType",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ProxyTerminatingEndpoints",stage="BETA"} 1 kubernetes_feature_enabled{name="QOSReserved",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ReadWriteOncePod",stage="BETA"} 1 +kubernetes_feature_enabled{name="ReadWriteOncePod",stage=""} 1 kubernetes_feature_enabled{name="RecoverVolumeExpansionFailure",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="RemainingItemCount",stage="BETA"} 1 -kubernetes_feature_enabled{name="RemoveSelfLink",stage=""} 1 -kubernetes_feature_enabled{name="RetroactiveDefaultStorageClass",stage="BETA"} 1 +kubernetes_feature_enabled{name="RecursiveReadOnlyMounts",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="RelaxedEnvironmentVariableValidation",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="RemainingItemCount",stage=""} 1 +kubernetes_feature_enabled{name="RetryGenerateName",stage="ALPHA"} 0 kubernetes_feature_enabled{name="RotateKubeletServerCertificate",stage="BETA"} 1 +kubernetes_feature_enabled{name="RuntimeClassInImageCriApi",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="SELinuxMount",stage="ALPHA"} 0 kubernetes_feature_enabled{name="SELinuxMountReadWriteOncePod",stage="BETA"} 1 -kubernetes_feature_enabled{name="SeccompDefault",stage=""} 1 -kubernetes_feature_enabled{name="SecurityContextDeny",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="SchedulerQueueingHints",stage="BETA"} 0 +kubernetes_feature_enabled{name="SeparateCacheWatchRPC",stage="BETA"} 1 +kubernetes_feature_enabled{name="SeparateTaintEvictionController",stage="BETA"} 1 kubernetes_feature_enabled{name="ServerSideApply",stage=""} 1 kubernetes_feature_enabled{name="ServerSideFieldValidation",stage=""} 1 -kubernetes_feature_enabled{name="ServiceIPStaticSubrange",stage=""} 1 -kubernetes_feature_enabled{name="ServiceInternalTrafficPolicy",stage=""} 1 -kubernetes_feature_enabled{name="ServiceNodePortStaticSubrange",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ServiceAccountTokenJTI",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServiceAccountTokenNodeBinding",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="ServiceAccountTokenNodeBindingValidation",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServiceAccountTokenPodNodeInfo",stage="BETA"} 1 +kubernetes_feature_enabled{name="ServiceNodePortStaticSubrange",stage=""} 1 +kubernetes_feature_enabled{name="ServiceTrafficDistribution",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="SidecarContainers",stage="BETA"} 1 kubernetes_feature_enabled{name="SizeMemoryBackedVolumes",stage="BETA"} 1 -kubernetes_feature_enabled{name="StableLoadBalancerNodeSet",stage="BETA"} 1 +kubernetes_feature_enabled{name="SkipReadOnlyValidationGCE",stage="DEPRECATED"} 1 +kubernetes_feature_enabled{name="StableLoadBalancerNodeSet",stage=""} 1 kubernetes_feature_enabled{name="StatefulSetAutoDeletePVC",stage="BETA"} 1 kubernetes_feature_enabled{name="StatefulSetStartOrdinal",stage="BETA"} 1 +kubernetes_feature_enabled{name="StorageNamespaceIndex",stage="BETA"} 1 kubernetes_feature_enabled{name="StorageVersionAPI",stage="ALPHA"} 0 kubernetes_feature_enabled{name="StorageVersionHash",stage="BETA"} 1 +kubernetes_feature_enabled{name="StorageVersionMigrator",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="StructuredAuthenticationConfiguration",stage="BETA"} 1 +kubernetes_feature_enabled{name="StructuredAuthorizationConfiguration",stage="BETA"} 1 kubernetes_feature_enabled{name="TopologyAwareHints",stage="BETA"} 1 -kubernetes_feature_enabled{name="TopologyManager",stage=""} 1 kubernetes_feature_enabled{name="TopologyManagerPolicyAlphaOptions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="TopologyManagerPolicyBetaOptions",stage="BETA"} 0 -kubernetes_feature_enabled{name="TopologyManagerPolicyOptions",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="UserNamespacesStatelessPodsSupport",stage="ALPHA"} 0 -kubernetes_feature_enabled{name="ValidatingAdmissionPolicy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="TopologyManagerPolicyBetaOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="TopologyManagerPolicyOptions",stage="BETA"} 1 +kubernetes_feature_enabled{name="TranslateStreamCloseWebsocketRequests",stage="BETA"} 1 +kubernetes_feature_enabled{name="UnauthenticatedHTTP2DOSMitigation",stage="BETA"} 1 +kubernetes_feature_enabled{name="UnknownVersionInteroperabilityProxy",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="UserNamespacesPodSecurityStandards",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="UserNamespacesSupport",stage="BETA"} 0 +kubernetes_feature_enabled{name="ValidatingAdmissionPolicy",stage=""} 1 +kubernetes_feature_enabled{name="VolumeAttributesClass",stage="ALPHA"} 0 kubernetes_feature_enabled{name="VolumeCapacityPriority",stage="ALPHA"} 0 kubernetes_feature_enabled{name="WatchBookmark",stage=""} 1 +kubernetes_feature_enabled{name="WatchFromStorageWithoutResourceVersion",stage="BETA"} 0 kubernetes_feature_enabled{name="WatchList",stage="ALPHA"} 0 +kubernetes_feature_enabled{name="WatchListClient",stage="BETA"} 0 kubernetes_feature_enabled{name="WinDSR",stage="ALPHA"} 0 kubernetes_feature_enabled{name="WinOverlay",stage="BETA"} 1 kubernetes_feature_enabled{name="WindowsHostNetwork",stage="ALPHA"} 1 -kubernetes_feature_enabled{name="WindowsHostProcessContainers",stage=""} 1 -# HELP leader_election_master_status [ALPHA] Gauge of if the reporting system is master of the relevant lease, 0 indicates backup, 1 indicates master. 'name' is the string used to identify the lease. Please make sure to group by name. -# TYPE leader_election_master_status gauge -leader_election_master_status{name="kube-scheduler"} 1 +kubernetes_feature_enabled{name="ZeroLimitedNominalConcurrencyShares",stage=""} 1 # HELP process_cpu_seconds_total Total user and system CPU time spent in seconds. # TYPE process_cpu_seconds_total counter -process_cpu_seconds_total 8.31 +process_cpu_seconds_total 3.95 # HELP process_max_fds Maximum number of open file descriptors. # TYPE process_max_fds gauge process_max_fds 1.048576e+06 @@ -597,20 +768,22 @@ process_max_fds 1.048576e+06 process_open_fds 11 # HELP process_resident_memory_bytes Resident memory size in bytes. # TYPE process_resident_memory_bytes gauge -process_resident_memory_bytes 5.8523648e+07 +process_resident_memory_bytes 5.904384e+07 # HELP process_start_time_seconds Start time of the process since unix epoch in seconds. # TYPE process_start_time_seconds gauge -process_start_time_seconds 1.69157216915e+09 +process_start_time_seconds 1.71404443282e+09 # HELP process_virtual_memory_bytes Virtual memory size in bytes. # TYPE process_virtual_memory_bytes gauge -process_virtual_memory_bytes 7.85260544e+08 +process_virtual_memory_bytes 1.317883904e+09 # HELP process_virtual_memory_max_bytes Maximum amount of virtual memory available in bytes. # TYPE process_virtual_memory_max_bytes gauge process_virtual_memory_max_bytes 1.8446744073709552e+19 -# HELP registered_metric_total [ALPHA] The count of registered metrics broken by stability level and deprecation version. -# TYPE registered_metric_total counter -registered_metric_total{deprecated_version="",stability_level="ALPHA"} 77 -registered_metric_total{deprecated_version="",stability_level="STABLE"} 12 +# HELP registered_metrics_total [BETA] The count of registered metrics broken by stability level and deprecation version. +# TYPE registered_metrics_total counter +registered_metrics_total{deprecated_version="",stability_level="ALPHA"} 84 +registered_metrics_total{deprecated_version="",stability_level="BETA"} 5 +registered_metrics_total{deprecated_version="",stability_level="STABLE"} 13 +registered_metrics_total{deprecated_version="1.30.0",stability_level="ALPHA"} 2 # HELP rest_client_exec_plugin_certificate_rotation_age [ALPHA] Histogram of the number of seconds the last auth exec plugin client certificate lived before being rotated. If auth exec plugin client certificates are unused, histogram will contain no data. # TYPE rest_client_exec_plugin_certificate_rotation_age histogram rest_client_exec_plugin_certificate_rotation_age_bucket{le="600"} 0 @@ -632,252 +805,199 @@ rest_client_exec_plugin_certificate_rotation_age_count 0 rest_client_exec_plugin_ttl_seconds +Inf # HELP rest_client_rate_limiter_duration_seconds [ALPHA] Client side rate limiter latency in seconds. Broken down by verb, and host. # TYPE rest_client_rate_limiter_duration_seconds histogram -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.005"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.025"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.1"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.25"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.5"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="1"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="2"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="4"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="8"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="15"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="30"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="60"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="+Inf"} 634 -rest_client_rate_limiter_duration_seconds_sum{host="172.18.0.2:6443",verb="GET"} 0.002401599999999998 -rest_client_rate_limiter_duration_seconds_count{host="172.18.0.2:6443",verb="GET"} 634 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.005"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.025"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.1"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.25"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.5"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="1"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="2"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="4"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="8"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="15"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="30"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="60"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="+Inf"} 3 -rest_client_rate_limiter_duration_seconds_sum{host="172.18.0.2:6443",verb="PATCH"} 9.098e-06 -rest_client_rate_limiter_duration_seconds_count{host="172.18.0.2:6443",verb="PATCH"} 3 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.005"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.025"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.1"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.25"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.5"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="1"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="2"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="4"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="8"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="15"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="30"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="60"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="+Inf"} 21 -rest_client_rate_limiter_duration_seconds_sum{host="172.18.0.2:6443",verb="POST"} 8.7868e-05 -rest_client_rate_limiter_duration_seconds_count{host="172.18.0.2:6443",verb="POST"} 21 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.005"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.025"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.1"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.25"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.5"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="1"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="2"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="4"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="8"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="15"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="30"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="60"} 589 -rest_client_rate_limiter_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="+Inf"} 589 -rest_client_rate_limiter_duration_seconds_sum{host="172.18.0.2:6443",verb="PUT"} 0.0015607319999999996 -rest_client_rate_limiter_duration_seconds_count{host="172.18.0.2:6443",verb="PUT"} 589 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.005"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.025"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.1"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.25"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.5"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="1"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="2"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="4"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="8"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="15"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="30"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="60"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="+Inf"} 44 +rest_client_rate_limiter_duration_seconds_sum{host="192.168.58.2:8443",verb="GET"} 0.000107926 +rest_client_rate_limiter_duration_seconds_count{host="192.168.58.2:8443",verb="GET"} 44 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.005"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.025"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.1"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.25"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.5"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="1"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="2"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="4"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="8"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="15"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="30"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="60"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="+Inf"} 1 +rest_client_rate_limiter_duration_seconds_sum{host="192.168.58.2:8443",verb="PATCH"} 2.814e-06 +rest_client_rate_limiter_duration_seconds_count{host="192.168.58.2:8443",verb="PATCH"} 1 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.005"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.025"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.1"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.25"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.5"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="1"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="2"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="4"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="8"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="15"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="30"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="60"} 13 +rest_client_rate_limiter_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="+Inf"} 13 +rest_client_rate_limiter_duration_seconds_sum{host="192.168.58.2:8443",verb="POST"} 2.5429999999999995e-05 +rest_client_rate_limiter_duration_seconds_count{host="192.168.58.2:8443",verb="POST"} 13 # HELP rest_client_request_duration_seconds [ALPHA] Request latency in seconds. Broken down by verb, and host. # TYPE rest_client_request_duration_seconds histogram -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.005"} 620 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.025"} 633 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.1"} 633 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.25"} 633 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="0.5"} 633 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="1"} 633 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="2"} 633 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="4"} 634 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="8"} 634 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="15"} 634 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="30"} 634 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="60"} 634 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="GET",le="+Inf"} 634 -rest_client_request_duration_seconds_sum{host="172.18.0.2:6443",verb="GET"} 4.443225512000004 -rest_client_request_duration_seconds_count{host="172.18.0.2:6443",verb="GET"} 634 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.005"} 0 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.025"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.1"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.25"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="0.5"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="1"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="2"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="4"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="8"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="15"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="30"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="60"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PATCH",le="+Inf"} 3 -rest_client_request_duration_seconds_sum{host="172.18.0.2:6443",verb="PATCH"} 0.036600519000000005 -rest_client_request_duration_seconds_count{host="172.18.0.2:6443",verb="PATCH"} 3 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.005"} 6 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.025"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.1"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.25"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="0.5"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="1"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="2"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="4"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="8"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="15"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="30"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="60"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="POST",le="+Inf"} 21 -rest_client_request_duration_seconds_sum{host="172.18.0.2:6443",verb="POST"} 0.12807385899999996 -rest_client_request_duration_seconds_count{host="172.18.0.2:6443",verb="POST"} 21 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.005"} 50 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.025"} 588 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.1"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.25"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="0.5"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="1"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="2"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="4"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="8"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="15"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="30"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="60"} 589 -rest_client_request_duration_seconds_bucket{host="172.18.0.2:6443",verb="PUT",le="+Inf"} 589 -rest_client_request_duration_seconds_sum{host="172.18.0.2:6443",verb="PUT"} 5.999108381000003 -rest_client_request_duration_seconds_count{host="172.18.0.2:6443",verb="PUT"} 589 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.005"} 26 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.025"} 36 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.1"} 43 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.25"} 43 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="0.5"} 43 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="1"} 43 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="2"} 44 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="4"} 44 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="8"} 44 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="15"} 44 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="30"} 44 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="60"} 44 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="GET",le="+Inf"} 44 +rest_client_request_duration_seconds_sum{host="192.168.58.2:8443",verb="GET"} 1.5162836270000006 +rest_client_request_duration_seconds_count{host="192.168.58.2:8443",verb="GET"} 44 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.005"} 0 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.025"} 0 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.1"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.25"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="0.5"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="1"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="2"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="4"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="8"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="15"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="30"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="60"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="PATCH",le="+Inf"} 1 +rest_client_request_duration_seconds_sum{host="192.168.58.2:8443",verb="PATCH"} 0.034555265 +rest_client_request_duration_seconds_count{host="192.168.58.2:8443",verb="PATCH"} 1 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.005"} 6 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.025"} 10 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.1"} 11 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.25"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="0.5"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="1"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="2"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="4"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="8"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="15"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="30"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="60"} 13 +rest_client_request_duration_seconds_bucket{host="192.168.58.2:8443",verb="POST",le="+Inf"} 13 +rest_client_request_duration_seconds_sum{host="192.168.58.2:8443",verb="POST"} 0.429212684 +rest_client_request_duration_seconds_count{host="192.168.58.2:8443",verb="POST"} 13 # HELP rest_client_request_size_bytes [ALPHA] Request size in bytes. Broken down by verb and host. # TYPE rest_client_request_size_bytes histogram -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="64"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="256"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="512"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1024"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="4096"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="16384"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="65536"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="262144"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1.048576e+06"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="4.194304e+06"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1.6777216e+07"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="+Inf"} 634 -rest_client_request_size_bytes_sum{host="172.18.0.2:6443",verb="GET"} 0 -rest_client_request_size_bytes_count{host="172.18.0.2:6443",verb="GET"} 634 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="64"} 0 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="256"} 0 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="512"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1024"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="4096"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="16384"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="65536"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="262144"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1.048576e+06"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="4.194304e+06"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1.6777216e+07"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="+Inf"} 3 -rest_client_request_size_bytes_sum{host="172.18.0.2:6443",verb="PATCH"} 1029 -rest_client_request_size_bytes_count{host="172.18.0.2:6443",verb="PATCH"} 3 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="64"} 0 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="256"} 7 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="512"} 17 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1024"} 19 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="4096"} 21 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="16384"} 21 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="65536"} 21 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="262144"} 21 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1.048576e+06"} 21 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="4.194304e+06"} 21 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1.6777216e+07"} 21 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="+Inf"} 21 -rest_client_request_size_bytes_sum{host="172.18.0.2:6443",verb="POST"} 8318 -rest_client_request_size_bytes_count{host="172.18.0.2:6443",verb="POST"} 21 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="64"} 0 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="256"} 0 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="512"} 589 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1024"} 589 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="4096"} 589 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="16384"} 589 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="65536"} 589 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="262144"} 589 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1.048576e+06"} 589 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="4.194304e+06"} 589 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1.6777216e+07"} 589 -rest_client_request_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="+Inf"} 589 -rest_client_request_size_bytes_sum{host="172.18.0.2:6443",verb="PUT"} 250590 -rest_client_request_size_bytes_count{host="172.18.0.2:6443",verb="PUT"} 589 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="64"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="256"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="512"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1024"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="4096"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="16384"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="65536"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="262144"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1.048576e+06"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="4.194304e+06"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1.6777216e+07"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="+Inf"} 44 +rest_client_request_size_bytes_sum{host="192.168.58.2:8443",verb="GET"} 0 +rest_client_request_size_bytes_count{host="192.168.58.2:8443",verb="GET"} 44 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="64"} 0 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="256"} 0 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="512"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1024"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="4096"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="16384"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="65536"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="262144"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1.048576e+06"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="4.194304e+06"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1.6777216e+07"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="+Inf"} 1 +rest_client_request_size_bytes_sum{host="192.168.58.2:8443",verb="PATCH"} 342 +rest_client_request_size_bytes_count{host="192.168.58.2:8443",verb="PATCH"} 1 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="64"} 0 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="256"} 4 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="512"} 9 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1024"} 11 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="4096"} 13 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="16384"} 13 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="65536"} 13 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="262144"} 13 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1.048576e+06"} 13 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="4.194304e+06"} 13 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1.6777216e+07"} 13 +rest_client_request_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="+Inf"} 13 +rest_client_request_size_bytes_sum{host="192.168.58.2:8443",verb="POST"} 6520 +rest_client_request_size_bytes_count{host="192.168.58.2:8443",verb="POST"} 13 # HELP rest_client_requests_total [ALPHA] Number of HTTP requests, partitioned by status code, method, and host. # TYPE rest_client_requests_total counter -rest_client_requests_total{code="200",host="172.18.0.2:6443",method="GET"} 650 -rest_client_requests_total{code="200",host="172.18.0.2:6443",method="PATCH"} 3 -rest_client_requests_total{code="200",host="172.18.0.2:6443",method="PUT"} 589 -rest_client_requests_total{code="201",host="172.18.0.2:6443",method="POST"} 21 -rest_client_requests_total{code="403",host="172.18.0.2:6443",method="GET"} 29 -rest_client_requests_total{code="404",host="172.18.0.2:6443",method="GET"} 1 +rest_client_requests_total{code="200",host="192.168.58.2:8443",method="GET"} 41 +rest_client_requests_total{code="200",host="192.168.58.2:8443",method="PATCH"} 1 +rest_client_requests_total{code="201",host="192.168.58.2:8443",method="POST"} 13 +rest_client_requests_total{code="403",host="192.168.58.2:8443",method="GET"} 29 # HELP rest_client_response_size_bytes [ALPHA] Response size in bytes. Broken down by verb and host. # TYPE rest_client_response_size_bytes histogram -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="64"} 9 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="256"} 33 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="512"} 628 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1024"} 629 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="4096"} 634 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="16384"} 634 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="65536"} 634 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="262144"} 634 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1.048576e+06"} 634 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="4.194304e+06"} 634 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="1.6777216e+07"} 634 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="GET",le="+Inf"} 634 -rest_client_response_size_bytes_sum{host="172.18.0.2:6443",verb="GET"} 271449 -rest_client_response_size_bytes_count{host="172.18.0.2:6443",verb="GET"} 634 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="64"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="256"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="512"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1024"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="4096"} 3 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="16384"} 3 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="65536"} 3 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="262144"} 3 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1.048576e+06"} 3 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="4.194304e+06"} 3 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="1.6777216e+07"} 3 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PATCH",le="+Inf"} 3 -rest_client_response_size_bytes_sum{host="172.18.0.2:6443",verb="PATCH"} 10950 -rest_client_response_size_bytes_count{host="172.18.0.2:6443",verb="PATCH"} 3 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="64"} 6 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="256"} 6 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="512"} 7 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1024"} 17 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="4096"} 21 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="16384"} 21 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="65536"} 21 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="262144"} 21 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1.048576e+06"} 21 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="4.194304e+06"} 21 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="1.6777216e+07"} 21 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="POST",le="+Inf"} 21 -rest_client_response_size_bytes_sum{host="172.18.0.2:6443",verb="POST"} 12863 -rest_client_response_size_bytes_count{host="172.18.0.2:6443",verb="POST"} 21 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="64"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="256"} 0 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="512"} 589 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1024"} 589 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="4096"} 589 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="16384"} 589 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="65536"} 589 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="262144"} 589 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1.048576e+06"} 589 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="4.194304e+06"} 589 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="1.6777216e+07"} 589 -rest_client_response_size_bytes_bucket{host="172.18.0.2:6443",verb="PUT",le="+Inf"} 589 -rest_client_response_size_bytes_sum{host="172.18.0.2:6443",verb="PUT"} 250591 -rest_client_response_size_bytes_count{host="172.18.0.2:6443",verb="PUT"} 589 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="64"} 10 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="256"} 32 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="512"} 39 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1024"} 40 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="4096"} 44 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="16384"} 44 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="65536"} 44 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="262144"} 44 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1.048576e+06"} 44 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="4.194304e+06"} 44 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="1.6777216e+07"} 44 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="GET",le="+Inf"} 44 +rest_client_response_size_bytes_sum{host="192.168.58.2:8443",verb="GET"} 17474 +rest_client_response_size_bytes_count{host="192.168.58.2:8443",verb="GET"} 44 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="64"} 0 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="256"} 0 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="512"} 0 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1024"} 0 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="4096"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="16384"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="65536"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="262144"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1.048576e+06"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="4.194304e+06"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="1.6777216e+07"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="PATCH",le="+Inf"} 1 +rest_client_response_size_bytes_sum{host="192.168.58.2:8443",verb="PATCH"} 2891 +rest_client_response_size_bytes_count{host="192.168.58.2:8443",verb="PATCH"} 1 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="64"} 4 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="256"} 4 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="512"} 4 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1024"} 9 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="4096"} 13 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="16384"} 13 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="65536"} 13 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="262144"} 13 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1.048576e+06"} 13 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="4.194304e+06"} 13 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="1.6777216e+07"} 13 +rest_client_response_size_bytes_bucket{host="192.168.58.2:8443",verb="POST",le="+Inf"} 13 +rest_client_response_size_bytes_sum{host="192.168.58.2:8443",verb="POST"} 10662 +rest_client_response_size_bytes_count{host="192.168.58.2:8443",verb="POST"} 13 +# HELP rest_client_transport_cache_entries [ALPHA] Number of transport entries in the internal cache. +# TYPE rest_client_transport_cache_entries gauge +rest_client_transport_cache_entries 2 +# HELP rest_client_transport_create_calls_total [ALPHA] Number of calls to get a new transport, partitioned by the result of the operation hit: obtained from the cache, miss: created and added to the cache, uncacheable: created and not cached +# TYPE rest_client_transport_create_calls_total counter +rest_client_transport_create_calls_total{result="hit"} 3 +rest_client_transport_create_calls_total{result="miss"} 2 # HELP scheduler_framework_extension_point_duration_seconds [STABLE] Latency for running all plugins of a specific extension point. # TYPE scheduler_framework_extension_point_duration_seconds histogram scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0001"} 0 @@ -886,135 +1006,135 @@ scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bin scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0008"} 0 scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0016"} 0 scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0032"} 0 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0064"} 0 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0128"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0256"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0512"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.1024"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.2048"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="+Inf"} 6 -scheduler_framework_extension_point_duration_seconds_sum{extension_point="Bind",profile="default-scheduler",status="Success"} 0.050149431999999994 -scheduler_framework_extension_point_duration_seconds_count{extension_point="Bind",profile="default-scheduler",status="Success"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0001"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0002"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0004"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0008"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0016"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0032"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0064"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0128"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0256"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0512"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.1024"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.2048"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="+Inf"} 9 -scheduler_framework_extension_point_duration_seconds_sum{extension_point="Filter",profile="default-scheduler",status="Success"} 0.0007958830000000002 -scheduler_framework_extension_point_duration_seconds_count{extension_point="Filter",profile="default-scheduler",status="Success"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0001"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0002"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0004"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0008"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0016"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0032"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0064"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0128"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0256"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0512"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.1024"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.2048"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="+Inf"} 6 -scheduler_framework_extension_point_duration_seconds_sum{extension_point="Permit",profile="default-scheduler",status="Success"} 7.728e-06 -scheduler_framework_extension_point_duration_seconds_count{extension_point="Permit",profile="default-scheduler",status="Success"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0001"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0002"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0004"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0008"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0016"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0032"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0064"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0128"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0256"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0512"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.1024"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.2048"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="+Inf"} 6 -scheduler_framework_extension_point_duration_seconds_sum{extension_point="PostBind",profile="default-scheduler",status="Success"} 7.348e-06 -scheduler_framework_extension_point_duration_seconds_count{extension_point="PostBind",profile="default-scheduler",status="Success"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0001"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0002"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0004"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0008"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0016"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0032"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0064"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0128"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0256"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0512"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.1024"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.2048"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="+Inf"} 3 -scheduler_framework_extension_point_duration_seconds_sum{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable"} 6.301499999999999e-05 -scheduler_framework_extension_point_duration_seconds_count{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable"} 3 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0001"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0002"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0004"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0008"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0016"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0032"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0064"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0128"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0256"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0512"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.1024"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.2048"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="+Inf"} 6 -scheduler_framework_extension_point_duration_seconds_sum{extension_point="PreBind",profile="default-scheduler",status="Success"} 0.000122495 -scheduler_framework_extension_point_duration_seconds_count{extension_point="PreBind",profile="default-scheduler",status="Success"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0001"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0002"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0004"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0008"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0016"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0032"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0064"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0128"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0256"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0512"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.1024"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.2048"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="+Inf"} 9 -scheduler_framework_extension_point_duration_seconds_sum{extension_point="PreEnqueue",profile="default-scheduler",status="Success"} 0.000139373 -scheduler_framework_extension_point_duration_seconds_count{extension_point="PreEnqueue",profile="default-scheduler",status="Success"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0001"} 7 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0002"} 8 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0004"} 8 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0008"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0016"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0032"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0064"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0128"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0256"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0512"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.1024"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.2048"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="+Inf"} 9 -scheduler_framework_extension_point_duration_seconds_sum{extension_point="PreFilter",profile="default-scheduler",status="Success"} 0.0009478259999999999 -scheduler_framework_extension_point_duration_seconds_count{extension_point="PreFilter",profile="default-scheduler",status="Success"} 9 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0001"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0002"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0004"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0008"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0016"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0032"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0064"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0128"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0256"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0512"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.1024"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.2048"} 6 -scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="+Inf"} 6 -scheduler_framework_extension_point_duration_seconds_sum{extension_point="Reserve",profile="default-scheduler",status="Success"} 1.9262e-05 -scheduler_framework_extension_point_duration_seconds_count{extension_point="Reserve",profile="default-scheduler",status="Success"} 6 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0064"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0128"} 2 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0256"} 2 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.0512"} 2 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.1024"} 3 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="0.2048"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Bind",profile="default-scheduler",status="Success",le="+Inf"} 4 +scheduler_framework_extension_point_duration_seconds_sum{extension_point="Bind",profile="default-scheduler",status="Success"} 0.252910753 +scheduler_framework_extension_point_duration_seconds_count{extension_point="Bind",profile="default-scheduler",status="Success"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0001"} 3 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0002"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0004"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0008"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0016"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0032"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0064"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0128"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0256"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.0512"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.1024"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="0.2048"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Filter",profile="default-scheduler",status="Success",le="+Inf"} 5 +scheduler_framework_extension_point_duration_seconds_sum{extension_point="Filter",profile="default-scheduler",status="Success"} 0.000648609 +scheduler_framework_extension_point_duration_seconds_count{extension_point="Filter",profile="default-scheduler",status="Success"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0001"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0002"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0004"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0008"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0016"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0032"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0064"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0128"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0256"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.0512"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.1024"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="0.2048"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Permit",profile="default-scheduler",status="Success",le="+Inf"} 4 +scheduler_framework_extension_point_duration_seconds_sum{extension_point="Permit",profile="default-scheduler",status="Success"} 7.436e-06 +scheduler_framework_extension_point_duration_seconds_count{extension_point="Permit",profile="default-scheduler",status="Success"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0001"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0002"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0004"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0008"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0016"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0032"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0064"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0128"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0256"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.0512"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.1024"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="0.2048"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostBind",profile="default-scheduler",status="Success",le="+Inf"} 4 +scheduler_framework_extension_point_duration_seconds_sum{extension_point="PostBind",profile="default-scheduler",status="Success"} 1.9804000000000002e-05 +scheduler_framework_extension_point_duration_seconds_count{extension_point="PostBind",profile="default-scheduler",status="Success"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0001"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0002"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0004"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0008"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0016"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0032"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0064"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0128"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0256"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.0512"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.1024"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="0.2048"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable",le="+Inf"} 1 +scheduler_framework_extension_point_duration_seconds_sum{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable"} 1.7721e-05 +scheduler_framework_extension_point_duration_seconds_count{extension_point="PostFilter",profile="default-scheduler",status="Unschedulable"} 1 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0001"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0002"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0004"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0008"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0016"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0032"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0064"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0128"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0256"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.0512"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.1024"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="0.2048"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreBind",profile="default-scheduler",status="Success",le="+Inf"} 4 +scheduler_framework_extension_point_duration_seconds_sum{extension_point="PreBind",profile="default-scheduler",status="Success"} 1.3931e-05 +scheduler_framework_extension_point_duration_seconds_count{extension_point="PreBind",profile="default-scheduler",status="Success"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0001"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0002"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0004"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0008"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0016"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0032"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0064"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0128"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0256"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.0512"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.1024"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="0.2048"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreEnqueue",profile="default-scheduler",status="Success",le="+Inf"} 5 +scheduler_framework_extension_point_duration_seconds_sum{extension_point="PreEnqueue",profile="default-scheduler",status="Success"} 7.071899999999998e-05 +scheduler_framework_extension_point_duration_seconds_count{extension_point="PreEnqueue",profile="default-scheduler",status="Success"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0001"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0002"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0004"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0008"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0016"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0032"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0064"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0128"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0256"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.0512"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.1024"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="0.2048"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="PreFilter",profile="default-scheduler",status="Success",le="+Inf"} 5 +scheduler_framework_extension_point_duration_seconds_sum{extension_point="PreFilter",profile="default-scheduler",status="Success"} 0.000176461 +scheduler_framework_extension_point_duration_seconds_count{extension_point="PreFilter",profile="default-scheduler",status="Success"} 5 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0001"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0002"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0004"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0008"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0016"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0032"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0064"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0128"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0256"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.0512"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.1024"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="0.2048"} 4 +scheduler_framework_extension_point_duration_seconds_bucket{extension_point="Reserve",profile="default-scheduler",status="Success",le="+Inf"} 4 +scheduler_framework_extension_point_duration_seconds_sum{extension_point="Reserve",profile="default-scheduler",status="Success"} 2.5863e-05 +scheduler_framework_extension_point_duration_seconds_count{extension_point="Reserve",profile="default-scheduler",status="Success"} 4 # HELP scheduler_goroutines [ALPHA] Number of running goroutines split by the work they do such as binding. # TYPE scheduler_goroutines gauge scheduler_goroutines{operation="Filter"} 0 @@ -1026,27 +1146,75 @@ scheduler_pending_pods{queue="active"} 0 scheduler_pending_pods{queue="backoff"} 0 scheduler_pending_pods{queue="gated"} 0 scheduler_pending_pods{queue="unschedulable"} 0 -# HELP scheduler_plugin_evaluation_total [ALPHA] Number of attempts to schedule pods by each plugin and the extension point (available only in PreFilter and Filter.). +# HELP scheduler_plugin_evaluation_total [ALPHA] Number of attempts to schedule pods by each plugin and the extension point (available only in PreFilter, Filter, PreScore, and Score). # TYPE scheduler_plugin_evaluation_total counter -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="AzureDiskLimits",profile="default-scheduler"} 6 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="EBSLimits",profile="default-scheduler"} 6 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="GCEPDLimits",profile="default-scheduler"} 6 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeAffinity",profile="default-scheduler"} 6 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeName",profile="default-scheduler"} 9 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodePorts",profile="default-scheduler"} 6 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeResourcesFit",profile="default-scheduler"} 6 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeUnschedulable",profile="default-scheduler"} 9 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeVolumeLimits",profile="default-scheduler"} 6 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="PodTopologySpread",profile="default-scheduler"} 6 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="TaintToleration",profile="default-scheduler"} 9 -scheduler_plugin_evaluation_total{extension_point="Filter",plugin="VolumeRestrictions",profile="default-scheduler"} 6 -scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="NodeAffinity",profile="default-scheduler"} 9 -scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="NodePorts",profile="default-scheduler"} 9 -scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="NodeResourcesFit",profile="default-scheduler"} 9 -scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="PodTopologySpread",profile="default-scheduler"} 9 -scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="VolumeRestrictions",profile="default-scheduler"} 9 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="AzureDiskLimits",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="EBSLimits",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="GCEPDLimits",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="InterPodAffinity",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeAffinity",profile="default-scheduler"} 2 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeName",profile="default-scheduler"} 5 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodePorts",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeResourcesFit",profile="default-scheduler"} 4 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeUnschedulable",profile="default-scheduler"} 5 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="NodeVolumeLimits",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="PodTopologySpread",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="TaintToleration",profile="default-scheduler"} 5 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="VolumeBinding",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="VolumeRestrictions",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Filter",plugin="VolumeZone",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="AzureDiskLimits",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="EBSLimits",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="GCEPDLimits",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="InterPodAffinity",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="NodeAffinity",profile="default-scheduler"} 2 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="NodePorts",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="NodeResourcesFit",profile="default-scheduler"} 5 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="NodeVolumeLimits",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="PodTopologySpread",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="VolumeBinding",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="VolumeRestrictions",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreFilter",plugin="VolumeZone",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreScore",plugin="InterPodAffinity",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreScore",plugin="NodeAffinity",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreScore",plugin="NodeResourcesBalancedAllocation",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreScore",plugin="NodeResourcesFit",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreScore",plugin="PodTopologySpread",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreScore",plugin="TaintToleration",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="PreScore",plugin="VolumeBinding",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Score",plugin="ImageLocality",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Score",plugin="InterPodAffinity",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Score",plugin="NodeAffinity",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Score",plugin="NodeResourcesBalancedAllocation",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Score",plugin="NodeResourcesFit",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Score",plugin="PodTopologySpread",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Score",plugin="TaintToleration",profile="default-scheduler"} 0 +scheduler_plugin_evaluation_total{extension_point="Score",plugin="VolumeBinding",profile="default-scheduler"} 0 # HELP scheduler_plugin_execution_duration_seconds [ALPHA] Duration for running a plugin at a specific extension point. # TYPE scheduler_plugin_execution_duration_seconds histogram +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="1e-05"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="1.5000000000000002e-05"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="2.2500000000000005e-05"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="3.375000000000001e-05"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="5.062500000000001e-05"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="7.593750000000002e-05"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.00011390625000000003"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.00017085937500000006"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.0002562890625000001"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.00038443359375000017"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.0005766503906250003"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.0008649755859375004"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.0012974633789062506"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.0019461950683593758"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.0029192926025390638"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.004378938903808595"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Bind",plugin="DefaultBinder",status="Success",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="Bind",plugin="DefaultBinder",status="Success"} 0.004684277 +scheduler_plugin_execution_duration_seconds_count{extension_point="Bind",plugin="DefaultBinder",status="Success"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeName",status="Success",le="1e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeName",status="Success",le="1.5000000000000002e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeName",status="Success",le="2.2500000000000005e-05"} 1 @@ -1068,8 +1236,31 @@ scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plug scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeName",status="Success",le="0.014778918800354007"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeName",status="Success",le="0.02216837820053101"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeName",status="Success",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="Filter",plugin="NodeName",status="Success"} 1.91e-07 +scheduler_plugin_execution_duration_seconds_sum{extension_point="Filter",plugin="NodeName",status="Success"} 1.15e-07 scheduler_plugin_execution_duration_seconds_count{extension_point="Filter",plugin="NodeName",status="Success"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeResourcesFit",status="Success",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="Filter",plugin="NodeResourcesFit",status="Success"} 1.459e-06 +scheduler_plugin_execution_duration_seconds_count{extension_point="Filter",plugin="NodeResourcesFit",status="Success"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeUnschedulable",status="Success",le="1e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeUnschedulable",status="Success",le="1.5000000000000002e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeUnschedulable",status="Success",le="2.2500000000000005e-05"} 1 @@ -1091,78 +1282,124 @@ scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plug scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeUnschedulable",status="Success",le="0.014778918800354007"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeUnschedulable",status="Success",le="0.02216837820053101"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="NodeUnschedulable",status="Success",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="Filter",plugin="NodeUnschedulable",status="Success"} 5.94e-07 +scheduler_plugin_execution_duration_seconds_sum{extension_point="Filter",plugin="NodeUnschedulable",status="Success"} 3.93e-07 scheduler_plugin_execution_duration_seconds_count{extension_point="Filter",plugin="NodeUnschedulable",status="Success"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="1e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="1.5000000000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="2.2500000000000005e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="3.375000000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="5.062500000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="7.593750000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.00011390625000000003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.00017085937500000006"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.0002562890625000001"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.00038443359375000017"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.0005766503906250003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.0008649755859375004"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.0012974633789062506"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.0019461950683593758"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.0029192926025390638"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.004378938903808595"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.006568408355712893"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.009852612533569338"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.014778918800354007"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="0.02216837820053101"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable"} 4.447e-06 -scheduler_plugin_execution_duration_seconds_count{extension_point="Filter",plugin="TaintToleration",status="UnschedulableAndUnresolvable"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="1e-05"} 0 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="1.5000000000000002e-05"} 0 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="2.2500000000000005e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="3.375000000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="5.062500000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="7.593750000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.00011390625000000003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.00017085937500000006"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.0002562890625000001"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.00038443359375000017"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.0005766503906250003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.0008649755859375004"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.0012974633789062506"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.0019461950683593758"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.0029192926025390638"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.004378938903808595"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.006568408355712893"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.009852612533569338"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.014778918800354007"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="0.02216837820053101"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable"} 1.7988e-05 -scheduler_plugin_execution_duration_seconds_count{extension_point="PostFilter",plugin="DefaultPreemption",status="Unschedulable"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="1e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="1.5000000000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="2.2500000000000005e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="3.375000000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="5.062500000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="7.593750000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.00011390625000000003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.00017085937500000006"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.0002562890625000001"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.00038443359375000017"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.0005766503906250003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.0008649755859375004"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.0012974633789062506"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.0019461950683593758"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.0029192926025390638"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.004378938903808595"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.006568408355712893"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.009852612533569338"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.014778918800354007"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="0.02216837820053101"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success"} 1.5e-06 -scheduler_plugin_execution_duration_seconds_count{extension_point="PreEnqueue",plugin="SchedulingGates",status="Success"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip",le="1e-05"} 0 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Filter",plugin="TaintToleration",status="Success",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="Filter",plugin="TaintToleration",status="Success"} 2.04e-07 +scheduler_plugin_execution_duration_seconds_count{extension_point="Filter",plugin="TaintToleration",status="Success"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreBind",plugin="VolumeBinding",status="Success",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreBind",plugin="VolumeBinding",status="Success"} 1.306e-06 +scheduler_plugin_execution_duration_seconds_count{extension_point="PreBind",plugin="VolumeBinding",status="Success"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip"} 2.68e-07 +scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="AzureDiskLimits",status="Skip"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="EBSLimits",status="Skip",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="EBSLimits",status="Skip"} 1.292e-06 +scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="EBSLimits",status="Skip"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip"} 2.85e-07 +scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="GCEPDLimits",status="Skip"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip",le="1e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip",le="1.5000000000000002e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip",le="2.2500000000000005e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip",le="3.375000000000001e-05"} 1 @@ -1183,54 +1420,54 @@ scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",p scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip",le="0.014778918800354007"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip",le="0.02216837820053101"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip"} 1.3978e-05 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip"} 9.625e-06 scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="InterPodAffinity",status="Skip"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="1e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="1.5000000000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="2.2500000000000005e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="3.375000000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="5.062500000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="7.593750000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.00011390625000000003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.00017085937500000006"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.0002562890625000001"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.00038443359375000017"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.0005766503906250003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.0008649755859375004"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.0012974633789062506"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.0019461950683593758"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.0029192926025390638"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.004378938903808595"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.006568408355712893"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.009852612533569338"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.014778918800354007"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="0.02216837820053101"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Success",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="NodeAffinity",status="Success"} 3.87e-06 -scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="NodeAffinity",status="Success"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="1e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="1.5000000000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="2.2500000000000005e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="3.375000000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="5.062500000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="7.593750000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.00011390625000000003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.00017085937500000006"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.0002562890625000001"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.00038443359375000017"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.0005766503906250003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.0008649755859375004"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.0012974633789062506"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.0019461950683593758"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.0029192926025390638"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.004378938903808595"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.006568408355712893"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.009852612533569338"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.014778918800354007"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="0.02216837820053101"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Success",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="NodePorts",status="Success"} 2.55e-06 -scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="NodePorts",status="Success"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeAffinity",status="Skip",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="NodeAffinity",status="Skip"} 1.429e-06 +scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="NodeAffinity",status="Skip"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodePorts",status="Skip",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="NodePorts",status="Skip"} 8.17e-07 +scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="NodePorts",status="Skip"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeResourcesFit",status="Success",le="1e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeResourcesFit",status="Success",le="1.5000000000000002e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeResourcesFit",status="Success",le="2.2500000000000005e-05"} 1 @@ -1252,31 +1489,54 @@ scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",p scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeResourcesFit",status="Success",le="0.014778918800354007"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeResourcesFit",status="Success",le="0.02216837820053101"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeResourcesFit",status="Success",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="NodeResourcesFit",status="Success"} 4.947e-06 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="NodeResourcesFit",status="Success"} 1.963e-06 scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="NodeResourcesFit",status="Success"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="1e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="1.5000000000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="2.2500000000000005e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="3.375000000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="5.062500000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="7.593750000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.00011390625000000003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.00017085937500000006"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.0002562890625000001"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.00038443359375000017"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.0005766503906250003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.0008649755859375004"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.0012974633789062506"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.0019461950683593758"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.0029192926025390638"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.004378938903808595"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.006568408355712893"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.009852612533569338"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.014778918800354007"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="0.02216837820053101"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Success",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="PodTopologySpread",status="Success"} 2.634e-06 -scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="PodTopologySpread",status="Success"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip"} 3.539e-06 +scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="NodeVolumeLimits",status="Skip"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip"} 1.48e-06 +scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="PodTopologySpread",status="Skip"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeBinding",status="Skip",le="1e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeBinding",status="Skip",le="1.5000000000000002e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeBinding",status="Skip",le="2.2500000000000005e-05"} 1 @@ -1298,31 +1558,31 @@ scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",p scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeBinding",status="Skip",le="0.014778918800354007"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeBinding",status="Skip",le="0.02216837820053101"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeBinding",status="Skip",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="VolumeBinding",status="Skip"} 2.108e-06 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="VolumeBinding",status="Skip"} 2.566e-06 scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="VolumeBinding",status="Skip"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="1e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="1.5000000000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="2.2500000000000005e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="3.375000000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="5.062500000000001e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="7.593750000000002e-05"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.00011390625000000003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.00017085937500000006"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.0002562890625000001"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.00038443359375000017"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.0005766503906250003"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.0008649755859375004"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.0012974633789062506"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.0019461950683593758"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.0029192926025390638"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.004378938903808595"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.006568408355712893"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.009852612533569338"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.014778918800354007"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="0.02216837820053101"} 1 -scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success"} 2.3e-06 -scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="VolumeRestrictions",status="Success"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip"} 8.158e-06 +scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="VolumeRestrictions",status="Skip"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeZone",status="Skip",le="1e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeZone",status="Skip",le="1.5000000000000002e-05"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeZone",status="Skip",le="2.2500000000000005e-05"} 1 @@ -1344,69 +1604,92 @@ scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",p scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeZone",status="Skip",le="0.014778918800354007"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeZone",status="Skip",le="0.02216837820053101"} 1 scheduler_plugin_execution_duration_seconds_bucket{extension_point="PreFilter",plugin="VolumeZone",status="Skip",le="+Inf"} 1 -scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="VolumeZone",status="Skip"} 8.1e-07 +scheduler_plugin_execution_duration_seconds_sum{extension_point="PreFilter",plugin="VolumeZone",status="Skip"} 4.89e-07 scheduler_plugin_execution_duration_seconds_count{extension_point="PreFilter",plugin="VolumeZone",status="Skip"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="1e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="1.5000000000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="2.2500000000000005e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="3.375000000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="5.062500000000001e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="7.593750000000002e-05"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.00011390625000000003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.00017085937500000006"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.0002562890625000001"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.00038443359375000017"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.0005766503906250003"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.0008649755859375004"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.0012974633789062506"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.0019461950683593758"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.0029192926025390638"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.004378938903808595"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.006568408355712893"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.009852612533569338"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.014778918800354007"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="0.02216837820053101"} 1 +scheduler_plugin_execution_duration_seconds_bucket{extension_point="Reserve",plugin="VolumeBinding",status="Success",le="+Inf"} 1 +scheduler_plugin_execution_duration_seconds_sum{extension_point="Reserve",plugin="VolumeBinding",status="Success"} 1.149e-06 +scheduler_plugin_execution_duration_seconds_count{extension_point="Reserve",plugin="VolumeBinding",status="Success"} 1 # HELP scheduler_pod_scheduling_attempts [STABLE] Number of attempts to successfully schedule a pod. # TYPE scheduler_pod_scheduling_attempts histogram scheduler_pod_scheduling_attempts_bucket{le="1"} 3 -scheduler_pod_scheduling_attempts_bucket{le="2"} 6 -scheduler_pod_scheduling_attempts_bucket{le="4"} 6 -scheduler_pod_scheduling_attempts_bucket{le="8"} 6 -scheduler_pod_scheduling_attempts_bucket{le="16"} 6 -scheduler_pod_scheduling_attempts_bucket{le="+Inf"} 6 -scheduler_pod_scheduling_attempts_sum 9 -scheduler_pod_scheduling_attempts_count 6 -# HELP scheduler_pod_scheduling_duration_seconds [STABLE] E2e latency for a pod being scheduled which may include multiple scheduling attempts. -# TYPE scheduler_pod_scheduling_duration_seconds histogram -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="0.01"} 2 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="0.02"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="0.04"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="0.08"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="0.16"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="0.32"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="0.64"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="1.28"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="2.56"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="5.12"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="10.24"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="20.48"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="40.96"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="81.92"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="163.84"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="327.68"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="655.36"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="1310.72"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="2621.44"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="5242.88"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="1",le="+Inf"} 3 -scheduler_pod_scheduling_duration_seconds_sum{attempts="1"} 0.025937717 -scheduler_pod_scheduling_duration_seconds_count{attempts="1"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="0.01"} 0 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="0.02"} 0 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="0.04"} 0 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="0.08"} 0 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="0.16"} 0 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="0.32"} 0 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="0.64"} 0 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="1.28"} 0 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="2.56"} 0 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="5.12"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="10.24"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="20.48"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="40.96"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="81.92"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="163.84"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="327.68"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="655.36"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="1310.72"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="2621.44"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="5242.88"} 3 -scheduler_pod_scheduling_duration_seconds_bucket{attempts="2",le="+Inf"} 3 -scheduler_pod_scheduling_duration_seconds_sum{attempts="2"} 12.24573007 -scheduler_pod_scheduling_duration_seconds_count{attempts="2"} 3 +scheduler_pod_scheduling_attempts_bucket{le="2"} 4 +scheduler_pod_scheduling_attempts_bucket{le="4"} 4 +scheduler_pod_scheduling_attempts_bucket{le="8"} 4 +scheduler_pod_scheduling_attempts_bucket{le="16"} 4 +scheduler_pod_scheduling_attempts_bucket{le="+Inf"} 4 +scheduler_pod_scheduling_attempts_sum 5 +scheduler_pod_scheduling_attempts_count 4 +# HELP scheduler_pod_scheduling_sli_duration_seconds [BETA] E2e latency for a pod being scheduled, from the time the pod enters the scheduling queue an d might involve multiple scheduling attempts. +# TYPE scheduler_pod_scheduling_sli_duration_seconds histogram +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="0.01"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="0.02"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="0.04"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="0.08"} 2 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="0.16"} 2 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="0.32"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="0.64"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="1.28"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="2.56"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="5.12"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="10.24"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="20.48"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="40.96"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="81.92"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="163.84"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="327.68"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="655.36"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="1310.72"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="2621.44"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="5242.88"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="1",le="+Inf"} 3 +scheduler_pod_scheduling_sli_duration_seconds_sum{attempts="1"} 0.24951579799999998 +scheduler_pod_scheduling_sli_duration_seconds_count{attempts="1"} 3 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="0.01"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="0.02"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="0.04"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="0.08"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="0.16"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="0.32"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="0.64"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="1.28"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="2.56"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="5.12"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="10.24"} 0 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="20.48"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="40.96"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="81.92"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="163.84"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="327.68"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="655.36"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="1310.72"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="2621.44"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="5242.88"} 1 +scheduler_pod_scheduling_sli_duration_seconds_bucket{attempts="2",le="+Inf"} 1 +scheduler_pod_scheduling_sli_duration_seconds_sum{attempts="2"} 11.805764317 +scheduler_pod_scheduling_sli_duration_seconds_count{attempts="2"} 1 # HELP scheduler_preemption_attempts_total [STABLE] Total preemption attempts in the cluster till now # TYPE scheduler_preemption_attempts_total counter -scheduler_preemption_attempts_total 3 +scheduler_preemption_attempts_total 1 # HELP scheduler_preemption_victims [STABLE] Number of selected preemption victims # TYPE scheduler_preemption_victims histogram scheduler_preemption_victims_bucket{le="1"} 0 @@ -1421,83 +1704,83 @@ scheduler_preemption_victims_sum 0 scheduler_preemption_victims_count 0 # HELP scheduler_queue_incoming_pods_total [STABLE] Number of pods added to scheduling queues by event and queue type. # TYPE scheduler_queue_incoming_pods_total counter -scheduler_queue_incoming_pods_total{event="NodeTaintChange",queue="active"} 3 -scheduler_queue_incoming_pods_total{event="PodAdd",queue="active"} 6 -scheduler_queue_incoming_pods_total{event="ScheduleAttemptFailure",queue="unschedulable"} 3 +scheduler_queue_incoming_pods_total{event="NodeTaintChange",queue="active"} 1 +scheduler_queue_incoming_pods_total{event="PodAdd",queue="active"} 4 +scheduler_queue_incoming_pods_total{event="ScheduleAttemptFailure",queue="unschedulable"} 1 # HELP scheduler_schedule_attempts_total [STABLE] Number of attempts to schedule pods, by the result. 'unschedulable' means a pod could not be scheduled, while 'error' means an internal scheduler problem. # TYPE scheduler_schedule_attempts_total counter -scheduler_schedule_attempts_total{profile="default-scheduler",result="scheduled"} 6 -scheduler_schedule_attempts_total{profile="default-scheduler",result="unschedulable"} 3 +scheduler_schedule_attempts_total{profile="default-scheduler",result="scheduled"} 4 +scheduler_schedule_attempts_total{profile="default-scheduler",result="unschedulable"} 1 # HELP scheduler_scheduler_cache_size [ALPHA] Number of nodes, pods, and assumed (bound) pods in the scheduler cache. # TYPE scheduler_scheduler_cache_size gauge scheduler_scheduler_cache_size{type="assumed_pods"} 0 scheduler_scheduler_cache_size{type="nodes"} 1 -scheduler_scheduler_cache_size{type="pods"} 10 +scheduler_scheduler_cache_size{type="pods"} 8 # HELP scheduler_scheduling_algorithm_duration_seconds [ALPHA] Scheduling algorithm latency in seconds # TYPE scheduler_scheduling_algorithm_duration_seconds histogram -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.001"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.002"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.004"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.008"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.016"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.032"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.064"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.128"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.256"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.512"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="1.024"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="2.048"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="4.096"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="8.192"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="16.384"} 6 -scheduler_scheduling_algorithm_duration_seconds_bucket{le="+Inf"} 6 -scheduler_scheduling_algorithm_duration_seconds_sum 0.001461413 -scheduler_scheduling_algorithm_duration_seconds_count 6 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.001"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.002"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.004"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.008"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.016"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.032"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.064"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.128"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.256"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="0.512"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="1.024"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="2.048"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="4.096"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="8.192"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="16.384"} 5 +scheduler_scheduling_algorithm_duration_seconds_bucket{le="+Inf"} 5 +scheduler_scheduling_algorithm_duration_seconds_sum 0.001147491 +scheduler_scheduling_algorithm_duration_seconds_count 5 # HELP scheduler_scheduling_attempt_duration_seconds [STABLE] Scheduling attempt latency in seconds (scheduling algorithm + binding) # TYPE scheduler_scheduling_attempt_duration_seconds histogram scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.001"} 0 scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.002"} 0 scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.004"} 0 scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.008"} 2 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.016"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.032"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.064"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.128"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.256"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.512"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="1.024"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="2.048"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="4.096"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="8.192"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="16.384"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="+Inf"} 6 -scheduler_scheduling_attempt_duration_seconds_sum{profile="default-scheduler",result="scheduled"} 0.052896684 -scheduler_scheduling_attempt_duration_seconds_count{profile="default-scheduler",result="scheduled"} 6 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.001"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.002"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.004"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.008"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.016"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.032"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.064"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.128"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.256"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.512"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="1.024"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="2.048"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="4.096"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="8.192"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="16.384"} 3 -scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="+Inf"} 3 -scheduler_scheduling_attempt_duration_seconds_sum{profile="default-scheduler",result="unschedulable"} 0.000695599 -scheduler_scheduling_attempt_duration_seconds_count{profile="default-scheduler",result="unschedulable"} 3 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.016"} 2 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.032"} 2 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.064"} 3 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.128"} 3 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.256"} 4 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="0.512"} 4 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="1.024"} 4 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="2.048"} 4 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="4.096"} 4 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="8.192"} 4 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="16.384"} 4 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="scheduled",le="+Inf"} 4 +scheduler_scheduling_attempt_duration_seconds_sum{profile="default-scheduler",result="scheduled"} 0.25439238200000003 +scheduler_scheduling_attempt_duration_seconds_count{profile="default-scheduler",result="scheduled"} 4 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.001"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.002"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.004"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.008"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.016"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.032"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.064"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.128"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.256"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="0.512"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="1.024"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="2.048"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="4.096"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="8.192"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="16.384"} 1 +scheduler_scheduling_attempt_duration_seconds_bucket{profile="default-scheduler",result="unschedulable",le="+Inf"} 1 +scheduler_scheduling_attempt_duration_seconds_sum{profile="default-scheduler",result="unschedulable"} 0.000298987 +scheduler_scheduling_attempt_duration_seconds_count{profile="default-scheduler",result="unschedulable"} 1 # HELP scheduler_unschedulable_pods [ALPHA] The number of unschedulable pods broken down by plugin name. A pod will increment the gauge for all plugins that caused it to not schedule and so this metric have meaning only when broken down by plugin. # TYPE scheduler_unschedulable_pods gauge scheduler_unschedulable_pods{plugin="TaintToleration",profile="default-scheduler"} 0 # HELP workqueue_adds_total [ALPHA] Total number of adds handled by workqueue # TYPE workqueue_adds_total counter -workqueue_adds_total{name="DynamicConfigMapCABundle-client-ca"} 21 -workqueue_adds_total{name="DynamicServingCertificateController"} 21 +workqueue_adds_total{name="DynamicConfigMapCABundle-client-ca"} 10 +workqueue_adds_total{name="DynamicServingCertificateController"} 10 workqueue_adds_total{name="RequestHeaderAuthRequestController"} 0 # HELP workqueue_depth [ALPHA] Current depth of workqueue # TYPE workqueue_depth gauge @@ -1515,28 +1798,28 @@ workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="1e-06"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="9.999999999999999e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="9.999999999999999e-05"} 18 -workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.001"} 20 -workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.01"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.1"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="1"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="10"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="+Inf"} 21 -workqueue_queue_duration_seconds_sum{name="DynamicConfigMapCABundle-client-ca"} 0.007058608 -workqueue_queue_duration_seconds_count{name="DynamicConfigMapCABundle-client-ca"} 21 +workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="9.999999999999999e-05"} 8 +workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.001"} 9 +workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.01"} 9 +workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.1"} 10 +workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="1"} 10 +workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="10"} 10 +workqueue_queue_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="+Inf"} 10 +workqueue_queue_duration_seconds_sum{name="DynamicConfigMapCABundle-client-ca"} 0.012691912 +workqueue_queue_duration_seconds_count{name="DynamicConfigMapCABundle-client-ca"} 10 workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-06"} 0 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-05"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.001"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.01"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.1"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="10"} 21 -workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="+Inf"} 21 -workqueue_queue_duration_seconds_sum{name="DynamicServingCertificateController"} 0.0008254900000000001 -workqueue_queue_duration_seconds_count{name="DynamicServingCertificateController"} 21 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-06"} 1 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-05"} 8 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.001"} 10 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.01"} 10 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.1"} 10 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="1"} 10 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="10"} 10 +workqueue_queue_duration_seconds_bucket{name="DynamicServingCertificateController",le="+Inf"} 10 +workqueue_queue_duration_seconds_sum{name="DynamicServingCertificateController"} 0.00045570900000000005 +workqueue_queue_duration_seconds_count{name="DynamicServingCertificateController"} 10 workqueue_queue_duration_seconds_bucket{name="RequestHeaderAuthRequestController",le="1e-08"} 0 workqueue_queue_duration_seconds_bucket{name="RequestHeaderAuthRequestController",le="1e-07"} 0 workqueue_queue_duration_seconds_bucket{name="RequestHeaderAuthRequestController",le="1e-06"} 0 @@ -1565,29 +1848,29 @@ workqueue_unfinished_work_seconds{name="RequestHeaderAuthRequestController"} 0 workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="1e-06"} 0 -workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="9.999999999999999e-06"} 1 -workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="9.999999999999999e-05"} 20 -workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.001"} 21 -workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.01"} 21 -workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.1"} 21 -workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="1"} 21 -workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="10"} 21 -workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="+Inf"} 21 -workqueue_work_duration_seconds_sum{name="DynamicConfigMapCABundle-client-ca"} 0.0007422840000000001 -workqueue_work_duration_seconds_count{name="DynamicConfigMapCABundle-client-ca"} 21 +workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="9.999999999999999e-06"} 2 +workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="9.999999999999999e-05"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.001"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.01"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="0.1"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="1"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="10"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicConfigMapCABundle-client-ca",le="+Inf"} 10 +workqueue_work_duration_seconds_sum{name="DynamicConfigMapCABundle-client-ca"} 0.000200986 +workqueue_work_duration_seconds_count{name="DynamicConfigMapCABundle-client-ca"} 10 workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1e-06"} 0 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-06"} 0 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-05"} 20 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.001"} 20 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.01"} 21 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.1"} 21 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1"} 21 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="10"} 21 -workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="+Inf"} 21 -workqueue_work_duration_seconds_sum{name="DynamicServingCertificateController"} 0.0016760350000000002 -workqueue_work_duration_seconds_count{name="DynamicServingCertificateController"} 21 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-06"} 7 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="9.999999999999999e-05"} 9 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.001"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.01"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="0.1"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="1"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="10"} 10 +workqueue_work_duration_seconds_bucket{name="DynamicServingCertificateController",le="+Inf"} 10 +workqueue_work_duration_seconds_sum{name="DynamicServingCertificateController"} 0.000554516 +workqueue_work_duration_seconds_count{name="DynamicServingCertificateController"} 10 workqueue_work_duration_seconds_bucket{name="RequestHeaderAuthRequestController",le="1e-08"} 0 workqueue_work_duration_seconds_bucket{name="RequestHeaderAuthRequestController",le="1e-07"} 0 workqueue_work_duration_seconds_bucket{name="RequestHeaderAuthRequestController",le="1e-06"} 0 @@ -1600,4 +1883,4 @@ workqueue_work_duration_seconds_bucket{name="RequestHeaderAuthRequestController" workqueue_work_duration_seconds_bucket{name="RequestHeaderAuthRequestController",le="10"} 0 workqueue_work_duration_seconds_bucket{name="RequestHeaderAuthRequestController",le="+Inf"} 0 workqueue_work_duration_seconds_sum{name="RequestHeaderAuthRequestController"} 0 -workqueue_work_duration_seconds_count{name="RequestHeaderAuthRequestController"} 0 +workqueue_work_duration_seconds_count{name="RequestHeaderAuthRequestController"} 0 \ No newline at end of file diff --git a/metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.27.expected b/metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.31.expected similarity index 57% rename from metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.27.expected rename to metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.31.expected index 5ad056870b4..c63d913c15c 100644 --- a/metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.27.expected +++ b/metricbeat/module/kubernetes/scheduler/_meta/test/metrics.1.31.expected @@ -8,42 +8,42 @@ "duration": { "us": { "bucket": { - "+Inf": 21, - "100000": 21, - "1000000": 21, - "15000000": 21, - "2000000": 21, - "25000": 21, - "250000": 21, - "30000000": 21, - "4000000": 21, - "5000": 6, - "500000": 21, - "60000000": 21, - "8000000": 21 + "+Inf": 44, + "100000": 43, + "1000000": 43, + "15000000": 44, + "2000000": 44, + "25000": 36, + "250000": 43, + "30000000": 44, + "4000000": 44, + "5000": 26, + "500000": 43, + "60000000": 44, + "8000000": 44 }, - "count": 21, - "sum": 128073.85899999995 + "count": 44, + "sum": 1516283.6270000006 } }, "size": { "bytes": { "bucket": { - "+Inf": 21, - "1024": 19, - "1048576": 21, - "16384": 21, - "16777216": 21, - "256": 7, - "262144": 21, - "4096": 21, - "4194304": 21, - "512": 17, - "64": 0, - "65536": 21 + "+Inf": 44, + "1024": 44, + "1048576": 44, + "16384": 44, + "16777216": 44, + "256": 44, + "262144": 44, + "4096": 44, + "4194304": 44, + "512": 44, + "64": 44, + "65536": 44 }, - "count": 21, - "sum": 8318 + "count": 44, + "sum": 0 } } }, @@ -51,61 +51,27 @@ "size": { "bytes": { "bucket": { - "+Inf": 21, - "1024": 17, - "1048576": 21, - "16384": 21, - "16777216": 21, - "256": 6, - "262144": 21, - "4096": 21, - "4194304": 21, - "512": 7, - "64": 6, - "65536": 21 + "+Inf": 44, + "1024": 40, + "1048576": 44, + "16384": 44, + "16777216": 44, + "256": 32, + "262144": 44, + "4096": 44, + "4194304": 44, + "512": 39, + "64": 10, + "65536": 44 }, - "count": 21, - "sum": 12863 + "count": 44, + "sum": 17474 } } } }, - "host": "172.18.0.2:6443", - "verb": "POST" - }, - "Index": "", - "ID": "", - "Namespace": "", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false - }, - { - "RootFields": {}, - "ModuleFields": null, - "MetricSetFields": { - "name": "DynamicServingCertificateController", - "workqueue": { - "adds": { - "count": 21 - }, - "depth": { - "count": 0 - }, - "longestrunning": { - "sec": 0 - }, - "retries": { - "count": 0 - }, - "unfinished": { - "sec": 0 - } - } + "host": "192.168.58.2:8443", + "verb": "GET" }, "Index": "", "ID": "", @@ -124,12 +90,12 @@ "MetricSetFields": { "client": { "request": { - "count": 3 + "count": 29 } }, - "code": "200", - "host": "172.18.0.2:6443", - "method": "PATCH" + "code": "403", + "host": "192.168.58.2:8443", + "method": "GET" }, "Index": "", "ID": "", @@ -148,11 +114,11 @@ "MetricSetFields": { "client": { "request": { - "count": 1 + "count": 41 } }, - "code": "404", - "host": "172.18.0.2:6443", + "code": "200", + "host": "192.168.58.2:8443", "method": "GET" }, "Index": "", @@ -166,40 +132,6 @@ "Period": 0, "DisableTimeSeries": false }, - { - "RootFields": {}, - "ModuleFields": null, - "MetricSetFields": { - "name": "DynamicConfigMapCABundle-client-ca", - "workqueue": { - "adds": { - "count": 21 - }, - "depth": { - "count": 0 - }, - "longestrunning": { - "sec": 0 - }, - "retries": { - "count": 0 - }, - "unfinished": { - "sec": 0 - } - } - }, - "Index": "", - "ID": "", - "Namespace": "", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false - }, { "RootFields": {}, "ModuleFields": null, @@ -209,42 +141,42 @@ "duration": { "us": { "bucket": { - "+Inf": 3, - "100000": 3, - "1000000": 3, - "15000000": 3, - "2000000": 3, - "25000": 3, - "250000": 3, - "30000000": 3, - "4000000": 3, - "5000": 0, - "500000": 3, - "60000000": 3, - "8000000": 3 + "+Inf": 13, + "100000": 11, + "1000000": 13, + "15000000": 13, + "2000000": 13, + "25000": 10, + "250000": 13, + "30000000": 13, + "4000000": 13, + "5000": 6, + "500000": 13, + "60000000": 13, + "8000000": 13 }, - "count": 3, - "sum": 36600.51900000001 + "count": 13, + "sum": 429212.684 } }, "size": { "bytes": { "bucket": { - "+Inf": 3, - "1024": 3, - "1048576": 3, - "16384": 3, - "16777216": 3, - "256": 0, - "262144": 3, - "4096": 3, - "4194304": 3, - "512": 3, + "+Inf": 13, + "1024": 11, + "1048576": 13, + "16384": 13, + "16777216": 13, + "256": 4, + "262144": 13, + "4096": 13, + "4194304": 13, + "512": 9, "64": 0, - "65536": 3 + "65536": 13 }, - "count": 3, - "sum": 1029 + "count": 13, + "sum": 6520 } } }, @@ -252,27 +184,27 @@ "size": { "bytes": { "bucket": { - "+Inf": 3, - "1024": 0, - "1048576": 3, - "16384": 3, - "16777216": 3, - "256": 0, - "262144": 3, - "4096": 3, - "4194304": 3, - "512": 0, - "64": 0, - "65536": 3 + "+Inf": 13, + "1024": 9, + "1048576": 13, + "16384": 13, + "16777216": 13, + "256": 4, + "262144": 13, + "4096": 13, + "4194304": 13, + "512": 4, + "64": 4, + "65536": 13 }, - "count": 3, - "sum": 10950 + "count": 13, + "sum": 10662 } } } }, - "host": "172.18.0.2:6443", - "verb": "PATCH" + "host": "192.168.58.2:8443", + "verb": "POST" }, "Index": "", "ID": "", @@ -289,14 +221,36 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "client": { - "request": { - "count": 589 + "profile": "default-scheduler", + "result": "unschedulable", + "scheduling": { + "attempts": { + "duration": { + "us": { + "bucket": { + "+Inf": 1, + "1000": 1, + "1024000": 1, + "128000": 1, + "16000": 1, + "16384000": 1, + "2000": 1, + "2048000": 1, + "256000": 1, + "32000": 1, + "4000": 1, + "4096000": 1, + "512000": 1, + "64000": 1, + "8000": 1, + "8192000": 1 + }, + "count": 1, + "sum": 298.987 + } + } } - }, - "code": "200", - "host": "172.18.0.2:6443", - "method": "PUT" + } }, "Index": "", "ID": "", @@ -313,75 +267,38 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "client": { - "request": { - "duration": { - "us": { - "bucket": { - "+Inf": 634, - "100000": 633, - "1000000": 633, - "15000000": 634, - "2000000": 633, - "25000": 633, - "250000": 633, - "30000000": 634, - "4000000": 634, - "5000": 620, - "500000": 633, - "60000000": 634, - "8000000": 634 - }, - "count": 634, - "sum": 4443225.512000004 - } - }, - "size": { - "bytes": { - "bucket": { - "+Inf": 634, - "1024": 634, - "1048576": 634, - "16384": 634, - "16777216": 634, - "256": 634, - "262144": 634, - "4096": 634, - "4194304": 634, - "512": 634, - "64": 634, - "65536": 634 - }, - "count": 634, - "sum": 0 - } + "queue": "gated", + "scheduling": { + "pending": { + "pods": { + "count": 0 } - }, - "response": { - "size": { - "bytes": { - "bucket": { - "+Inf": 634, - "1024": 629, - "1048576": 634, - "16384": 634, - "16777216": 634, - "256": 33, - "262144": 634, - "4096": 634, - "4194304": 634, - "512": 628, - "64": 9, - "65536": 634 - }, - "count": 634, - "sum": 271449 - } + } + } + }, + "Index": "", + "ID": "", + "Namespace": "", + "Timestamp": "0001-01-01T00:00:00Z", + "Error": null, + "Host": "", + "Service": "", + "Took": 0, + "Period": 0, + "DisableTimeSeries": false + }, + { + "RootFields": {}, + "ModuleFields": null, + "MetricSetFields": { + "queue": "unschedulable", + "scheduling": { + "pending": { + "pods": { + "count": 0 } } - }, - "host": "172.18.0.2:6443", - "verb": "GET" + } }, "Index": "", "ID": "", @@ -398,14 +315,24 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "client": { - "request": { - "count": 21 + "name": "RequestHeaderAuthRequestController", + "workqueue": { + "adds": { + "count": 0 + }, + "depth": { + "count": 0 + }, + "longestrunning": { + "sec": 0 + }, + "retries": { + "count": 0 + }, + "unfinished": { + "sec": 0 } - }, - "code": "201", - "host": "172.18.0.2:6443", - "method": "POST" + } }, "Index": "", "ID": "", @@ -424,7 +351,7 @@ "MetricSetFields": { "process": { "cpu": { - "sec": 8 + "sec": 3 }, "fds": { "max": { @@ -436,20 +363,20 @@ }, "memory": { "resident": { - "bytes": 58523648 + "bytes": 59043840 }, "virtual": { - "bytes": 785260544 + "bytes": 1317883904 } }, "started": { - "sec": 1691572169.15 + "sec": 1714044432.82 } }, "scheduling": { "preemption": { "attempts": { - "count": 3 + "count": 1 }, "victims": { "bucket": { @@ -483,12 +410,22 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "queue": "gated", - "scheduling": { - "pending": { - "pods": { - "count": 0 - } + "name": "DynamicServingCertificateController", + "workqueue": { + "adds": { + "count": 10 + }, + "depth": { + "count": 0 + }, + "longestrunning": { + "sec": 0 + }, + "retries": { + "count": 0 + }, + "unfinished": { + "sec": 0 } } }, @@ -512,42 +449,42 @@ "duration": { "us": { "bucket": { - "+Inf": 589, - "100000": 589, - "1000000": 589, - "15000000": 589, - "2000000": 589, - "25000": 588, - "250000": 589, - "30000000": 589, - "4000000": 589, - "5000": 50, - "500000": 589, - "60000000": 589, - "8000000": 589 + "+Inf": 1, + "100000": 1, + "1000000": 1, + "15000000": 1, + "2000000": 1, + "25000": 0, + "250000": 1, + "30000000": 1, + "4000000": 1, + "5000": 0, + "500000": 1, + "60000000": 1, + "8000000": 1 }, - "count": 589, - "sum": 5999108.381000003 + "count": 1, + "sum": 34555.265 } }, "size": { "bytes": { "bucket": { - "+Inf": 589, - "1024": 589, - "1048576": 589, - "16384": 589, - "16777216": 589, + "+Inf": 1, + "1024": 1, + "1048576": 1, + "16384": 1, + "16777216": 1, "256": 0, - "262144": 589, - "4096": 589, - "4194304": 589, - "512": 589, + "262144": 1, + "4096": 1, + "4194304": 1, + "512": 1, "64": 0, - "65536": 589 + "65536": 1 }, - "count": 589, - "sum": 250590 + "count": 1, + "sum": 342 } } }, @@ -555,27 +492,27 @@ "size": { "bytes": { "bucket": { - "+Inf": 589, - "1024": 589, - "1048576": 589, - "16384": 589, - "16777216": 589, + "+Inf": 1, + "1024": 0, + "1048576": 1, + "16384": 1, + "16777216": 1, "256": 0, - "262144": 589, - "4096": 589, - "4194304": 589, - "512": 589, + "262144": 1, + "4096": 1, + "4194304": 1, + "512": 0, "64": 0, - "65536": 589 + "65536": 1 }, - "count": 589, - "sum": 250591 + "count": 1, + "sum": 2891 } } } }, - "host": "172.18.0.2:6443", - "verb": "PUT" + "host": "192.168.58.2:8443", + "verb": "PATCH" }, "Index": "", "ID": "", @@ -592,10 +529,14 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "leader": { - "is_master": true + "client": { + "request": { + "count": 1 + } }, - "name": "kube-scheduler" + "code": "200", + "host": "192.168.58.2:8443", + "method": "PATCH" }, "Index": "", "ID": "", @@ -612,33 +553,11 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "profile": "default-scheduler", - "result": "unschedulable", + "queue": "backoff", "scheduling": { - "attempts": { - "duration": { - "us": { - "bucket": { - "+Inf": 3, - "1000": 3, - "1024000": 3, - "128000": 3, - "16000": 3, - "16384000": 3, - "2000": 3, - "2048000": 3, - "256000": 3, - "32000": 3, - "4000": 3, - "4096000": 3, - "512000": 3, - "64000": 3, - "8000": 3, - "8192000": 3 - }, - "count": 3, - "sum": 695.5989999999999 - } + "pending": { + "pods": { + "count": 0 } } } @@ -658,11 +577,33 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "queue": "unschedulable", + "profile": "default-scheduler", + "result": "scheduled", "scheduling": { - "pending": { - "pods": { - "count": 0 + "attempts": { + "duration": { + "us": { + "bucket": { + "+Inf": 4, + "1000": 0, + "1024000": 4, + "128000": 3, + "16000": 2, + "16384000": 4, + "2000": 0, + "2048000": 4, + "256000": 4, + "32000": 2, + "4000": 0, + "4096000": 4, + "512000": 4, + "64000": 3, + "8000": 2, + "8192000": 4 + }, + "count": 4, + "sum": 254392.38200000004 + } } } } @@ -682,10 +623,10 @@ "RootFields": {}, "ModuleFields": null, "MetricSetFields": { - "name": "RequestHeaderAuthRequestController", + "name": "DynamicConfigMapCABundle-client-ca", "workqueue": { "adds": { - "count": 0 + "count": 10 }, "depth": { "count": 0 @@ -718,106 +659,12 @@ "MetricSetFields": { "client": { "request": { - "count": 29 - } - }, - "code": "403", - "host": "172.18.0.2:6443", - "method": "GET" - }, - "Index": "", - "ID": "", - "Namespace": "", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false - }, - { - "RootFields": {}, - "ModuleFields": null, - "MetricSetFields": { - "queue": "backoff", - "scheduling": { - "pending": { - "pods": { - "count": 0 - } - } - } - }, - "Index": "", - "ID": "", - "Namespace": "", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false - }, - { - "RootFields": {}, - "ModuleFields": null, - "MetricSetFields": { - "profile": "default-scheduler", - "result": "scheduled", - "scheduling": { - "attempts": { - "duration": { - "us": { - "bucket": { - "+Inf": 6, - "1000": 0, - "1024000": 6, - "128000": 6, - "16000": 6, - "16384000": 6, - "2000": 0, - "2048000": 6, - "256000": 6, - "32000": 6, - "4000": 0, - "4096000": 6, - "512000": 6, - "64000": 6, - "8000": 2, - "8192000": 6 - }, - "count": 6, - "sum": 52896.684 - } - } - } - } - }, - "Index": "", - "ID": "", - "Namespace": "", - "Timestamp": "0001-01-01T00:00:00Z", - "Error": null, - "Host": "", - "Service": "", - "Took": 0, - "Period": 0, - "DisableTimeSeries": false - }, - { - "RootFields": {}, - "ModuleFields": null, - "MetricSetFields": { - "client": { - "request": { - "count": 650 + "count": 13 } }, - "code": "200", - "host": "172.18.0.2:6443", - "method": "GET" + "code": "201", + "host": "192.168.58.2:8443", + "method": "POST" }, "Index": "", "ID": "", diff --git a/metricbeat/module/kubernetes/scheduler/scheduler_test.go b/metricbeat/module/kubernetes/scheduler/scheduler_test.go index 6537d51ccc3..6fa1164b839 100644 --- a/metricbeat/module/kubernetes/scheduler/scheduler_test.go +++ b/metricbeat/module/kubernetes/scheduler/scheduler_test.go @@ -30,10 +30,10 @@ import ( ) var files = []string{ - "./_meta/test/metrics.1.27", "./_meta/test/metrics.1.28", "./_meta/test/metrics.1.29", "./_meta/test/metrics.1.30", + "./_meta/test/metrics.1.31", } func TestEventMapping(t *testing.T) { From 1e9425962af3c2e1fefe27f3cb76f3b372bc8440 Mon Sep 17 00:00:00 2001 From: Blake Rouse Date: Mon, 30 Sep 2024 16:56:44 -0400 Subject: [PATCH 5/6] Fix prometheus imports to match OTel (#41014) --- NOTICE.txt | 2778 +++++++++++------ go.mod | 53 +- go.sum | 1408 +-------- metricbeat/helper/openmetrics/openmetrics.go | 4 - metricbeat/helper/prometheus/prometheus.go | 4 - metricbeat/helper/prometheus/textparse.go | 47 +- .../helper/prometheus/textparse_test.go | 2 +- metricbeat/module/docker/image/image.go | 4 +- .../module/openmetrics/collector/collector.go | 8 +- .../openmetrics/collector/collector_test.go | 36 +- .../module/openmetrics/collector/data.go | 22 +- .../module/prometheus/collector/collector.go | 6 +- .../prometheus/collector/collector_test.go | 32 +- .../providers/nomad/nomad_test.go | 4 - x-pack/libbeat/common/nomad/metadata_test.go | 2 - 15 files changed, 1935 insertions(+), 2475 deletions(-) diff --git a/NOTICE.txt b/NOTICE.txt index 908dc9974b5..79efb18c890 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -11350,11 +11350,11 @@ third-party archives. -------------------------------------------------------------------------------- Dependency : github.com/docker/docker -Version: v26.1.5+incompatible +Version: v27.3.1+incompatible Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/docker/docker@v26.1.5+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/docker/docker@v27.3.1+incompatible/LICENSE: Apache License @@ -19302,11 +19302,13 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice -------------------------------------------------------------------------------- Dependency : github.com/hashicorp/golang-lru -Version: v0.5.4 +Version: v0.6.0 Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/golang-lru@v0.5.4/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/golang-lru@v0.6.0/LICENSE: + +Copyright (c) 2014 HashiCorp, Inc. Mozilla Public License, version 2.0 @@ -19674,11 +19676,13 @@ Exhibit B - "Incompatible With Secondary Licenses" Notice -------------------------------------------------------------------------------- Dependency : github.com/hashicorp/nomad/api -Version: v0.0.0-20201203164818-6318a8ac7bf8 +Version: v0.0.0-20240717122358-3d93bd3778f3 Licence type (autodetected): MPL-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/nomad/api@v0.0.0-20201203164818-6318a8ac7bf8/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/nomad/api@v0.0.0-20240717122358-3d93bd3778f3/LICENSE: + +Copyright (c) 2015 HashiCorp, Inc. Mozilla Public License, version 2.0 @@ -20699,11 +20703,11 @@ SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/miekg/dns -Version: v1.1.42 +Version: v1.1.61 Licence type (autodetected): BSD -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/miekg/dns@v1.1.42/COPYRIGHT: +Contents of probable licence file $GOMODCACHE/github.com/miekg/dns@v1.1.61/COPYRIGHT: Copyright 2009 The Go Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. @@ -21997,11 +22001,11 @@ Contents of probable licence file $GOMODCACHE/github.com/prometheus/procfs@v0.15 -------------------------------------------------------------------------------- Dependency : github.com/prometheus/prometheus -Version: v1.8.2-0.20210701133801-b0944590a1c9 +Version: v0.54.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/prometheus/prometheus@v1.8.2-0.20210701133801-b0944590a1c9/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/prometheus/prometheus@v0.54.1/LICENSE: Apache License Version 2.0, January 2004 @@ -24196,11 +24200,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- Dependency : go.mongodb.org/mongo-driver -Version: v1.5.1 +Version: v1.14.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/go.mongodb.org/mongo-driver@v1.5.1/LICENSE: +Contents of probable licence file $GOMODCACHE/go.mongodb.org/mongo-driver@v1.14.0/LICENSE: Apache License Version 2.0, January 2004 @@ -34472,12 +34476,12 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go -Version: v1.38.60 +Dependency : github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream +Version: v1.6.4 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go@v1.38.60/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream@v1.6.4/LICENSE.txt: Apache License @@ -34684,12 +34688,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go@v1.38.60 -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream -Version: v1.6.4 +Dependency : github.com/aws/aws-sdk-go-v2/internal/configsources +Version: v1.3.16 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream@v1.6.4/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/internal/configsources@v1.3.16/LICENSE.txt: Apache License @@ -34896,12 +34900,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/aws/p -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/internal/configsources -Version: v1.3.16 +Dependency : github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 +Version: v2.6.16 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/internal/configsources@v1.3.16/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2@v2.6.16/LICENSE.txt: Apache License @@ -35108,12 +35112,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/inter -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 -Version: v2.6.16 +Dependency : github.com/aws/aws-sdk-go-v2/internal/ini +Version: v1.8.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/internal/endpoints/v2@v2.6.16/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/internal/ini@v1.8.1/LICENSE.txt: Apache License @@ -35320,12 +35324,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/inter -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/internal/ini -Version: v1.8.1 +Dependency : github.com/aws/aws-sdk-go-v2/internal/v4a +Version: v1.3.16 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/internal/ini@v1.8.1/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/internal/v4a@v1.3.16/LICENSE.txt: Apache License @@ -35532,12 +35536,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/inter -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/internal/v4a -Version: v1.3.16 +Dependency : github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding +Version: v1.11.4 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/internal/v4a@v1.3.16/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding@v1.11.4/LICENSE.txt: Apache License @@ -35744,12 +35748,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/inter -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding -Version: v1.11.4 +Dependency : github.com/aws/aws-sdk-go-v2/service/internal/checksum +Version: v1.3.18 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding@v1.11.4/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/internal/checksum@v1.3.18/LICENSE.txt: Apache License @@ -35956,12 +35960,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/servi -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/service/internal/checksum -Version: v1.3.18 +Dependency : github.com/aws/aws-sdk-go-v2/service/internal/presigned-url +Version: v1.11.18 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/internal/checksum@v1.3.18/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url@v1.11.18/LICENSE.txt: Apache License @@ -36168,12 +36172,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/servi -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/service/internal/presigned-url -Version: v1.11.18 +Dependency : github.com/aws/aws-sdk-go-v2/service/internal/s3shared +Version: v1.17.16 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/internal/presigned-url@v1.11.18/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/internal/s3shared@v1.17.16/LICENSE.txt: Apache License @@ -36380,12 +36384,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/servi -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/service/internal/s3shared -Version: v1.17.16 +Dependency : github.com/aws/aws-sdk-go-v2/service/sso +Version: v1.22.5 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/internal/s3shared@v1.17.16/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/sso@v1.22.5/LICENSE.txt: Apache License @@ -36592,12 +36596,12 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/servi -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/service/sso -Version: v1.22.5 +Dependency : github.com/aws/aws-sdk-go-v2/service/ssooidc +Version: v1.26.5 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/sso@v1.22.5/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/ssooidc@v1.26.5/LICENSE.txt: Apache License @@ -36804,645 +36808,202 @@ Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/servi -------------------------------------------------------------------------------- -Dependency : github.com/aws/aws-sdk-go-v2/service/ssooidc -Version: v1.26.5 +Dependency : github.com/benbjohnson/clock +Version: v1.3.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/benbjohnson/clock@v1.3.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2014 Ben Johnson + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/beorn7/perks +Version: v1.0.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/beorn7/perks@v1.0.1/LICENSE: + +Copyright (C) 2013 Blake Mizerany + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/bluekeyes/go-gitdiff +Version: v0.7.1 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/bluekeyes/go-gitdiff@v0.7.1/LICENSE: + +MIT License + +Copyright (c) 2019 Billy Keyes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/cenkalti/backoff/v4 +Version: v4.3.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/cenkalti/backoff/v4@v4.3.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2014 Cenk Altı + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/cilium/ebpf +Version: v0.13.2 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/cilium/ebpf@v0.13.2/LICENSE: + +MIT License + +Copyright (c) 2017 Nathan Sweet +Copyright (c) 2018, 2019 Cloudflare +Copyright (c) 2019 Authors of Cilium + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/codegangsta/inject +Version: v0.0.0-20150114235600-33e0aa1cb7c0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/codegangsta/inject@v0.0.0-20150114235600-33e0aa1cb7c0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2013 Jeremy Saenz + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/containerd/log +Version: v0.1.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/aws/aws-sdk-go-v2/service/ssooidc@v1.26.5/LICENSE.txt: +Contents of probable licence file $GOMODCACHE/github.com/containerd/log@v0.1.0/LICENSE: Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - --------------------------------------------------------------------------------- -Dependency : github.com/benbjohnson/clock -Version: v1.3.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/benbjohnson/clock@v1.3.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Ben Johnson - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/beorn7/perks -Version: v1.0.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/beorn7/perks@v1.0.1/LICENSE: - -Copyright (C) 2013 Blake Mizerany - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/bluekeyes/go-gitdiff -Version: v0.7.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/bluekeyes/go-gitdiff@v0.7.1/LICENSE: - -MIT License - -Copyright (c) 2019 Billy Keyes - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/cenkalti/backoff -Version: v2.2.1+incompatible -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/cenkalti/backoff@v2.2.1+incompatible/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Cenk Altı - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/cenkalti/backoff/v4 -Version: v4.2.1 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/cenkalti/backoff/v4@v4.2.1/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2014 Cenk Altı - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/cilium/ebpf -Version: v0.13.2 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/cilium/ebpf@v0.13.2/LICENSE: - -MIT License - -Copyright (c) 2017 Nathan Sweet -Copyright (c) 2018, 2019 Cloudflare -Copyright (c) 2019 Authors of Cilium - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/codegangsta/inject -Version: v0.0.0-20150114235600-33e0aa1cb7c0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/codegangsta/inject@v0.0.0-20150114235600-33e0aa1cb7c0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2013 Jeremy Saenz - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - --------------------------------------------------------------------------------- -Dependency : github.com/containerd/containerd -Version: v1.7.20 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/containerd/containerd@v1.7.20/LICENSE: - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - Copyright The containerd 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 - - https://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. - - --------------------------------------------------------------------------------- -Dependency : github.com/containerd/log -Version: v0.1.0 -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/containerd/log@v0.1.0/LICENSE: - - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -37906,11 +37467,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- Dependency : github.com/davecgh/go-spew -Version: v1.1.1 +Version: v1.1.2-0.20180830191138-d8f796af33cc Licence type (autodetected): ISC -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-spew@v1.1.1/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/davecgh/go-spew@v1.1.2-0.20180830191138-d8f796af33cc/LICENSE: ISC License @@ -39355,11 +38916,48 @@ SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/elazarl/goproxy -Version: v0.0.0-20180725130230-947c36da3153 +Version: v0.0.0-20240909085733-6741dbfc16a1 Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/elazarl/goproxy@v0.0.0-20180725130230-947c36da3153/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/elazarl/goproxy@v0.0.0-20240909085733-6741dbfc16a1/LICENSE: + +Copyright (c) 2012 Elazar Leibovich. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Elazar Leibovich. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/elazarl/goproxy/ext +Version: v0.0.0-20240909085733-6741dbfc16a1 +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/elazarl/goproxy/ext@v0.0.0-20240909085733-6741dbfc16a1/LICENSE: Copyright (c) 2012 Elazar Leibovich. All rights reserved. @@ -39423,11 +39021,11 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/evanphx/json-patch -Version: v4.12.0+incompatible +Version: v5.6.0+incompatible Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/evanphx/json-patch@v4.12.0+incompatible/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/evanphx/json-patch@v5.6.0+incompatible/LICENSE: Copyright (c) 2014, Evan Phoenix All rights reserved. @@ -39765,17 +39363,48 @@ SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/go-asn1-ber/asn1-ber -Version: v1.5.5 +Dependency : github.com/go-asn1-ber/asn1-ber +Version: v1.5.5 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/go-asn1-ber/asn1-ber@v1.5.5/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2011-2015 Michael Mitton (mmitton@gmail.com) +Portions copyright (c) 2015-2016 go-asn1-ber Authors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/go-faker/faker/v4 +Version: v4.2.0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-asn1-ber/asn1-ber@v1.5.5/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-faker/faker/v4@v4.2.0/LICENSE: -The MIT License (MIT) +MIT License -Copyright (c) 2011-2015 Michael Mitton (mmitton@gmail.com) -Portions copyright (c) 2015-2016 go-asn1-ber Authors +Copyright (c) 2017 Iman Tumorang Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -39797,16 +39426,16 @@ SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/go-faker/faker/v4 -Version: v4.2.0 +Dependency : github.com/go-kit/log +Version: v0.2.1 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-faker/faker/v4@v4.2.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-kit/log@v0.2.1/LICENSE: MIT License -Copyright (c) 2017 Iman Tumorang +Copyright (c) 2021 Go kit Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -39829,11 +39458,11 @@ SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/go-logfmt/logfmt -Version: v0.5.1 +Version: v0.6.0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-logfmt/logfmt@v0.5.1/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-logfmt/logfmt@v0.6.0/LICENSE: The MIT License (MIT) @@ -40344,11 +39973,11 @@ SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/go-openapi/jsonpointer -Version: v0.19.6 +Version: v0.20.2 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonpointer@v0.19.6/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonpointer@v0.20.2/LICENSE: Apache License @@ -40556,11 +40185,11 @@ Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonpointer@ -------------------------------------------------------------------------------- Dependency : github.com/go-openapi/jsonreference -Version: v0.20.2 +Version: v0.20.4 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonreference@v0.20.2/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonreference@v0.20.4/LICENSE: Apache License @@ -40768,11 +40397,11 @@ Contents of probable licence file $GOMODCACHE/github.com/go-openapi/jsonreferenc -------------------------------------------------------------------------------- Dependency : github.com/go-openapi/swag -Version: v0.22.3 +Version: v0.22.9 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-openapi/swag@v0.22.3/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-openapi/swag@v0.22.9/LICENSE: Apache License @@ -41011,11 +40640,11 @@ SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/go-resty/resty/v2 -Version: v2.11.0 +Version: v2.13.1 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/go-resty/resty/v2@v2.11.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/go-resty/resty/v2@v2.13.1/LICENSE: The MIT License (MIT) @@ -41075,37 +40704,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -Dependency : github.com/go-stack/stack -Version: v1.8.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/go-stack/stack@v1.8.0/LICENSE.md: - -The MIT License (MIT) - -Copyright (c) 2014 Chris Hines - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -------------------------------------------------------------------------------- Dependency : github.com/go-task/slim-sprig Version: v0.0.0-20230315185526-52ccab3ef572 @@ -42588,218 +42186,6 @@ Contents of probable licence file $GOMODCACHE/github.com/google/licenseclassifie limitations under the License. --------------------------------------------------------------------------------- -Dependency : github.com/google/martian -Version: v2.1.0+incompatible -Licence type (autodetected): Apache-2.0 --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/google/martian@v2.1.0+incompatible/LICENSE: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - - -------------------------------------------------------------------------------- Dependency : github.com/google/martian/v3 Version: v3.3.3 @@ -43014,11 +42400,11 @@ Contents of probable licence file $GOMODCACHE/github.com/google/martian/v3@v3.3. -------------------------------------------------------------------------------- Dependency : github.com/google/pprof -Version: v0.0.0-20230426061923-93006964c1fc +Version: v0.0.0-20240711041743-f6c9dda6c6da Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/google/pprof@v0.0.0-20230426061923-93006964c1fc/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/google/pprof@v0.0.0-20240711041743-f6c9dda6c6da/LICENSE: Apache License @@ -43931,6 +43317,43 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +Dependency : github.com/grafana/regexp +Version: v0.0.0-20240518133315-a468a5bfb3bc +Licence type (autodetected): BSD-3-Clause +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/grafana/regexp@v0.0.0-20240518133315-a468a5bfb3bc/LICENSE: + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + -------------------------------------------------------------------------------- Dependency : github.com/grpc-ecosystem/grpc-gateway Version: v1.16.0 @@ -44039,11 +43462,11 @@ SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/hashicorp/cronexpr -Version: v1.1.0 +Version: v1.1.2 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/hashicorp/cronexpr@v1.1.0/APLv2: +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/cronexpr@v1.1.2/APLv2: Apache License @@ -44249,6 +43672,370 @@ Contents of probable licence file $GOMODCACHE/github.com/hashicorp/cronexpr@v1.1 limitations under the License. +-------------------------------------------------------------------------------- +Dependency : github.com/hashicorp/errwrap +Version: v1.1.0 +Licence type (autodetected): MPL-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/errwrap@v1.1.0/LICENSE: + +Mozilla Public License, version 2.0 + +1. Definitions + +1.1. “Contributor” + + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. + +1.2. “Contributor Version” + + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor’s Contribution. + +1.3. “Contribution” + + means Covered Software of a particular Contributor. + +1.4. “Covered Software” + + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. + +1.5. “Incompatible With Secondary Licenses” + means + + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or + + b. that the Covered Software was made available under the terms of version + 1.1 or earlier of the License, but not also under the terms of a + Secondary License. + +1.6. “Executable Form” + + means any form of the work other than Source Code Form. + +1.7. “Larger Work” + + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. + +1.8. “License” + + means this document. + +1.9. “Licensable” + + means having the right to grant, to the maximum extent possible, whether at the + time of the initial grant or subsequently, any and all of the rights conveyed by + this License. + +1.10. “Modifications” + + means any of the following: + + a. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or + + b. any new file in Source Code Form that contains any Covered Software. + +1.11. “Patent Claims” of a Contributor + + means any patent claim(s), including without limitation, method, process, + and apparatus claims, in any patent Licensable by such Contributor that + would be infringed, but for the grant of the License, by the making, + using, selling, offering for sale, having made, import, or transfer of + either its Contributions or its Contributor Version. + +1.12. “Secondary License” + + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. + +1.13. “Source Code Form” + + means the form of the work preferred for making modifications. + +1.14. “You” (or “Your”) + + means an individual or a legal entity exercising rights under this + License. For legal entities, “You” includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, “control” means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + + +2. License Grants and Conditions + +2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or as + part of a Larger Work; and + + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its Contributions + or its Contributor Version. + +2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution become + effective for each Contribution on the date the Contributor first distributes + such Contribution. + +2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under this + License. No additional rights or licenses will be implied from the distribution + or licensing of Covered Software under this License. Notwithstanding Section + 2.1(b) above, no patent license is granted by a Contributor: + + a. for any code that a Contributor has removed from Covered Software; or + + b. for infringements caused by: (i) Your and any other third party’s + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + + c. under Patent Claims infringed by Covered Software in the absence of its + Contributions. + + This License does not grant any rights in the trademarks, service marks, or + logos of any Contributor (except as may be necessary to comply with the + notice requirements in Section 3.4). + +2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this License + (see Section 10.2) or under the terms of a Secondary License (if permitted + under the terms of Section 3.3). + +2.5. Representation + + Each Contributor represents that the Contributor believes its Contributions + are its original creation(s) or it has sufficient rights to grant the + rights to its Contributions conveyed by this License. + +2.6. Fair Use + + This License is not intended to limit any rights You have under applicable + copyright doctrines of fair use, fair dealing, or other equivalents. + +2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. + + +3. Responsibilities + +3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under the + terms of this License. You must inform recipients that the Source Code Form + of the Covered Software is governed by the terms of this License, and how + they can obtain a copy of this License. You may not attempt to alter or + restrict the recipients’ rights in the Source Code Form. + +3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and + + b. You may distribute such Executable Form under the terms of this License, + or sublicense it under different terms, provided that the license for + the Executable Form does not attempt to limit or alter the recipients’ + rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for the + Covered Software. If the Larger Work is a combination of Covered Software + with a work governed by one or more Secondary Licenses, and the Covered + Software is not Incompatible With Secondary Licenses, this License permits + You to additionally distribute such Covered Software under the terms of + such Secondary License(s), so that the recipient of the Larger Work may, at + their option, further distribute the Covered Software under the terms of + either this License or such Secondary License(s). + +3.4. Notices + + You may not remove or alter the substance of any license notices (including + copyright notices, patent notices, disclaimers of warranty, or limitations + of liability) contained within the Source Code Form of the Covered + Software, except that You may alter any license notices to the extent + required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on behalf + of any Contributor. You must make it absolutely clear that any such + warranty, support, indemnity, or liability obligation is offered by You + alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, judicial + order, or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and the code + they affect. Such description must be placed in a text file included with all + distributions of the Covered Software under this License. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + +5. Termination + +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing basis, + if such Contributor fails to notify You of the non-compliance by some + reasonable means prior to 60 days after You have come back into compliance. + Moreover, Your grants from a particular Contributor are reinstated on an + ongoing basis if such Contributor notifies You of the non-compliance by + some reasonable means, this is the first time You have received notice of + non-compliance with this License from such Contributor, and You become + compliant prior to 30 days after Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, counter-claims, + and cross-claims) alleging that a Contributor Version directly or + indirectly infringes any patent, then the rights granted to You by any and + all Contributors for the Covered Software under Section 2.1 of this License + shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. + +6. Disclaimer of Warranty + + Covered Software is provided under this License on an “as is” basis, without + warranty of any kind, either expressed, implied, or statutory, including, + without limitation, warranties that the Covered Software is free of defects, + merchantable, fit for a particular purpose or non-infringing. The entire + risk as to the quality and performance of the Covered Software is with You. + Should any Covered Software prove defective in any respect, You (not any + Contributor) assume the cost of any necessary servicing, repair, or + correction. This disclaimer of warranty constitutes an essential part of this + License. No use of any Covered Software is authorized under this License + except under this disclaimer. + +7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from such + party’s negligence to the extent applicable law prohibits such limitation. + Some jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply to You. + +8. Litigation + + Any litigation relating to this License may be brought only in the courts of + a jurisdiction where the defendant maintains its principal place of business + and such litigation shall be governed by laws of that jurisdiction, without + reference to its conflict-of-law provisions. Nothing in this Section shall + prevent a party’s ability to bring cross-claims or counter-claims. + +9. Miscellaneous + + This License represents the complete agreement concerning the subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. Any law or regulation which provides that the language of a + contract shall be construed against the drafter shall not be used to construe + this License against a Contributor. + + +10. Versions of the License + +10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. + +10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version of + the License under which You originally received the Covered Software, or + under the terms of any subsequent version published by the license + steward. + +10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a modified + version of this License if you rename the license and remove any + references to the name of the license steward (except to note that such + modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then +You may include the notice in a location (such as a LICENSE file in a relevant +directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible + With Secondary Licenses”, as defined by + the Mozilla Public License, v. 2.0. + + + -------------------------------------------------------------------------------- Dependency : github.com/hashicorp/go-cleanhttp Version: v0.5.2 @@ -44651,6 +44438,369 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +Dependency : github.com/hashicorp/go-multierror +Version: v1.1.1 +Licence type (autodetected): MPL-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/hashicorp/go-multierror@v1.1.1/LICENSE: + +Mozilla Public License, version 2.0 + +1. Definitions + +1.1. “Contributor” + + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. + +1.2. “Contributor Version” + + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor’s Contribution. + +1.3. “Contribution” + + means Covered Software of a particular Contributor. + +1.4. “Covered Software” + + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. + +1.5. “Incompatible With Secondary Licenses” + means + + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or + + b. that the Covered Software was made available under the terms of version + 1.1 or earlier of the License, but not also under the terms of a + Secondary License. + +1.6. “Executable Form” + + means any form of the work other than Source Code Form. + +1.7. “Larger Work” + + means a work that combines Covered Software with other material, in a separate + file or files, that is not Covered Software. + +1.8. “License” + + means this document. + +1.9. “Licensable” + + means having the right to grant, to the maximum extent possible, whether at the + time of the initial grant or subsequently, any and all of the rights conveyed by + this License. + +1.10. “Modifications” + + means any of the following: + + a. any file in Source Code Form that results from an addition to, deletion + from, or modification of the contents of Covered Software; or + + b. any new file in Source Code Form that contains any Covered Software. + +1.11. “Patent Claims” of a Contributor + + means any patent claim(s), including without limitation, method, process, + and apparatus claims, in any patent Licensable by such Contributor that + would be infringed, but for the grant of the License, by the making, + using, selling, offering for sale, having made, import, or transfer of + either its Contributions or its Contributor Version. + +1.12. “Secondary License” + + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. + +1.13. “Source Code Form” + + means the form of the work preferred for making modifications. + +1.14. “You” (or “Your”) + + means an individual or a legal entity exercising rights under this + License. For legal entities, “You” includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, “control” means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + + +2. License Grants and Conditions + +2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or as + part of a Larger Work; and + + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its Contributions + or its Contributor Version. + +2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution become + effective for each Contribution on the date the Contributor first distributes + such Contribution. + +2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under this + License. No additional rights or licenses will be implied from the distribution + or licensing of Covered Software under this License. Notwithstanding Section + 2.1(b) above, no patent license is granted by a Contributor: + + a. for any code that a Contributor has removed from Covered Software; or + + b. for infringements caused by: (i) Your and any other third party’s + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + + c. under Patent Claims infringed by Covered Software in the absence of its + Contributions. + + This License does not grant any rights in the trademarks, service marks, or + logos of any Contributor (except as may be necessary to comply with the + notice requirements in Section 3.4). + +2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this License + (see Section 10.2) or under the terms of a Secondary License (if permitted + under the terms of Section 3.3). + +2.5. Representation + + Each Contributor represents that the Contributor believes its Contributions + are its original creation(s) or it has sufficient rights to grant the + rights to its Contributions conveyed by this License. + +2.6. Fair Use + + This License is not intended to limit any rights You have under applicable + copyright doctrines of fair use, fair dealing, or other equivalents. + +2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. + + +3. Responsibilities + +3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under the + terms of this License. You must inform recipients that the Source Code Form + of the Covered Software is governed by the terms of this License, and how + they can obtain a copy of this License. You may not attempt to alter or + restrict the recipients’ rights in the Source Code Form. + +3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and + + b. You may distribute such Executable Form under the terms of this License, + or sublicense it under different terms, provided that the license for + the Executable Form does not attempt to limit or alter the recipients’ + rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for the + Covered Software. If the Larger Work is a combination of Covered Software + with a work governed by one or more Secondary Licenses, and the Covered + Software is not Incompatible With Secondary Licenses, this License permits + You to additionally distribute such Covered Software under the terms of + such Secondary License(s), so that the recipient of the Larger Work may, at + their option, further distribute the Covered Software under the terms of + either this License or such Secondary License(s). + +3.4. Notices + + You may not remove or alter the substance of any license notices (including + copyright notices, patent notices, disclaimers of warranty, or limitations + of liability) contained within the Source Code Form of the Covered + Software, except that You may alter any license notices to the extent + required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on behalf + of any Contributor. You must make it absolutely clear that any such + warranty, support, indemnity, or liability obligation is offered by You + alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, judicial + order, or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and the code + they affect. Such description must be placed in a text file included with all + distributions of the Covered Software under this License. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + +5. Termination + +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing basis, + if such Contributor fails to notify You of the non-compliance by some + reasonable means prior to 60 days after You have come back into compliance. + Moreover, Your grants from a particular Contributor are reinstated on an + ongoing basis if such Contributor notifies You of the non-compliance by + some reasonable means, this is the first time You have received notice of + non-compliance with this License from such Contributor, and You become + compliant prior to 30 days after Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, counter-claims, + and cross-claims) alleging that a Contributor Version directly or + indirectly infringes any patent, then the rights granted to You by any and + all Contributors for the Covered Software under Section 2.1 of this License + shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. + +6. Disclaimer of Warranty + + Covered Software is provided under this License on an “as is” basis, without + warranty of any kind, either expressed, implied, or statutory, including, + without limitation, warranties that the Covered Software is free of defects, + merchantable, fit for a particular purpose or non-infringing. The entire + risk as to the quality and performance of the Covered Software is with You. + Should any Covered Software prove defective in any respect, You (not any + Contributor) assume the cost of any necessary servicing, repair, or + correction. This disclaimer of warranty constitutes an essential part of this + License. No use of any Covered Software is authorized under this License + except under this disclaimer. + +7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from such + party’s negligence to the extent applicable law prohibits such limitation. + Some jurisdictions do not allow the exclusion or limitation of incidental or + consequential damages, so this exclusion and limitation may not apply to You. + +8. Litigation + + Any litigation relating to this License may be brought only in the courts of + a jurisdiction where the defendant maintains its principal place of business + and such litigation shall be governed by laws of that jurisdiction, without + reference to its conflict-of-law provisions. Nothing in this Section shall + prevent a party’s ability to bring cross-claims or counter-claims. + +9. Miscellaneous + + This License represents the complete agreement concerning the subject matter + hereof. If any provision of this License is held to be unenforceable, such + provision shall be reformed only to the extent necessary to make it + enforceable. Any law or regulation which provides that the language of a + contract shall be construed against the drafter shall not be used to construe + this License against a Contributor. + + +10. Versions of the License + +10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. + +10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version of + the License under which You originally received the Covered Software, or + under the terms of any subsequent version published by the license + steward. + +10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a modified + version of this License if you rename the license and remove any + references to the name of the license steward (except to note that such + modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses + If You choose to distribute Source Code Form that is Incompatible With + Secondary Licenses under the terms of this version of the License, the + notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, then +You may include the notice in a location (such as a LICENSE file in a relevant +directory) where a recipient would be likely to look for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - “Incompatible With Secondary Licenses” Notice + + This Source Code Form is “Incompatible + With Secondary Licenses”, as defined by + the Mozilla Public License, v. 2.0. + + -------------------------------------------------------------------------------- Dependency : github.com/hashicorp/go-rootcerts Version: v1.0.2 @@ -45794,11 +45944,11 @@ SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/imdario/mergo -Version: v0.3.12 +Version: v0.3.16 Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/imdario/mergo@v0.3.12/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/imdario/mergo@v0.3.16/LICENSE: Copyright (c) 2013 Dario Castañé. All rights reserved. Copyright (c) 2012 The Go Authors. All rights reserved. @@ -48734,11 +48884,11 @@ THE SOFTWARE. -------------------------------------------------------------------------------- Dependency : github.com/mitchellh/go-testing-interface -Version: v1.0.0 +Version: v1.14.1 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-testing-interface@v1.0.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/mitchellh/go-testing-interface@v1.14.1/LICENSE: The MIT License (MIT) @@ -48764,43 +48914,255 @@ THE SOFTWARE. -------------------------------------------------------------------------------- -Dependency : github.com/mitchellh/iochan -Version: v1.0.0 -Licence type (autodetected): MIT +Dependency : github.com/mitchellh/iochan +Version: v1.0.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/mitchellh/iochan@v1.0.0/LICENSE.md: + +The MIT License (MIT) + +Copyright (c) 2015 Mitchell Hashimoto + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +-------------------------------------------------------------------------------- +Dependency : github.com/moby/docker-image-spec +Version: v1.3.1 +Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/mitchellh/iochan@v1.0.0/LICENSE.md: +Contents of probable licence file $GOMODCACHE/github.com/moby/docker-image-spec@v1.3.1/LICENSE: -The MIT License (MIT) + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ -Copyright (c) 2015 Mitchell Hashimoto + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + 1. Definitions. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. -------------------------------------------------------------------------------- -Dependency : github.com/moby/docker-image-spec -Version: v1.3.1 +Dependency : github.com/moby/spdystream +Version: v0.2.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/moby/docker-image-spec@v1.3.1/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/moby/spdystream@v0.2.0/LICENSE: + Apache License Version 2.0, January 2004 @@ -49006,12 +49368,12 @@ Contents of probable licence file $GOMODCACHE/github.com/moby/docker-image-spec@ -------------------------------------------------------------------------------- -Dependency : github.com/moby/spdystream -Version: v0.2.0 +Dependency : github.com/moby/sys/userns +Version: v0.1.0 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/moby/spdystream@v0.2.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/moby/sys/userns@v0.1.0/LICENSE: Apache License @@ -49840,6 +50202,37 @@ Contents of probable licence file $GOMODCACHE/github.com/modern-go/reflect2@v1.0 limitations under the License. +-------------------------------------------------------------------------------- +Dependency : github.com/montanaflynn/stats +Version: v0.7.0 +Licence type (autodetected): MIT +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/montanaflynn/stats@v0.7.0/LICENSE: + +The MIT License (MIT) + +Copyright (c) 2014-2020 Montana Flynn (https://montanaflynn.com) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + -------------------------------------------------------------------------------- Dependency : github.com/morikuni/aec Version: v1.0.0 @@ -50375,11 +50768,11 @@ Contents of probable licence file $GOMODCACHE/github.com/oklog/ulid/v2@v2.0.2/LI -------------------------------------------------------------------------------- Dependency : github.com/onsi/ginkgo -Version: v1.11.0 +Version: v1.6.0 Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/onsi/ginkgo@v1.11.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/onsi/ginkgo@v1.6.0/LICENSE: Copyright (c) 2013-2014 Onsi Fakhouri @@ -51168,11 +51561,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- Dependency : github.com/pmezard/go-difflib -Version: v1.0.0 +Version: v1.0.1-0.20181226105442-5d4384ee4fb2 Licence type (autodetected): BSD-3-Clause -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/pmezard/go-difflib@v1.0.0/LICENSE: +Contents of probable licence file $GOMODCACHE/github.com/pmezard/go-difflib@v1.0.1-0.20181226105442-5d4384ee4fb2/LICENSE: Copyright (c) 2013, Patrick Mezard All rights reserved. @@ -51522,6 +51915,379 @@ DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +Dependency : github.com/shoenig/test +Version: v1.7.1 +Licence type (autodetected): MPL-2.0 +-------------------------------------------------------------------------------- + +Contents of probable licence file $GOMODCACHE/github.com/shoenig/test@v1.7.1/LICENSE: + +Mozilla Public License, version 2.0 + +1. Definitions + +1.1. "Contributor" + + means each individual or legal entity that creates, contributes to the + creation of, or owns Covered Software. + +1.2. "Contributor Version" + + means the combination of the Contributions of others (if any) used by a + Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + + means Source Code Form to which the initial Contributor has attached the + notice in Exhibit A, the Executable Form of such Source Code Form, and + Modifications of such Source Code Form, in each case including portions + thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + a. that the initial Contributor has attached the notice described in + Exhibit B to the Covered Software; or + + b. that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the terms of + a Secondary License. + +1.6. "Executable Form" + + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + + means a work that combines Covered Software with other material, in a + separate file or files, that is not Covered Software. + +1.8. "License" + + means this document. + +1.9. "Licensable" + + means having the right to grant, to the maximum extent possible, whether + at the time of the initial grant or subsequently, any and all of the + rights conveyed by this License. + +1.10. "Modifications" + + means any of the following: + + a. any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered Software; or + + b. any new file in Source Code Form that contains any Covered Software. + +1.11. "Patent Claims" of a Contributor + + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the License, + by the making, using, selling, offering for sale, having made, import, + or transfer of either its Contributions or its Contributor Version. + +1.12. "Secondary License" + + means either the GNU General Public License, Version 2.0, the GNU Lesser + General Public License, Version 2.1, the GNU Affero General Public + License, Version 3.0, or any later versions of those licenses. + +1.13. "Source Code Form" + + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that controls, is + controlled by, or is under common control with You. For purposes of this + definition, "control" means (a) the power, direct or indirect, to cause + the direction or management of such entity, whether by contract or + otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + + +2. License Grants and Conditions + +2.1. Grants + + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license: + + a. under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + + b. under Patent Claims of such Contributor to make, use, sell, offer for + sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + + The licenses granted in Section 2.1 with respect to any Contribution + become effective for each Contribution on the date the Contributor first + distributes such Contribution. + +2.3. Limitations on Grant Scope + + The licenses granted in this Section 2 are the only rights granted under + this License. No additional rights or licenses will be implied from the + distribution or licensing of Covered Software under this License. + Notwithstanding Section 2.1(b) above, no patent license is granted by a + Contributor: + + a. for any code that a Contributor has removed from Covered Software; or + + b. for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + + c. under Patent Claims infringed by Covered Software in the absence of + its Contributions. + + This License does not grant any rights in the trademarks, service marks, + or logos of any Contributor (except as may be necessary to comply with + the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + + No Contributor makes additional grants as a result of Your choice to + distribute the Covered Software under a subsequent version of this + License (see Section 10.2) or under the terms of a Secondary License (if + permitted under the terms of Section 3.3). + +2.5. Representation + + Each Contributor represents that the Contributor believes its + Contributions are its original creation(s) or it has sufficient rights to + grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + + This License is not intended to limit any rights You have under + applicable copyright doctrines of fair use, fair dealing, or other + equivalents. + +2.7. Conditions + + Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in + Section 2.1. + + +3. Responsibilities + +3.1. Distribution of Source Form + + All distribution of Covered Software in Source Code Form, including any + Modifications that You create or to which You contribute, must be under + the terms of this License. You must inform recipients that the Source + Code Form of the Covered Software is governed by the terms of this + License, and how they can obtain a copy of this License. You may not + attempt to alter or restrict the recipients' rights in the Source Code + Form. + +3.2. Distribution of Executable Form + + If You distribute Covered Software in Executable Form then: + + a. such Covered Software must also be made available in Source Code Form, + as described in Section 3.1, and You must inform recipients of the + Executable Form how they can obtain a copy of such Source Code Form by + reasonable means in a timely manner, at a charge no more than the cost + of distribution to the recipient; and + + b. You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter the + recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + + You may create and distribute a Larger Work under terms of Your choice, + provided that You also comply with the requirements of this License for + the Covered Software. If the Larger Work is a combination of Covered + Software with a work governed by one or more Secondary Licenses, and the + Covered Software is not Incompatible With Secondary Licenses, this + License permits You to additionally distribute such Covered Software + under the terms of such Secondary License(s), so that the recipient of + the Larger Work may, at their option, further distribute the Covered + Software under the terms of either this License or such Secondary + License(s). + +3.4. Notices + + You may not remove or alter the substance of any license notices + (including copyright notices, patent notices, disclaimers of warranty, or + limitations of liability) contained within the Source Code Form of the + Covered Software, except that You may alter any license notices to the + extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + + You may choose to offer, and to charge a fee for, warranty, support, + indemnity or liability obligations to one or more recipients of Covered + Software. However, You may do so only on Your own behalf, and not on + behalf of any Contributor. You must make it absolutely clear that any + such warranty, support, indemnity, or liability obligation is offered by + You alone, and You hereby agree to indemnify every Contributor for any + liability incurred by such Contributor as a result of warranty, support, + indemnity or liability terms You offer. You may include additional + disclaimers of warranty and limitations of liability specific to any + jurisdiction. + +4. Inability to Comply Due to Statute or Regulation + + If it is impossible for You to comply with any of the terms of this License + with respect to some or all of the Covered Software due to statute, + judicial order, or regulation then You must: (a) comply with the terms of + this License to the maximum extent possible; and (b) describe the + limitations and the code they affect. Such description must be placed in a + text file included with all distributions of the Covered Software under + this License. Except to the extent prohibited by statute or regulation, + such description must be sufficiently detailed for a recipient of ordinary + skill to be able to understand it. + +5. Termination + +5.1. The rights granted under this License will terminate automatically if You + fail to comply with any of its terms. However, if You become compliant, + then the rights granted under this License from a particular Contributor + are reinstated (a) provisionally, unless and until such Contributor + explicitly and finally terminates Your grants, and (b) on an ongoing + basis, if such Contributor fails to notify You of the non-compliance by + some reasonable means prior to 60 days after You have come back into + compliance. Moreover, Your grants from a particular Contributor are + reinstated on an ongoing basis if such Contributor notifies You of the + non-compliance by some reasonable means, this is the first time You have + received notice of non-compliance with this License from such + Contributor, and You become compliant prior to 30 days after Your receipt + of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent + infringement claim (excluding declaratory judgment actions, + counter-claims, and cross-claims) alleging that a Contributor Version + directly or indirectly infringes any patent, then the rights granted to + You by any and all Contributors for the Covered Software under Section + 2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user + license agreements (excluding distributors and resellers) which have been + validly granted by You or Your distributors under this License prior to + termination shall survive termination. + +6. Disclaimer of Warranty + + Covered Software is provided under this License on an "as is" basis, + without warranty of any kind, either expressed, implied, or statutory, + including, without limitation, warranties that the Covered Software is free + of defects, merchantable, fit for a particular purpose or non-infringing. + The entire risk as to the quality and performance of the Covered Software + is with You. Should any Covered Software prove defective in any respect, + You (not any Contributor) assume the cost of any necessary servicing, + repair, or correction. This disclaimer of warranty constitutes an essential + part of this License. No use of any Covered Software is authorized under + this License except under this disclaimer. + +7. Limitation of Liability + + Under no circumstances and under no legal theory, whether tort (including + negligence), contract, or otherwise, shall any Contributor, or anyone who + distributes Covered Software as permitted above, be liable to You for any + direct, indirect, special, incidental, or consequential damages of any + character including, without limitation, damages for lost profits, loss of + goodwill, work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses, even if such party shall have been + informed of the possibility of such damages. This limitation of liability + shall not apply to liability for death or personal injury resulting from + such party's negligence to the extent applicable law prohibits such + limitation. Some jurisdictions do not allow the exclusion or limitation of + incidental or consequential damages, so this exclusion and limitation may + not apply to You. + +8. Litigation + + Any litigation relating to this License may be brought only in the courts + of a jurisdiction where the defendant maintains its principal place of + business and such litigation shall be governed by laws of that + jurisdiction, without reference to its conflict-of-law provisions. Nothing + in this Section shall prevent a party's ability to bring cross-claims or + counter-claims. + +9. Miscellaneous + + This License represents the complete agreement concerning the subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. Any law or regulation which provides that + the language of a contract shall be construed against the drafter shall not + be used to construe this License against a Contributor. + + +10. Versions of the License + +10.1. New Versions + + Mozilla Foundation is the license steward. Except as provided in Section + 10.3, no one other than the license steward has the right to modify or + publish new versions of this License. Each version will be given a + distinguishing version number. + +10.2. Effect of New Versions + + You may distribute the Covered Software under the terms of the version + of the License under which You originally received the Covered Software, + or under the terms of any subsequent version published by the license + steward. + +10.3. Modified Versions + + If you create software not governed by this License, and you want to + create a new license for such software, you may create and use a + modified version of this License if you rename the license and remove + any references to the name of the license steward (except to note that + such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary + Licenses If You choose to distribute Source Code Form that is + Incompatible With Secondary Licenses under the terms of this version of + the License, the notice described in Exhibit B of this License must be + attached. + +Exhibit A - Source Code Form License Notice + + This Source Code Form is subject to the + terms of the Mozilla Public License, v. + 2.0. If a copy of the MPL was not + distributed with this file, You can + obtain one at + http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular file, +then You may include the notice in a location (such as a LICENSE file in a +relevant directory) where a recipient would be likely to look for such a +notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice + + This Source Code Form is "Incompatible + With Secondary Licenses", as defined by + the Mozilla Public License, v. 2.0. + + + -------------------------------------------------------------------------------- Dependency : github.com/shopspring/decimal Version: v1.3.1 @@ -51643,11 +52409,11 @@ and conditions outlined the respective license of each component. -------------------------------------------------------------------------------- Dependency : github.com/smartystreets/goconvey -Version: v1.6.4 +Version: v0.0.0-20190330032615-68dc04aab96a Licence type (autodetected): MIT -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/github.com/smartystreets/goconvey@v1.6.4/LICENSE.md: +Contents of probable licence file $GOMODCACHE/github.com/smartystreets/goconvey@v0.0.0-20190330032615-68dc04aab96a/LICENSE.md: Copyright (c) 2016 SmartyStreets, LLC @@ -51737,36 +52503,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -Dependency : github.com/tidwall/pretty -Version: v1.2.0 -Licence type (autodetected): MIT --------------------------------------------------------------------------------- - -Contents of probable licence file $GOMODCACHE/github.com/tidwall/pretty@v1.2.0/LICENSE: - -The MIT License (MIT) - -Copyright (c) 2017 Josh Baker - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -------------------------------------------------------------------------------- Dependency : github.com/tklauser/numcpus Version: v0.4.0 @@ -58003,11 +58739,11 @@ limitations under the License. -------------------------------------------------------------------------------- Dependency : k8s.io/klog/v2 -Version: v2.110.1 +Version: v2.130.1 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/k8s.io/klog/v2@v2.110.1/LICENSE: +Contents of probable licence file $GOMODCACHE/k8s.io/klog/v2@v2.130.1/LICENSE: Apache License Version 2.0, January 2004 @@ -58204,11 +58940,11 @@ third-party archives. -------------------------------------------------------------------------------- Dependency : k8s.io/kube-openapi -Version: v0.0.0-20231010175941-2dd684a91f00 +Version: v0.0.0-20240228011516-70dd3763d340 Licence type (autodetected): Apache-2.0 -------------------------------------------------------------------------------- -Contents of probable licence file $GOMODCACHE/k8s.io/kube-openapi@v0.0.0-20231010175941-2dd684a91f00/LICENSE: +Contents of probable licence file $GOMODCACHE/k8s.io/kube-openapi@v0.0.0-20240228011516-70dd3763d340/LICENSE: Apache License diff --git a/go.mod b/go.mod index d04c387dd95..5cac375122a 100644 --- a/go.mod +++ b/go.mod @@ -55,7 +55,7 @@ require ( github.com/denisenkom/go-mssqldb v0.12.3 github.com/devigned/tab v0.1.2-0.20190607222403-0c15cf42f9a2 github.com/digitalocean/go-libvirt v0.0.0-20240709142323-d8406205c752 - github.com/docker/docker v26.1.5+incompatible + github.com/docker/docker v27.3.1+incompatible github.com/docker/go-connections v0.4.0 github.com/docker/go-plugins-helpers v0.0.0-20181025120712-1e6269c305b8 github.com/docker/go-units v0.5.0 @@ -80,7 +80,7 @@ require ( github.com/fatih/color v1.16.0 github.com/fearful-symmetry/gorapl v0.0.4 github.com/fsnotify/fsevents v0.1.1 - github.com/fsnotify/fsnotify v1.6.0 + github.com/fsnotify/fsnotify v1.7.0 github.com/go-sourcemap/sourcemap v2.1.2+incompatible // indirect github.com/go-sql-driver/mysql v1.6.0 github.com/gocarina/gocsv v0.0.0-20170324095351-ffef3ffc77be @@ -98,8 +98,8 @@ require ( github.com/gorhill/cronexpr v0.0.0-20180427100037-88b0669f7d75 github.com/h2non/filetype v1.1.1 github.com/hashicorp/go-retryablehttp v0.7.7 - github.com/hashicorp/golang-lru v0.5.4 - github.com/hashicorp/nomad/api v0.0.0-20201203164818-6318a8ac7bf8 + github.com/hashicorp/golang-lru v0.6.0 + github.com/hashicorp/nomad/api v0.0.0-20240717122358-3d93bd3778f3 github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95 github.com/insomniacslk/dhcp v0.0.0-20220119180841-3c283ff8b7dd github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 @@ -109,7 +109,7 @@ require ( github.com/lib/pq v1.10.3 github.com/magefile/mage v1.15.0 github.com/mattn/go-colorable v0.1.13 - github.com/miekg/dns v1.1.42 + github.com/miekg/dns v1.1.61 github.com/mitchellh/gox v1.0.1 github.com/mitchellh/hashstructure v1.1.0 github.com/mitchellh/mapstructure v1.5.0 @@ -117,11 +117,10 @@ require ( github.com/osquery/osquery-go v0.0.0-20231108163517-e3cde127e724 github.com/pierrre/gotestcover v0.0.0-20160517101806-924dca7d15f0 github.com/pkg/errors v0.9.1 - github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_model v0.6.1 github.com/prometheus/common v0.57.0 github.com/prometheus/procfs v0.15.1 - github.com/prometheus/prometheus v1.8.2-0.20210701133801-b0944590a1c9 github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 github.com/samuel/go-parser v0.0.0-20130731160455-ca8abbf65d0e // indirect github.com/samuel/go-thrift v0.0.0-20140522043831-2187045faa54 @@ -135,7 +134,6 @@ require ( go.elastic.co/ecszap v1.0.2 go.elastic.co/go-licence-detector v0.6.1 go.etcd.io/bbolt v1.3.10 - go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 go.uber.org/zap v1.27.0 golang.org/x/crypto v0.27.0 @@ -214,13 +212,14 @@ require ( github.com/otiai10/copy v1.12.0 github.com/pierrec/lz4/v4 v4.1.18 github.com/pkg/xattr v0.4.9 + github.com/prometheus/prometheus v0.54.1 github.com/shirou/gopsutil/v3 v3.22.10 github.com/tklauser/go-sysconf v0.3.10 github.com/xdg-go/scram v1.1.2 go.elastic.co/apm/module/apmelasticsearch/v2 v2.6.0 go.elastic.co/apm/module/apmhttp/v2 v2.6.0 go.elastic.co/apm/v2 v2.6.0 - go.mongodb.org/mongo-driver v1.5.1 + go.mongodb.org/mongo-driver v1.14.0 go.opentelemetry.io/collector/component v0.109.0 go.opentelemetry.io/collector/consumer v0.109.0 go.opentelemetry.io/collector/pdata v1.15.0 @@ -237,6 +236,7 @@ require ( cloud.google.com/go/iam v1.1.12 // indirect cloud.google.com/go/longrunning v0.5.11 // indirect code.cloudfoundry.org/gofileutils v0.0.0-20170111115228-4d0c80011a0f // indirect + github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect github.com/Azure/azure-amqp-common-go/v4 v4.2.0 // indirect github.com/Azure/azure-pipeline-go v0.2.3 // indirect github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect @@ -254,7 +254,6 @@ require ( github.com/apache/arrow/go/v15 v15.0.2 // indirect github.com/apache/thrift v0.19.0 // indirect github.com/armon/go-radix v1.0.0 // indirect - github.com/aws/aws-sdk-go v1.38.60 // indirect github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.4 // indirect github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16 // indirect github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16 // indirect @@ -270,11 +269,10 @@ require ( github.com/beorn7/perks v1.0.1 // indirect github.com/bluekeyes/go-gitdiff v0.7.1 // indirect github.com/cilium/ebpf v0.13.2 // indirect - github.com/containerd/containerd v1.7.20 // indirect github.com/containerd/log v0.1.0 // indirect github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7 // indirect github.com/cyphar/filepath-securejoin v0.2.5 // indirect - github.com/davecgh/go-spew v1.1.1 // indirect + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dgraph-io/ristretto v0.1.2-0.20240116140435-c67e07994f91 // indirect github.com/distribution/reference v0.6.0 // indirect github.com/dnephin/pflag v1.0.7 // indirect @@ -284,20 +282,21 @@ require ( github.com/elastic/elastic-transport-go/v8 v8.6.0 // indirect github.com/elastic/go-windows v1.0.2 // indirect github.com/elastic/pkcs8 v1.0.0 // indirect + github.com/elazarl/goproxy v0.0.0-20240909085733-6741dbfc16a1 // indirect + github.com/elazarl/goproxy/ext v0.0.0-20240909085733-6741dbfc16a1 // indirect github.com/emicklei/go-restful/v3 v3.11.0 // indirect - github.com/evanphx/json-patch v4.12.0+incompatible // indirect + github.com/evanphx/json-patch v5.6.0+incompatible // indirect github.com/fearful-symmetry/gomsr v0.0.1 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-asn1-ber/asn1-ber v1.5.5 // indirect - github.com/go-logfmt/logfmt v0.5.1 // indirect + github.com/go-logfmt/logfmt v0.6.0 // indirect github.com/go-logr/logr v1.4.2 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/go-ole/go-ole v1.2.6 // indirect - github.com/go-openapi/jsonpointer v0.19.6 // indirect - github.com/go-openapi/jsonreference v0.20.2 // indirect - github.com/go-openapi/swag v0.22.3 // indirect - github.com/go-resty/resty/v2 v2.11.0 // indirect - github.com/go-stack/stack v1.8.0 // indirect + github.com/go-openapi/jsonpointer v0.20.2 // indirect + github.com/go-openapi/jsonreference v0.20.4 // indirect + github.com/go-openapi/swag v0.22.9 // indirect + github.com/go-resty/resty/v2 v2.13.1 // indirect github.com/gobuffalo/here v0.6.7 // indirect github.com/goccy/go-json v0.10.2 // indirect github.com/godror/knownpb v0.1.0 // indirect @@ -312,12 +311,15 @@ require ( github.com/google/s2a-go v0.1.8 // indirect github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect - github.com/hashicorp/cronexpr v1.1.0 // indirect + github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc // indirect + github.com/hashicorp/cronexpr v1.1.2 // indirect + github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect + github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/hashicorp/go-rootcerts v1.0.2 // indirect github.com/hashicorp/go-uuid v1.0.2 // indirect github.com/hashicorp/go-version v1.2.0 // indirect - github.com/imdario/mergo v0.3.12 // indirect + github.com/imdario/mergo v0.3.16 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jcmturner/aescts/v2 v2.0.0 // indirect github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect @@ -346,8 +348,10 @@ require ( github.com/mitchellh/iochan v1.0.0 // indirect github.com/moby/docker-image-spec v1.3.1 // indirect github.com/moby/spdystream v0.2.0 // indirect + github.com/moby/sys/userns v0.1.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/montanaflynn/stats v0.7.0 // indirect github.com/morikuni/aec v1.0.0 // indirect github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect @@ -363,6 +367,7 @@ require ( github.com/stoewer/go-strcase v1.2.0 // indirect github.com/stretchr/objx v0.5.2 // indirect github.com/tklauser/numcpus v0.4.0 // indirect + github.com/vishvananda/netlink v1.2.1-beta.2 // indirect github.com/xdg-go/pbkdf2 v1.0.0 // indirect github.com/xdg-go/stringprep v1.0.4 // indirect github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect @@ -376,18 +381,16 @@ require ( go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 // indirect go.opentelemetry.io/otel v1.29.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.28.0 // indirect go.opentelemetry.io/otel/metric v1.29.0 // indirect go.opentelemetry.io/otel/trace v1.29.0 // indirect - go.opentelemetry.io/proto/otlp v1.3.1 // indirect go.uber.org/ratelimit v0.3.1 // indirect golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect golang.org/x/term v0.24.0 // indirect golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240822170219-fc7c04adadcd // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - k8s.io/klog/v2 v2.110.1 // indirect - k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect + k8s.io/klog/v2 v2.130.1 // indirect + k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect kernel.org/pub/linux/libs/security/libcap/psx v1.2.57 // indirect mvdan.cc/garble v0.12.1 // indirect diff --git a/go.sum b/go.sum index dfb856ac268..f717b62bb64 100644 --- a/go.sum +++ b/go.sum @@ -2,51 +2,20 @@ aqwari.net/xml v0.0.0-20210331023308-d9421b293817 h1:+3Rh5EaTzNLnzWx3/uy/mAaH/dG aqwari.net/xml v0.0.0-20210331023308-d9421b293817/go.mod h1:c7kkWzc7HS/t8Q2DcVY8P2d1dyWNEhEVT5pL0ZHO11c= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg= -cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= -cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= -cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= -cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.51.0/go.mod h1:hWtGJ6gnXH+KgDv+V0zFGDvpi07n3z8ZNj3T1RW0Gcw= -cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= -cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= -cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= -cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= -cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= -cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= cloud.google.com/go v0.115.0 h1:CnFSK6Xo3lDYRoBKEcAtia6VSC837/ZkJuRduSFnr14= cloud.google.com/go v0.115.0/go.mod h1:8jIM5vVgoAEoiVxQ/O4BFTfHqulPZgs/ufEzMcFMdWU= cloud.google.com/go/auth v0.8.0 h1:y8jUJLl/Fg+qNBWxP/Hox2ezJvjkrPb952PC1p0G6A4= cloud.google.com/go/auth v0.8.0/go.mod h1:qGVp/Y3kDRSDZ5gFD/XPUfYQ9xW1iI7q8RIRoCyBbJc= cloud.google.com/go/auth/oauth2adapt v0.2.4 h1:0GWE/FUsXhf6C+jAkWgYm7X9tK8cuEIfy19DBn6B6bY= cloud.google.com/go/auth/oauth2adapt v0.2.4/go.mod h1:jC/jOpwFP6JBxhB3P5Rr0a9HLMC/Pe3eaL4NmdvqPtc= -cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= -cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= -cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= -cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= -cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= -cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= cloud.google.com/go/bigquery v1.62.0 h1:SYEA2f7fKqbSRRBHb7g0iHTtZvtPSPYdXfmqsjpsBwo= cloud.google.com/go/bigquery v1.62.0/go.mod h1:5ee+ZkF1x/ntgCsFQJAQTM3QkAZOecfCmvxhkJsWRSA= -cloud.google.com/go/bigtable v1.2.0/go.mod h1:JcVAOl45lrTmQfLj7T6TxyMzIN/3FGGcFm+2xVAli2o= -cloud.google.com/go/bigtable v1.3.0/go.mod h1:z5EyKrPE8OQmeg4h5MNdKvuSnI9CCT49Ki3f23aBzio= cloud.google.com/go/compute v1.27.4 h1:XM8ulx6crjdl09XBfji7viFgZOEQuIxBwKmjRH9Rtmc= cloud.google.com/go/compute v1.27.4/go.mod h1:7JZS+h21ERAGHOy5qb7+EPyXlQwzshzrx1x6L9JhTqU= cloud.google.com/go/compute/metadata v0.5.0 h1:Zr0eK8JbFv6+Wi4ilXAR8FJ3wyNdpxHKJNPos6LTZOY= cloud.google.com/go/compute/metadata v0.5.0/go.mod h1:aHnloV2TPI38yx4s9+wAZhHykWvVCfu7hQbF+9CWoiY= cloud.google.com/go/datacatalog v1.20.5 h1:Cosg/L60myEbpP1HoNv77ykV7zWe7hqSwY4uUDmhx/I= cloud.google.com/go/datacatalog v1.20.5/go.mod h1:DB0QWF9nelpsbB0eR/tA0xbHZZMvpoFD1XFy3Qv/McI= -cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= cloud.google.com/go/iam v1.1.12 h1:JixGLimRrNGcxvJEQ8+clfLxPlbeZA6MuRJ+qJNQ5Xw= cloud.google.com/go/iam v1.1.12/go.mod h1:9LDX8J7dN5YRyzVHxwQzrQs9opFFqn0Mxs9nAeB+Hhg= cloud.google.com/go/kms v1.18.4 h1:dYN3OCsQ6wJLLtOnI8DGUwQ5shMusXsWCCC+s09ATsk= @@ -55,19 +24,10 @@ cloud.google.com/go/longrunning v0.5.11 h1:Havn1kGjz3whCfoD8dxMLP73Ph5w+ODyZB9RU cloud.google.com/go/longrunning v0.5.11/go.mod h1:rDn7//lmlfWV1Dx6IB4RatCPenTwwmqXuiP0/RgoEO4= cloud.google.com/go/monitoring v1.20.4 h1:zwcViK7mT9SV0kzKqLOI3spRadvsmvw/R9z1MHNeC0E= cloud.google.com/go/monitoring v1.20.4/go.mod h1:v7F/UcLRw15EX7xq565N7Ae5tnYEE28+Cl717aTXG4c= -cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= -cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= -cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= -cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= cloud.google.com/go/pubsub v1.41.0 h1:ZPaM/CvTO6T+1tQOs/jJ4OEMpjtel0PTLV7j1JK+ZrI= cloud.google.com/go/pubsub v1.41.0/go.mod h1:g+YzC6w/3N91tzG66e2BZtp7WrpBBMXVa3Y9zVoOGpk= cloud.google.com/go/redis v1.16.4 h1:9CO6EcuM9/CpgtcjG6JZV+GFw3oDrRfwLwmvwo/uM1o= cloud.google.com/go/redis v1.16.4/go.mod h1:unCVfLP5eFrVhGLDnb7IaSaWxuZ+7cBgwwBwbdG9m9w= -cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= -cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= -cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= -cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.43.0 h1:CcxnSohZwizt4LCzQHWvBf1/kvtHUn7gk9QERXPyXFs= cloud.google.com/go/storage v1.43.0/go.mod h1:ajvxEa7WmZS1PxvKRq4bq0tFT3vMd502JwstCcYv0Q0= code.cloudfoundry.org/go-diodes v0.0.0-20190809170250-f77fb823c7ee h1:iAAPf9s7/+BIiGf+RjgcXLm3NoZaLIJsBXJuUa63Lx8= @@ -78,12 +38,6 @@ code.cloudfoundry.org/gofileutils v0.0.0-20170111115228-4d0c80011a0f h1:UrKzEwTg code.cloudfoundry.org/gofileutils v0.0.0-20170111115228-4d0c80011a0f/go.mod h1:sk5LnIjB/nIEU7yP5sDQExVm62wu0pBh3yrElngUisI= code.cloudfoundry.org/rfc5424 v0.0.0-20180905210152-236a6d29298a h1:8rqv2w8xEceNwckcF5ONeRt0qBHlh5bnNfFnYTrZbxs= code.cloudfoundry.org/rfc5424 v0.0.0-20180905210152-236a6d29298a/go.mod h1:tkZo8GtzBjySJ7USvxm4E36lNQw1D3xM6oKHGqdaAJ4= -collectd.org v0.3.0/go.mod h1:A/8DzQBkF6abtvrT2j/AU/4tiBgJWYyh0y/oB/4MlWE= -dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= -git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= -github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4/go.mod h1:hN7oaIRCjzsZ2dE+yG5k+rsdt3qcwykqK6HVGcKwsw4= -github.com/99designs/keyring v1.2.1/go.mod h1:fc+wB5KTk9wQ9sDx0kFXB3A0MaeGHM9AwRStKOQ5vOA= github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 h1:bvDV9vkmnHYOMsOr4WLk+Vo07yKIzd94sVoIqshQ4bU= github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24/go.mod h1:8o94RPi1/7XTJvwPpRSzSUedZrtlirdB3r9Z20bi2f8= github.com/Azure/azure-amqp-common-go/v4 v4.2.0 h1:q/jLx1KJ8xeI8XGfkOWMN9XrXzAfVTkyvCxPvHCjd2I= @@ -92,24 +46,15 @@ github.com/Azure/azure-event-hubs-go/v3 v3.6.1 h1:vSiMmn3tOwgiLyfnmhT5K6Of/3QWRL github.com/Azure/azure-event-hubs-go/v3 v3.6.1/go.mod h1:i2NByb9Pr2na7y8wi/XefEVKkuA2CDUjCNoWQJtTsGo= github.com/Azure/azure-pipeline-go v0.2.3 h1:7U9HBg1JFK3jHl5qmo4CTZKFTVgMwdFHMVtCdfBE21U= github.com/Azure/azure-pipeline-go v0.2.3/go.mod h1:x841ezTBIMG6O3lAcl8ATHnsOPVl2bqk7S3ta6S6u4k= -github.com/Azure/azure-sdk-for-go v41.3.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go v55.2.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible h1:HzKLt3kIwMm4KeJYTdx9EbjRYTySD/t8i1Ee/W5EGXw= github.com/Azure/azure-sdk-for-go v65.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= github.com/Azure/azure-sdk-for-go/sdk/azcore v0.19.0/go.mod h1:h6H6c8enJmmocHUbLiiGY6sx7f9i+X3m1CHdd5c6Rdw= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0/go.mod h1:uGG2W01BaETf0Ozp+QxxKJdMBNRWPdstHG0Fmdwn1/U= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.3.0/go.mod h1:tZoQYdDZNOiIjdSn0dVWVfl0NEPGOJqVLzSrcFk4Is0= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.4.0/go.mod h1:ON4tFdPTwRcgWEaVDrN3584Ef+b7GgSJaXxe5fW9t4M= github.com/Azure/azure-sdk-for-go/sdk/azcore v1.13.0 h1:GJHeeA2N7xrG3q30L2UXDyuWRzDM900/65j70wcM4Ww= github.com/Azure/azure-sdk-for-go/sdk/azcore v1.13.0/go.mod h1:l38EPgmsp71HHLq9j7De57JcKOWPyhrsW1Awm1JS6K0= github.com/Azure/azure-sdk-for-go/sdk/azidentity v0.11.0/go.mod h1:HcM1YX14R7CJcghJGOYCgdezslRSVzqwLf/q+4Y2r/0= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0/go.mod h1:bhXu1AjYL+wutSL/kpSq6s7733q2Rb0yuot9Zgfqa/0= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0 h1:tfLQ34V6F7tVSwoTf/4lH5sE0o6eCJuNDTmH09nDpbc= github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0/go.mod h1:9kIvujWAA58nmPmWB1m23fyWic1kYZMxD9CxaWn4Qpg= github.com/Azure/azure-sdk-for-go/sdk/internal v0.7.0/go.mod h1:yqy467j36fJxcRV2TzfVZ1pCb5vxm4BtZPUdYWe/Xo8= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0/go.mod h1:eWRD7oawr1Mu1sLCawqVc0CUiF43ia3qQMxLscsKQ9w= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.1/go.mod h1:eWRD7oawr1Mu1sLCawqVc0CUiF43ia3qQMxLscsKQ9w= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.2/go.mod h1:eWRD7oawr1Mu1sLCawqVc0CUiF43ia3qQMxLscsKQ9w= github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 h1:ywEEhmNahHBihViHepv3xPBn1663uRv2t2q/ESv9seY= github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0/go.mod h1:iZDifYGJTIgIIkYRNWPENUnqx6bJ2xnSDFI2tjwZNuY= github.com/Azure/azure-sdk-for-go/sdk/messaging/azeventhubs v1.2.1 h1:0f6XnzroY1yCQQwxGf/n/2xlaBF02Qhof2as99dGNsY= @@ -130,34 +75,19 @@ github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1. github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0/go.mod h1:5kakwfW5CjC9KK+Q4wjXAg+ShuIm2mBMua0ZFj2C8PE= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.6.0 h1:PiSrjRPpkQNjrM8H0WwKMnZUdu1RGMtd/LdGKUrOo+c= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.6.0/go.mod h1:oDrbWx4ewMylP7xHivfgixbfGBT6APAwsSoHRKotnIc= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.0.0/go.mod h1:2e8rMJtl2+2j+HXbTBwnyGpm5Nou7KhvSfxOq8JpTag= github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.4.0 h1:Be6KInmFEKV81c0pOAEbRYehLMwmmGI1exuFj248AMk= github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.4.0/go.mod h1:WCPBHsOXfBVnivScjs2ypRfimjEW0qPVLGgJkZlrIOA= github.com/Azure/azure-storage-blob-go v0.15.0 h1:rXtgp8tN1p29GvpGgfJetavIG0V7OgcSXPpwp3tx6qk= github.com/Azure/azure-storage-blob-go v0.15.0/go.mod h1:vbjsVbX0dlxnRc4FFMPsS9BsJWPcne7GB7onqlPvz58= github.com/Azure/go-amqp v1.0.5 h1:po5+ljlcNSU8xtapHTe8gIc8yHxCzC03E8afH2g1ftU= github.com/Azure/go-amqp v1.0.5/go.mod h1:vZAogwdrkbyK3Mla8m/CxSc/aKdnTZ4IbPxl51Y5WZE= -github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= -github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= -github.com/Azure/go-autorest/autorest v0.9.3/go.mod h1:GsRuLYvwzLjjjRoWEIyMUaYq8GNUx2nRB378IPt/1p0= -github.com/Azure/go-autorest/autorest v0.10.0/go.mod h1:/FALq9T/kS7b5J5qsQ+RSTUdAmGFqi0vUdVNNx8q630= -github.com/Azure/go-autorest/autorest v0.10.1/go.mod h1:/FALq9T/kS7b5J5qsQ+RSTUdAmGFqi0vUdVNNx8q630= -github.com/Azure/go-autorest/autorest v0.11.12/go.mod h1:eipySxLmqSyC5s5k1CLupqet0PSENBEDP93LQ9a8QYw= -github.com/Azure/go-autorest/autorest v0.11.19/go.mod h1:dSiJPy22c3u0OtOKDNttNgqpNFY/GeWa7GH/Pz56QRA= github.com/Azure/go-autorest/autorest v0.11.29 h1:I4+HL/JDvErx2LjyzaVxllw2lRDB5/BT2Bm4g20iqYw= github.com/Azure/go-autorest/autorest v0.11.29/go.mod h1:ZtEzC4Jy2JDrZLxvWs8LrBWEBycl1hbT1eknI8MtfAs= -github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= -github.com/Azure/go-autorest/autorest/adal v0.8.0/go.mod h1:Z6vX6WXXuyieHAXwMj0S6HY6e6wcHn37qQMBQlvY3lc= -github.com/Azure/go-autorest/autorest/adal v0.8.1/go.mod h1:ZjhuQClTqx435SRJ2iMlOxPYt3d2C/T/7TiQCVZSn3Q= -github.com/Azure/go-autorest/autorest/adal v0.8.2/go.mod h1:ZjhuQClTqx435SRJ2iMlOxPYt3d2C/T/7TiQCVZSn3Q= -github.com/Azure/go-autorest/autorest/adal v0.8.3/go.mod h1:ZjhuQClTqx435SRJ2iMlOxPYt3d2C/T/7TiQCVZSn3Q= -github.com/Azure/go-autorest/autorest/adal v0.9.5/go.mod h1:B7KF7jKIeC9Mct5spmyCB/A8CG/sEz1vwIRGv/bbw7A= github.com/Azure/go-autorest/autorest/adal v0.9.13/go.mod h1:W/MM4U6nLxnIskrw4UwWzlHfGjwUS50aOsc/I3yuU8M= -github.com/Azure/go-autorest/autorest/adal v0.9.14/go.mod h1:W/MM4U6nLxnIskrw4UwWzlHfGjwUS50aOsc/I3yuU8M= github.com/Azure/go-autorest/autorest/adal v0.9.22/go.mod h1:XuAbAEUv2Tta//+voMI038TrJBqjKam0me7qR+L8Cmk= github.com/Azure/go-autorest/autorest/adal v0.9.24 h1:BHZfgGsGwdkHDyZdtQRQk1WeUdW0m2WPAwuHZwUi5i4= github.com/Azure/go-autorest/autorest/adal v0.9.24/go.mod h1:7T1+g0PYFmACYW5LlG2fcoPiPlFHjClyRGL7dRlP5c8= @@ -165,52 +95,31 @@ github.com/Azure/go-autorest/autorest/azure/auth v0.4.2 h1:iM6UAvjR97ZIeR93qTcwp github.com/Azure/go-autorest/autorest/azure/auth v0.4.2/go.mod h1:90gmfKdlmKgfjUpnCEpOJzsUEjrWDSLwHIG73tSXddM= github.com/Azure/go-autorest/autorest/azure/cli v0.3.1 h1:LXl088ZQlP0SBppGFsRZonW6hSvwgL5gRByMbvUbx8U= github.com/Azure/go-autorest/autorest/azure/cli v0.3.1/go.mod h1:ZG5p860J94/0kI9mNJVoIoLgXcirM2gF5i2kWloofxw= -github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= -github.com/Azure/go-autorest/autorest/date v0.2.0/go.mod h1:vcORJHLJEh643/Ioh9+vPmf1Ij9AEBM5FuBIXLmIy0g= github.com/Azure/go-autorest/autorest/date v0.3.0 h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw= github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSYnokU+TrmwEsOqdt8Y6sso74= -github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= -github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= -github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod h1:a8FDP3DYzQ4RYfVAxAN3SVSiiO77gL2j2ronKKP0syM= github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k= github.com/Azure/go-autorest/autorest/mocks v0.4.2 h1:PGN4EDXnuQbojHbU0UWoNvmu9AGVwYHG9/fkDYhtAfw= github.com/Azure/go-autorest/autorest/mocks v0.4.2/go.mod h1:Vy7OitM9Kei0i1Oj+LvyAWMXJHeKH1MVlzFugfVrmyU= -github.com/Azure/go-autorest/autorest/to v0.3.0/go.mod h1:MgwOyqaIuKdG4TL/2ywSsIWKAfJfgHDo8ObuUk3t5sA= github.com/Azure/go-autorest/autorest/to v0.4.0 h1:oXVqrxakqqV1UZdSazDOPOLvOIz+XA683u8EctwboHk= github.com/Azure/go-autorest/autorest/to v0.4.0/go.mod h1:fE8iZBn7LQR7zH/9XU2NcPR4o9jEImooCeWJcYV/zLE= -github.com/Azure/go-autorest/autorest/validation v0.2.0/go.mod h1:3EEqHnBxQGHXRYq3HT1WyXAvT7LLY3tl70hw6tQIbjI= github.com/Azure/go-autorest/autorest/validation v0.3.1 h1:AgyqjAd94fwNAoTjl/WQXg4VvFeRFpO+UhNyRXqF1ac= github.com/Azure/go-autorest/autorest/validation v0.3.1/go.mod h1:yhLgjC0Wda5DYXl6JAsWyUe4KVNffhoDhG0zVzUMo3E= -github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= -github.com/Azure/go-autorest/logger v0.2.0/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= github.com/Azure/go-autorest/logger v0.2.1 h1:IG7i4p/mDa2Ce4TRyAO8IHnVhAVF3RFU+ZtXWSmf4Tg= github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= -github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/Azure/go-autorest/tracing v0.6.0 h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo= github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 h1:mFRzDkZVAjdal+s7s0MwaRv9igoPqLRdzOLzw/8Xvq8= github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358/go.mod h1:chxPXzSsl7ZWRAuOIE23GDNzjWuZquvFlgA8xmpunjU= -github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1/go.mod h1:Vt9sXTKwMyGcOxSmLDMnGPgqsUg7m8pe215qMLrDXw4= github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 h1:XHOnouVk1mxXfQidrMEnLlPk9UMeRtyBTnEFtxkV0kU= github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= -github.com/DATA-DOG/go-sqlmock v1.4.1/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= -github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= -github.com/HdrHistogram/hdrhistogram-go v1.0.1/go.mod h1:BWJ+nMSHY3L41Zj7CA3uXnloDp7xxV0YvstAE7nKTaM= github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c h1:RGWPOewvKIROun94nF7v2cua9qP+thov/7M50KEoeSU= github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= -github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= github.com/Masterminds/semver v1.4.2/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y= github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww= github.com/Masterminds/semver v1.5.0/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y= -github.com/Masterminds/sprig v2.16.0+incompatible/go.mod h1:y6hNFY5UBTIWBxnzTeuNhlNS5hqE0NB0E6fgfo2Br3o= -github.com/Microsoft/go-winio v0.4.16/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0= github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU= -github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= -github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/PaesslerAG/gval v1.0.0/go.mod h1:y/nm5yEyTeX6av0OfKJNp9rBNj2XrGhAf5+v24IBN1I= github.com/PaesslerAG/gval v1.2.2 h1:Y7iBzhgE09IGTt5QgGQ2IdaYYYOU134YGHBThD+wm9E= github.com/PaesslerAG/gval v1.2.2/go.mod h1:XRFLwvmkTEdYziLdaCeCa5ImcGVrfQbeNUbVR+C6xac= @@ -219,111 +128,55 @@ github.com/PaesslerAG/jsonpath v0.1.1 h1:c1/AToHQMVsduPAa4Vh6xp2U0evy4t8SWp8imEs github.com/PaesslerAG/jsonpath v0.1.1/go.mod h1:lVboNxFGal/VwW6d9JzIy56bUsYAP6tH/x80vjnCseY= github.com/PaloAltoNetworks/pango v0.10.2 h1:Tjn6vIzzAq6Dd7N0mDuiP8w8pz8k5W9zz/TTSUQCsQY= github.com/PaloAltoNetworks/pango v0.10.2/go.mod h1:GztcRnVLur7G+VFG7Z5ZKNFgScLtsycwPMp1qVebE5g= -github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/purell v1.1.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/SAP/go-hdb v0.14.1/go.mod h1:7fdQLVC2lER3urZLjZCm0AuMQfApof92n3aylBPEkMo= github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= github.com/StackExchange/wmi v1.2.1 h1:VIkavFPXSjcnS+O8yTq7NI32k0R5Aj+v39y29VYDOSA= github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= -github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= github.com/aerospike/aerospike-client-go v1.27.1-0.20170612174108-0f3b54da6bdc h1:9iW/Fbn/R/nyUOiqo6AgwBe8uirqUIoTGF3vKG8qjoc= github.com/aerospike/aerospike-client-go v1.27.1-0.20170612174108-0f3b54da6bdc/go.mod h1:zj8LBEnWBDOVEIJt8LvaRvDG5ARAoa5dBeHaB472NRc= -github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= -github.com/agnivade/levenshtein v1.0.1/go.mod h1:CURSv5d9Uaml+FovSIICkLbAUZ9S4RqaHDIsdSBg7lM= -github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= -github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= -github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= github.com/akavel/rsrc v0.8.0 h1:zjWn7ukO9Kc5Q62DOJCcxGpXC18RawVtYAGdz2aLlfw= github.com/akavel/rsrc v0.8.0/go.mod h1:uLoCtb9J+EyAqh+26kdrTgmzRBFPGOolLWKpdxkKq+c= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/alecthomas/units v0.0.0-20210208195552-ff826a37aa15/go.mod h1:OMCwj8VM1Kc9e19TLln2VL61YJF0x1XFtfdL4JdbSyE= github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74 h1:Kk6a4nehpJ3UuJRqlA3JxYxBZEqCeOmATOvrbT4p9RA= github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74/go.mod h1:cEWa1LVoE5KvSD9ONXsZrj0z6KqySlCCNKHlLzbqAt4= github.com/andrewkroh/goja v0.0.0-20190128172624-dd2ac4456e20 h1:7rj9qZ63knnVo2ZeepYHvHuRdG76f3tRUTdIQDzRBeI= github.com/andrewkroh/goja v0.0.0-20190128172624-dd2ac4456e20/go.mod h1:cI59GRkC2FRaFYtgbYEqMlgnnfvAwXzjojyZKXwklNg= -github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8= -github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/andybalholm/brotli v1.0.5 h1:8uQZIdzKmjc/iuPu7O2ioW48L81FgatrcpfFmiq/cCs= github.com/andybalholm/brotli v1.0.5/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= -github.com/antihax/optional v0.0.0-20180407024304-ca021399b1a6/go.mod h1:V8iCPQYkqmusNa815XgQio277wI47sdRh1dUOLdyC6Q= -github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/antlr4-go/antlr/v4 v4.13.0 h1:lxCg3LAv+EUK6t1i0y1V6/SLeUi0eKEKdhQAlS8TVTI= github.com/antlr4-go/antlr/v4 v4.13.0/go.mod h1:pfChB/xh/Unjila75QW7+VU4TSnWnnk9UTnmpPaOR2g= -github.com/aokoli/goutils v1.0.1/go.mod h1:SijmP0QR8LtwsmDs8Yii5Z/S4trXFGFC2oO5g9DP+DQ= -github.com/apache/arrow/go/arrow v0.0.0-20191024131854-af6fa24be0db/go.mod h1:VTxUBvSJ3s3eHAg65PNgrsn5BtqCRPdmyXh6rAfdxN0= -github.com/apache/arrow/go/arrow v0.0.0-20200923215132-ac86123a3f01/go.mod h1:QNYViu/X0HXDHw7m3KXzWSVXIbfUvJqBFe6Gj8/pYA0= -github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= github.com/apache/arrow/go/v14 v14.0.2 h1:N8OkaJEOfI3mEZt07BIkvo4sC6XDbL+48MBPWO5IONw= github.com/apache/arrow/go/v14 v14.0.2/go.mod h1:u3fgh3EdgN/YQ8cVQRguVW3R+seMybFg8QBQ5LU+eBY= github.com/apache/arrow/go/v15 v15.0.2 h1:60IliRbiyTWCWjERBCkO1W4Qun9svcYoZrSLcyOsMLE= github.com/apache/arrow/go/v15 v15.0.2/go.mod h1:DGXsR3ajT524njufqf95822i+KTh+yea1jass9YXgjA= -github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= -github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= -github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/apache/thrift v0.19.0 h1:sOqkWPzMj7w6XaYbJQG7m4sGqVolaW/0D28Ln7yPzMk= github.com/apache/thrift v0.19.0/go.mod h1:SUALL216IiaOw2Oy+5Vs9lboJ/t9g40C+G07Dc0QC1I= -github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= -github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= -github.com/armon/go-metrics v0.3.3/go.mod h1:4O98XIr/9W0sxpJ8UaYkvjk10Iff7SnFrb4QAOwNTFc= -github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI= github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= -github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= -github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496/go.mod h1:oGkLhpf+kjZl6xBf758TQhh5XrAeiJv/7FRz/2spLIg= -github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535/go.mod h1:oGkLhpf+kjZl6xBf758TQhh5XrAeiJv/7FRz/2spLIg= -github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= -github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= github.com/aws/aws-lambda-go v1.44.0 h1:Xp9PANXKsSJ23IhE4ths592uWTCEewswPhSH9qpAuQQ= github.com/aws/aws-lambda-go v1.44.0/go.mod h1:dpMpZgvWx5vuQJfBt0zqBha60q7Dd7RfgJv23DymV8A= -github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.29.16/go.mod h1:1KvfttTE3SPKMpo8g2c6jL3ZKfXtFvKscTgahTma5Xg= -github.com/aws/aws-sdk-go v1.30.12/go.mod h1:5zCpMtNQVjRREroY7sYe8lOMRSxkhG6MZveU8YkpAk0= -github.com/aws/aws-sdk-go v1.34.28/go.mod h1:H7NKnBqNVzoTJpGfLrQkkD+ytBA93eiDYi/+8rV9s48= -github.com/aws/aws-sdk-go v1.38.60 h1:MgyEsX0IMwivwth1VwEnesBpH0vxbjp5a0w1lurMOXY= -github.com/aws/aws-sdk-go v1.38.60/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= -github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/aws/aws-sdk-go-v2 v1.9.0/go.mod h1:cK/D0BBs0b/oWPIcX/Z/obahJK1TT7IPVjy53i/mX/4= -github.com/aws/aws-sdk-go-v2 v1.16.16/go.mod h1:SwiyXi/1zTUZ6KIAmLK5V5ll8SiURNUYOqTerZPaF9k= github.com/aws/aws-sdk-go-v2 v1.30.4 h1:frhcagrVNrzmT95RJImMHgabt99vkXGslubDaDagTk8= github.com/aws/aws-sdk-go-v2 v1.30.4/go.mod h1:CT+ZPWXbYrci8chcARI3OmI/qgd+f6WtuLOoaIA8PR0= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.8/go.mod h1:JTnlBSot91steJeti4ryyu/tLd4Sk84O5W22L7O2EQU= github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.4 h1:70PVAiL15/aBMh5LThwgXdSQorVr91L127ttckI9QQU= github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.4/go.mod h1:/MQxMqci8tlqDH+pjmoLu1i0tbWCUP1hhyMRuFxpQCw= -github.com/aws/aws-sdk-go-v2/config v1.17.7/go.mod h1:dN2gja/QXxFF15hQreyrqYhLBaQo1d9ZKe/v/uplQoI= github.com/aws/aws-sdk-go-v2/config v1.27.29 h1:+ZPKb3u9Up4KZWLGTtpTmC5T3XmRD1ZQ8XQjRCHUvJw= github.com/aws/aws-sdk-go-v2/config v1.27.29/go.mod h1:yxqvuubha9Vw8stEgNiStO+yZpP68Wm9hLmcm+R/Qk4= -github.com/aws/aws-sdk-go-v2/credentials v1.12.20/go.mod h1:UKY5HyIux08bbNA7Blv4PcXQ8cTkGh7ghHMFklaviR4= github.com/aws/aws-sdk-go-v2/credentials v1.17.29 h1:CwGsupsXIlAFYuDVHv1nnK0wnxO0wZ/g1L8DSK/xiIw= github.com/aws/aws-sdk-go-v2/credentials v1.17.29/go.mod h1:BPJ/yXV92ZVq6G8uYvbU0gSl8q94UB63nMT5ctNO38g= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.17/go.mod h1:yIkQcCDYNsZfXpd5UX2Cy+sWA1jPgIhGTw9cOBzfVnQ= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.12 h1:yjwoSyDZF8Jth+mUk5lSPJCkMC0lMy6FaCD51jm6ayE= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.12/go.mod h1:fuR57fAgMk7ot3WcNQfb6rSEn+SUffl7ri+aa8uKysI= -github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.33/go.mod h1:84XgODVR8uRhmOnUkKGUZKqIMxmjmLOR8Uyp7G/TPwc= github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.13 h1:X8EeaOjl91c8sP14NG8EHx5ZxXLJg0tHDp+KQSghp28= github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.13/go.mod h1:kEI/h2bETfm09LSd7xEEH2qcU1cd//+5HH4Le7p9JgY= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.23/go.mod h1:2DFxAQ9pfIRy0imBCJv+vZ2X6RKxves6fbnEuSry6b4= github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16 h1:TNyt/+X43KJ9IJJMjKfa3bNTiZbUP7DeCxfbTROESwY= github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16/go.mod h1:2DwJF39FlNAUiX5pAc0UNeiz16lK2t7IaFcm0LFHEgc= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.17/go.mod h1:pRwaTYCJemADaqCbUAxltMoHKata7hmB5PjEXeu0kfg= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16 h1:jYfy8UPmd+6kJW5YhY0L1/KftReOGxI/4NtVSTh9O/I= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16/go.mod h1:7ZfEPZxkW42Afq4uQB8H2E2e6ebh6mXTueEpYzjCzcs= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.24/go.mod h1:jULHjqqjDlbyTa7pfM7WICATnOv+iOhjletM3N0Xbu8= github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 h1:VaRN3TlFdd6KxX1x3ILT5ynH6HvKgqdiXoTxAF4HQcQ= github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1/go.mod h1:FbtygfRFze9usAadmnGJNc8KsP346kEe+y2/oyhGAGc= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.14/go.mod h1:AyGgqiKv9ECM6IZeNQtdT8NnMvUb3/2wokeq2Fgryto= github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.16 h1:mimdLQkIX1zr8GIPY1ZtALdBQGxcASiBd2MOp8m/dMc= github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.16/go.mod h1:YHk6owoSwrIsok+cAH9PENCOGoH5PU2EllX4vLtSrsY= github.com/aws/aws-sdk-go-v2/service/cloudformation v1.53.5 h1:YeTVIy7cJLeahs7K0jQGDGAd1YYND/to/z8N3kqZBhY= @@ -342,16 +195,12 @@ github.com/aws/aws-sdk-go-v2/service/health v1.26.4 h1:KE6g0VWlGFSF39JhyeTr31NLa github.com/aws/aws-sdk-go-v2/service/health v1.26.4/go.mod h1:/nvfMCYc3slGB0t+bVBjr1XANwXsyPfpWn59XmqFr9A= github.com/aws/aws-sdk-go-v2/service/iam v1.35.0 h1:xIjTizH74aMNQBjp9D5cvjRZmOYtnrpjOGU3xkVqrjk= github.com/aws/aws-sdk-go-v2/service/iam v1.35.0/go.mod h1:IdHqqRLKgxYR4IY7Omd7SuV4SJzJ8seF+U5PW+mvtP4= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.9/go.mod h1:a9j48l6yL5XINLHLcOKInjdvknN+vWqPBxqeIDw7ktw= github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 h1:KypMCbLPPHEmf9DgMGw51jMj77VfGPAN2Kv4cfhlfgI= github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4/go.mod h1:Vz1JQXliGcQktFTN/LN6uGppAIRoLBR2bMvIMP0gOjc= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.18/go.mod h1:NS55eQ4YixUJPTC+INxi2/jCqe1y2Uw3rnh9wEOVJxY= github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.18 h1:GckUnpm4EJOAio1c8o25a+b3lVfwVzC9gnSBqiiNmZM= github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.18/go.mod h1:Br6+bxfG33Dk3ynmkhsW2Z/t9D4+lRqdLDNCKi85w0U= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.17/go.mod h1:4nYOrY41Lrbk2170/BGkcJKBhws9Pfn8MG3aGqjjeFI= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.18 h1:tJ5RnkHCiSH0jyd6gROjlJtNwov0eGYNz8s8nFcR0jQ= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.18/go.mod h1:++NHzT+nAF7ZPrHPsA+ENvsXkOO8wEu+C6RXltAG4/c= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.13.17/go.mod h1:YqMdV+gEKCQ59NrB7rzrJdALeBIsYiVi8Inj3+KcqHI= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.16 h1:jg16PhLPUiHIj8zYIW6bqzeQSuHVEiWnGA0Brz5Xv2I= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.16/go.mod h1:Uyk1zE1VVdsHSU7096h/rwnXDzOzYQVl+FNPhPw7ShY= github.com/aws/aws-sdk-go-v2/service/kinesis v1.6.0/go.mod h1:9O7UG2pELnP0hq35+Gd7XDjOLBkg7tmgRQ0y14ZjoJI= @@ -363,22 +212,17 @@ github.com/aws/aws-sdk-go-v2/service/rds v1.82.2 h1:kO/fQcueYZvuL5kPzTPQ503cKZj8 github.com/aws/aws-sdk-go-v2/service/rds v1.82.2/go.mod h1:hfUZhydujCniydsJdzZ9bwzX6nUvbfnhhYQeFNREC2I= github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi v1.23.5 h1:b5Brlxqsj9tti4jEdgOZWKB4anmuu25XG/r1PkxoQt0= github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi v1.23.5/go.mod h1:XDlN4IONFWl3b9HSVfxYdFtUcZ7lofcrxU8mpJNGqJw= -github.com/aws/aws-sdk-go-v2/service/s3 v1.27.11/go.mod h1:fmgDANqTUCxciViKl9hb/zD5LFbvPINFRgWhDbR+vZo= github.com/aws/aws-sdk-go-v2/service/s3 v1.60.1 h1:mx2ucgtv+MWzJesJY9Ig/8AFHgoE5FwLXwUVgW/FGdI= github.com/aws/aws-sdk-go-v2/service/s3 v1.60.1/go.mod h1:BSPI0EfnYUuNHPS0uqIo5VrRwzie+Fp+YhQOUs16sKI= github.com/aws/aws-sdk-go-v2/service/sqs v1.34.5 h1:HYyVDOC2/PIg+3oBX1q0wtDU5kONki6lrgIG0afrBkY= github.com/aws/aws-sdk-go-v2/service/sqs v1.34.5/go.mod h1:7idt3XszF6sE9WPS1GqZRiDJOxw4oPtlRBXodWnCGjU= -github.com/aws/aws-sdk-go-v2/service/sso v1.11.23/go.mod h1:/w0eg9IhFGjGyyncHIQrXtU8wvNsTJOP0R6PPj0wf80= github.com/aws/aws-sdk-go-v2/service/sso v1.22.5 h1:zCsFCKvbj25i7p1u94imVoO447I/sFv8qq+lGJhRN0c= github.com/aws/aws-sdk-go-v2/service/sso v1.22.5/go.mod h1:ZeDX1SnKsVlejeuz41GiajjZpRSWR7/42q/EyA/QEiM= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.13.5/go.mod h1:csZuQY65DAdFBt1oIjO5hhBR49kQqop4+lcuCjf2arA= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.5 h1:SKvPgvdvmiTWoi0GAJ7AsJfOz3ngVkD/ERbs5pUnHNI= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.5/go.mod h1:20sz31hv/WsPa3HhU3hfrIet2kxM4Pe0r20eBZ20Tac= -github.com/aws/aws-sdk-go-v2/service/sts v1.16.19/go.mod h1:h4J3oPZQbxLhzGnk+j9dfYHi5qIOVJ5kczZd658/ydM= github.com/aws/aws-sdk-go-v2/service/sts v1.30.5 h1:OMsEmCyz2i89XwRwPouAJvhj81wINh+4UK+k/0Yo/q8= github.com/aws/aws-sdk-go-v2/service/sts v1.30.5/go.mod h1:vmSqFK+BVIwVpDAGZB3CoCXHzurt4qBE8lf+I/kRTh0= github.com/aws/smithy-go v1.8.0/go.mod h1:SObp3lf9smib00L/v3U2eAKG8FyQ7iLrJnQiAmR5n+E= -github.com/aws/smithy-go v1.13.3/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/aws/smithy-go v1.20.4 h1:2HK1zBdPgRbjFOHlfeQZfpC4r72MOb9bZkiFwggKO+4= github.com/aws/smithy-go v1.20.4/go.mod h1:irrKGvNn1InZwb2d7fkIRNucdfwR8R+Ts3wxYa/cJHg= github.com/awslabs/goformation/v7 v7.14.9 h1:sZjjpTqXrcBDz4Fi07JWTT7zKM68XsQkW/7iLAJbA/M= @@ -388,49 +232,25 @@ github.com/awslabs/kinesis-aggregation/go/v2 v2.0.0-20220623125934-28468a6701b5/ github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/benbjohnson/clock v1.3.0 h1:ip6w0uFQkncKQ979AypyG0ER7mqUSBdKLOgAle/AT8A= github.com/benbjohnson/clock v1.3.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= -github.com/benbjohnson/immutable v0.2.1/go.mod h1:uc6OHo6PN2++n98KHLxW8ef4W42ylHiQSENghE1ezxI= -github.com/benbjohnson/tmpl v1.0.0/go.mod h1:igT620JFIi44B6awvU9IsDhR77IXWtFigTLil/RPdps= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/blakesmith/ar v0.0.0-20150311145944-8bd4349a67f2 h1:oMCHnXa6CCCafdPDbMh/lWRhRByN0VFLvv+g+ayx1SI= github.com/blakesmith/ar v0.0.0-20150311145944-8bd4349a67f2/go.mod h1:PkYb9DJNAwrSvRx5DYA+gUcOIgTGVMNkfSCbZM8cWpI= github.com/bluekeyes/go-gitdiff v0.7.1 h1:graP4ElLRshr8ecu0UtqfNTCHrtSyZd3DABQm/DWesQ= github.com/bluekeyes/go-gitdiff v0.7.1/go.mod h1:QpfYYO1E0fTVHVZAZKiRjtSGY9823iCdvGXBcEzHGbM= -github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40/go.mod h1:8rLXio+WjiTceGBHIoTvn60HIbs7Hm7bcHjyrSqYB9c= -github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= -github.com/bonitoo-io/go-sql-bigquery v0.3.4-1.4.0/go.mod h1:J4Y6YJm0qTWB9aFziB7cPeSyc6dOZFyJdteSeybVpXQ= -github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/bsm/sarama-cluster v2.1.14-0.20180625083203-7e67d87a6b3f+incompatible h1:4g18+HnTDwEtO0n7K8B1Kjq+04MEKJRkhJNQ/hb9d5A= github.com/bsm/sarama-cluster v2.1.14-0.20180625083203-7e67d87a6b3f+incompatible/go.mod h1:r7ao+4tTNXvWm+VRpRJchr2kQhqxgmAp2iEX5W96gMM= -github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= -github.com/cactus/go-statsd-client/statsd v0.0.0-20191106001114-12b4e2b38748/go.mod h1:l/bIBLeOl9eX+wxJAzxS4TveKRtAqlyDpHjhkfO0MEI= -github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= github.com/cavaliergopher/rpm v1.2.0 h1:s0h+QeVK252QFTolkhGiMeQ1f+tMeIMhGl8B1HUmGUc= github.com/cavaliergopher/rpm v1.2.0/go.mod h1:R0q3vTqa7RUvPofAZYrnjJ63hh2vngjFfphuXiExVos= -github.com/cenkalti/backoff v0.0.0-20181003080854-62661b46c409/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4= -github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/cenkalti/backoff/v4 v4.1.0/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= -github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM= -github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= +github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8= +github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.1.0/go.mod h1:dgIUBU3pDso/gPgZ1osOZ0iQf77oPR28Tjxl5dIMyVM= -github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/cilium/ebpf v0.13.2 h1:uhLimLX+jF9BTPPvoCUYh/mBeoONkjgaJ9w9fn0mRj4= github.com/cilium/ebpf v0.13.2/go.mod h1:DHp1WyrLeiBh19Cf/tfiSMhqheEiK8fXFZ4No0P1Hso= -github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= -github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= -github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cloudfoundry-community/go-cfclient v0.0.0-20190808214049-35bcce23fc5f h1:fK3ikA1s77arBhpDwFuyO0hUZ2Aa8O6o2Uzy8Q6iLbs= github.com/cloudfoundry-community/go-cfclient v0.0.0-20190808214049-35bcce23fc5f/go.mod h1:RtIewdO+K/czvxvIFCMbPyx7jdxSLL1RZ+DA/Vk8Lwg= @@ -439,46 +259,28 @@ github.com/cloudfoundry/noaa v2.1.0+incompatible/go.mod h1:5LmacnptvxzrTvMfL9+EJ github.com/cloudfoundry/sonde-go v0.0.0-20171206171820-b33733203bb4 h1:cWfya7mo/zbnwYVio6eWGsFJHqYw4/k/uhwIJ1eqRPI= github.com/cloudfoundry/sonde-go v0.0.0-20171206171820-b33733203bb4/go.mod h1:GS0pCHd7onIsewbw8Ue9qa9pZPv2V88cUZDttK6KzgI= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= -github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 h1:sDMmm+q/3+BukdIpxwO365v/Rbspp2Nt5XntgQRXq8Q= github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0/go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM= -github.com/containerd/containerd v1.4.3/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.7.20 h1:Sl6jQYk3TRavaU83h66QMbI2Nqg9Jm6qzwX57Vsn1SQ= -github.com/containerd/containerd v1.7.20/go.mod h1:52GsS5CwquuqPuLncsXwG0t2CiUce+KsNHJZQJvAgR0= github.com/containerd/fifo v1.1.0 h1:4I2mbh5stb1u6ycIABlBw9zgtlK8viPI9QkQNRQEEmY= github.com/containerd/fifo v1.1.0/go.mod h1:bmC4NWMbXlt2EZ0Hc7Fx7QzTFxgPID13eH0Qu+MAb2o= github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I= github.com/containerd/log v0.1.0/go.mod h1:VRRf09a7mHDIRezVKTRCrOq78v577GXq3bSa3EhrzVo= -github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7 h1:u9SHYsPQNyt5tgDm3YN7+9dYrpK96E5wFilTFWIDZOM= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd/v22 v22.5.0 h1:RrqgGjYQKalulkV8NGVIfkXQf6YYmOyiJKk8iXXhfZs= github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= -github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY= github.com/creack/pty v1.1.18/go.mod h1:MOBLtS5ELjhRRrroQr9kyvTxUAFNvYEK993ew/Vr4O4= github.com/cyphar/filepath-securejoin v0.2.5 h1:6iR5tXJ/e6tJZzzdMc1km3Sa7RRIVBKAK32O2s7AYfo= github.com/cyphar/filepath-securejoin v0.2.5/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4= -github.com/danieljoos/wincred v1.1.2/go.mod h1:GijpziifJoIBfYh+S7BbkdUTU4LfM+QnGqR5Vl2tAx0= -github.com/dave/jennifer v1.2.0/go.mod h1:fIb+770HOpJ2fmN9EPPKOqm1vMGhB+TwXKMZhrIygKg= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/denisenkom/go-mssqldb v0.12.3 h1:pBSGx9Tq67pBOTLmxNuirNTeB8Vjmf886Kx+8Y+8shw= github.com/denisenkom/go-mssqldb v0.12.3/go.mod h1:k0mtMFOnU+AihqFxPMiF05rtiDrorD1Vrm1KEz5hxDo= github.com/devigned/tab v0.1.2-0.20190607222403-0c15cf42f9a2 h1:6+hM8KeYKV0Z9EIINNqIEDyyIRAcNc2FW+/TUYNmWyw= @@ -487,63 +289,43 @@ github.com/dgraph-io/badger/v4 v4.2.1-0.20240828131336-2725dc8ed5c2 h1:1JGAkmP07 github.com/dgraph-io/badger/v4 v4.2.1-0.20240828131336-2725dc8ed5c2/go.mod h1:Sc0T595g8zqAQRDf44n+z3wG4BOqLwceaFntt8KPxUM= github.com/dgraph-io/ristretto v0.1.2-0.20240116140435-c67e07994f91 h1:Pux6+xANi0I7RRo5E1gflI4EZ2yx3BGZ75JkAIvGEOA= github.com/dgraph-io/ristretto v0.1.2-0.20240116140435-c67e07994f91/go.mod h1:swkazRqnUf1N62d0Nutz7KIj2UKqsm/H8tD0nBJAXqM= -github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgrijalva/jwt-go/v4 v4.0.0-preview1/go.mod h1:+hnT3ywWDTAFrW5aE+u2Sa/wT555ZqwoCS+pk3p6ry4= -github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8/go.mod h1:VMaSuZ+SZcx/wljOQKvp5srsbCiKDEb6K2wC4+PiBmQ= github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 h1:fAjc9m62+UWV/WAFKLNi6ZS0675eEUC9y3AlwSbQu1Y= github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= -github.com/dgryski/go-sip13 v0.0.0-20190329191031-25c5027a8c7b/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dgryski/go-sip13 v0.0.0-20200911182023-62edffca9245/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/digitalocean/go-libvirt v0.0.0-20240709142323-d8406205c752 h1:NI7XEcHzWVvBfVjSVK6Qk4wmrUfoyQxCNpBjrHelZFk= github.com/digitalocean/go-libvirt v0.0.0-20240709142323-d8406205c752/go.mod h1:/Ok8PA2qi/ve0Py38+oL+VxoYmlowigYRyLEODRYdgc= -github.com/digitalocean/godo v1.62.0/go.mod h1:p7dOjjtSBqCTUksqtA5Fd3uaKs9kyTq2xcz76ulEJRU= github.com/dimchansky/utfbom v1.1.0 h1:FcM3g+nofKgUteL8dm/UpdRXNC9KmADgTpLKsu0TRo4= github.com/dimchansky/utfbom v1.1.0/go.mod h1:rO41eb7gLfo8SF1jd9F8HplJm1Fewwi4mQvIirEdv+8= github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk= github.com/distribution/reference v0.6.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E= github.com/dlclark/regexp2 v1.4.0 h1:F1rxgk7p4uKjwIQxBs9oAXe5CqrXlCduYEJvrF4u93E= github.com/dlclark/regexp2 v1.4.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= -github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E= -github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko= github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= github.com/dnephin/pflag v1.0.7 h1:oxONGlWxhmUct0YzKTgrpQv9AUA1wtPBn7zuSjJqptk= github.com/dnephin/pflag v1.0.7/go.mod h1:uxE91IoWURlOiTUIA8Mq5ZZkAv3dPUfZNaT80Zm7OQE= -github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/docker v20.10.7+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker v26.1.5+incompatible h1:NEAxTwEjxV6VbBMBoGG3zPqbiJosIApZjxlbrG9q3/g= -github.com/docker/docker v26.1.5+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v27.3.1+incompatible h1:KttF0XoteNTicmUtBO0L2tP+J7FGRFTjaEF4k6WdhfI= +github.com/docker/docker v27.3.1+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ= github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= github.com/docker/go-metrics v0.0.1 h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8= github.com/docker/go-metrics v0.0.1/go.mod h1:cG1hvH2utMXtqgqqYE9plW6lDxS3/5ayHzueweSI3Vw= github.com/docker/go-plugins-helpers v0.0.0-20181025120712-1e6269c305b8 h1:9Hsno4vmXpQ0yVAp07bLxS5dHH24w80xzmUCLil47ME= github.com/docker/go-plugins-helpers v0.0.0-20181025120712-1e6269c305b8/go.mod h1:LFyLie6XcDbyKGeVK6bHe+9aJTYCxWLBg5IrJZOaXKA= -github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= -github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= -github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/dolmen-go/contextio v0.0.0-20200217195037-68fc5150bcd5 h1:BzN9o4IS1Hj+AM5qDggsfMDQGFXau5KagipEFmnyIbc= github.com/dolmen-go/contextio v0.0.0-20200217195037-68fc5150bcd5/go.mod h1:cxc20xI7fOgsFHWgt+PenlDDnMcrvh7Ocuj5hEFIdEk= github.com/dop251/goja_nodejs v0.0.0-20171011081505-adff31b136e6 h1:RrkoB0pT3gnjXhL/t10BSP1mcr/0Ldea2uMyuBr2SWk= github.com/dop251/goja_nodejs v0.0.0-20171011081505-adff31b136e6/go.mod h1:hn7BA7c8pLvoGndExHudxTDKZ84Pyvv+90pbBjbTz0Y= -github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= -github.com/dvsekhvalnov/jose2go v1.5.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= github.com/eapache/go-resiliency v1.2.0 h1:v7g92e/KSN71Rq7vSThKaWIq68fL4YHvWyiUKorFR1Q= github.com/eapache/go-resiliency v1.2.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 h1:YEetp8/yCZMuEPMUDHG0CW/brkkEp8mzqk2+ODEitlw= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= -github.com/eclipse/paho.mqtt.golang v1.2.0/go.mod h1:H9keYFcgq3Qr5OUJm/JZI/i6U7joQ8SYLhZwfeOo6Ts= github.com/eclipse/paho.mqtt.golang v1.3.5 h1:sWtmgNxYM9P2sP+xEItMozsR3w0cqZFlqnNN1bdl41Y= github.com/eclipse/paho.mqtt.golang v1.3.5/go.mod h1:eTzb4gxwwyWpqBUHGQZ4ABAV7+Jgm1PklsYT/eo8Hcc= -github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/elastic/azure-sdk-for-go/sdk/resourcemanager/consumption/armconsumption v1.1.0-elastic h1:fxOiGmMPr1dVDAKRGOkp9MV2amPmaZrWPtWJygFxcG0= github.com/elastic/azure-sdk-for-go/sdk/resourcemanager/consumption/armconsumption v1.1.0-elastic/go.mod h1:0vCBR1wgGwZeGmloJ+eCWIZF2S47grTXRzj2mftg2Nk= github.com/elastic/bayeux v1.0.5 h1:UceFq01ipmT3S8DzFK+uVAkbCdiPR0Bqei8qIGmUeY0= @@ -607,27 +389,18 @@ github.com/elastic/tk-btf v0.1.0 h1:T4rbsnfaRH/MZKSLwZFd3sndt/NexsQb0IXWtMQ9PAA= github.com/elastic/tk-btf v0.1.0/go.mod h1:caLQPEcMbyKmPUQb2AsbX3ZAj1yCz06lOxfhn0esLR8= github.com/elastic/toutoumomoma v0.0.0-20240626215117-76e39db18dfb h1:8SvKmGOYyxKi6jB0nvV1lpxEHfIS6tQ40x1BXBhKMsE= github.com/elastic/toutoumomoma v0.0.0-20240626215117-76e39db18dfb/go.mod h1:5hdJb3ERm3hyHBfHFL39pyWvGgkW7ZCoFlaEemNNHIw= -github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= -github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153 h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc= -github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= -github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= +github.com/elazarl/goproxy v0.0.0-20240909085733-6741dbfc16a1 h1:g7YUigN4dW2+zpdusdTTghZ+5Py3BaUMAStvL8Nk+FY= +github.com/elazarl/goproxy v0.0.0-20240909085733-6741dbfc16a1/go.mod h1:thX175TtLTzLj3p7N/Q9IiKZ7NF+p72cvL91emV0hzo= +github.com/elazarl/goproxy/ext v0.0.0-20240909085733-6741dbfc16a1 h1:XgXwWTQglBILwCpfm8I9xUjPXKOi1EzRzuYzyczU5Z0= +github.com/elazarl/goproxy/ext v0.0.0-20240909085733-6741dbfc16a1/go.mod h1:gNh8nYJoAm43RfaxurUnxr+N1PwuFV3ZMl/efxlIlY8= github.com/emicklei/go-restful/v3 v3.11.0 h1:rAQeMHw1c7zTmncogyy8VvRZwtkmkZ4FxERmMY4rD+g= github.com/emicklei/go-restful/v3 v3.11.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc= -github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4safvEdbitLhGGK48rN6g= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/evanphx/json-patch v4.2.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/evanphx/json-patch v4.12.0+incompatible h1:4onqiflcdA9EOZ4RxV643DvftH5pOlLGNtQ5lPWQu84= -github.com/evanphx/json-patch v4.12.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= +github.com/evanphx/json-patch v5.6.0+incompatible h1:jBYDEEiFBPxA0v50tFdvOzQQTCvpL6mnFh5mB2/l16U= +github.com/evanphx/json-patch v5.6.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= github.com/fatih/color v1.16.0 h1:zmkK9Ngbjj+K0yRhTVONQh1p/HknKYSlNT+vZCzyokM= github.com/fatih/color v1.16.0/go.mod h1:fL2Sau1YI5c0pdGEVCbKQbLXB6edEj1ZgiY4NijnWvE= @@ -638,57 +411,30 @@ github.com/fearful-symmetry/gorapl v0.0.4/go.mod h1:XoeZ+5v0tJX9WMvzqdPaaKAdX7y1 github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= -github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= -github.com/form3tech-oss/jwt-go v3.2.5+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= github.com/foxcpp/go-mockdns v0.0.0-20201212160233-ede2f9158d15 h1:nLPjjvpUAODOR6vY/7o0hBIk8iTr19Fvmf8aFx/kC7A= github.com/foxcpp/go-mockdns v0.0.0-20201212160233-ede2f9158d15/go.mod h1:tPg4cp4nseejPd+UKxtCVQ2hUxNTZ7qQZJa7CLriIeo= -github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= -github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= github.com/frankban/quicktest v1.11.3/go.mod h1:wRf/ReqHper53s+kmmSZizM8NamnL3IM0I9ntUbOk+k= github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= -github.com/gabriel-vasile/mimetype v1.4.1/go.mod h1:05Vi0w3Y9c/lNvJOdmIwvrrAhX3rYhfQQCaf9VJcv7M= -github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/globalsign/mgo v0.0.0-20180905125535-1ca0a4f7cbcb/go.mod h1:xkRDCp4j0OGD1HRkm4kmhM+pmpv3AKq5SU7GMg4oO/Q= -github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8/go.mod h1:xkRDCp4j0OGD1HRkm4kmhM+pmpv3AKq5SU7GMg4oO/Q= -github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= -github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= github.com/go-asn1-ber/asn1-ber v1.5.5 h1:MNHlNMBDgEKD4TcKr36vQN68BA00aDfjIt3/bD50WnA= github.com/go-asn1-ber/asn1-ber v1.5.5/go.mod h1:hEBeB/ic+5LoWskz+yKT7vGhhPYkProFKoKdwZRWMe0= -github.com/go-chi/chi v4.1.0+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= github.com/go-faker/faker/v4 v4.2.0 h1:dGebOupKwssrODV51E0zbMrv5e2gO9VWSLNC1WDCpWg= github.com/go-faker/faker/v4 v4.2.0/go.mod h1:F/bBy8GH9NxOxMInug5Gx4WYeG6fHJZ8Ol/dhcpRub4= -github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= -github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= -github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= -github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= -github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= -github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= +github.com/go-kit/log v0.2.1 h1:MRVx0/zhvdseW+Gza6N9rVzU/IVzaeE1SFI4raAhmBU= +github.com/go-kit/log v0.2.1/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= github.com/go-ldap/ldap/v3 v3.4.6 h1:ert95MdbiG7aWo/oPYp9btL3KJlMPKnP58r09rI8T+A= github.com/go-ldap/ldap/v3 v3.4.6/go.mod h1:IGMQANNtxpsOzj7uUAMjpGBaOVTC4DYyIy8VsTdxmtc= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA= github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= -github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= -github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= +github.com/go-logfmt/logfmt v0.6.0 h1:wGYYu3uicYdqXVgoYbvnkrPVXkuLM1p1ifugDMEdRi4= +github.com/go-logfmt/logfmt v0.6.0/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.3.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY= github.com/go-logr/logr v1.4.2/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= @@ -698,155 +444,30 @@ github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab/go.mod h1:/P9AE github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= github.com/go-ole/go-ole v1.2.6 h1:/Fpf6oFPoeFik9ty7siob0G6Ke8QvQEuVcuChpwXzpY= github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= -github.com/go-openapi/analysis v0.0.0-20180825180245-b006789cd277/go.mod h1:k70tL6pCuVxPJOHXQ+wIac1FUrvNkHolPie/cLEU6hI= -github.com/go-openapi/analysis v0.17.0/go.mod h1:IowGgpVeD0vNm45So8nr+IcQ3pxVtpRoBWb8PVZO0ik= -github.com/go-openapi/analysis v0.18.0/go.mod h1:IowGgpVeD0vNm45So8nr+IcQ3pxVtpRoBWb8PVZO0ik= -github.com/go-openapi/analysis v0.19.2/go.mod h1:3P1osvZa9jKjb8ed2TPng3f0i/UY9snX6gxi44djMjk= -github.com/go-openapi/analysis v0.19.4/go.mod h1:3P1osvZa9jKjb8ed2TPng3f0i/UY9snX6gxi44djMjk= -github.com/go-openapi/analysis v0.19.5/go.mod h1:hkEAkxagaIvIP7VTn8ygJNkd4kAYON2rCu0v0ObL0AU= -github.com/go-openapi/analysis v0.19.10/go.mod h1:qmhS3VNFxBlquFJ0RGoDtylO9y4pgTAUNE9AEEMdlJQ= -github.com/go-openapi/analysis v0.19.16/go.mod h1:GLInF007N83Ad3m8a/CbQ5TPzdnGT7workfHwuVjNVk= -github.com/go-openapi/analysis v0.20.0/go.mod h1:BMchjvaHDykmRMsK40iPtvyOfFdMMxlOmQr9FBZk+Og= -github.com/go-openapi/errors v0.17.0/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0= -github.com/go-openapi/errors v0.18.0/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0= -github.com/go-openapi/errors v0.19.2/go.mod h1:qX0BLWsyaKfvhluLejVpVNwNRdXZhEbTA4kxxpKBC94= -github.com/go-openapi/errors v0.19.3/go.mod h1:qX0BLWsyaKfvhluLejVpVNwNRdXZhEbTA4kxxpKBC94= -github.com/go-openapi/errors v0.19.4/go.mod h1:qX0BLWsyaKfvhluLejVpVNwNRdXZhEbTA4kxxpKBC94= -github.com/go-openapi/errors v0.19.6/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/errors v0.19.7/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/errors v0.19.8/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/errors v0.19.9/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/errors v0.20.0/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= -github.com/go-openapi/jsonpointer v0.17.0/go.mod h1:cOnomiV+CVVwFLk0A/MExoFMjwdsUdVpsRhURCKh+3M= -github.com/go-openapi/jsonpointer v0.18.0/go.mod h1:cOnomiV+CVVwFLk0A/MExoFMjwdsUdVpsRhURCKh+3M= -github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg= -github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE= -github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs= -github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9/go.mod h1:W3Z9FmVs9qj+KR4zFKmDPGiLdk1D9Rlm7cyMvf57TTg= -github.com/go-openapi/jsonreference v0.17.0/go.mod h1:g4xxGn04lDIRh0GJb5QlpE3HfopLOL6uZrK/VgnsK9I= -github.com/go-openapi/jsonreference v0.18.0/go.mod h1:g4xxGn04lDIRh0GJb5QlpE3HfopLOL6uZrK/VgnsK9I= -github.com/go-openapi/jsonreference v0.19.2/go.mod h1:jMjeRr2HHw6nAVajTXJ4eiUwohSTlpa0o73RUL1owJc= -github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL98+wF9xc8zWvFonSJ8= -github.com/go-openapi/jsonreference v0.19.5/go.mod h1:RdybgQwPxbL4UEjuAruzK1x3nE69AqPYEJeo/TWfEeg= -github.com/go-openapi/jsonreference v0.20.2 h1:3sVjiK66+uXK/6oQ8xgcRKcFgQ5KXa2KvnJRumpMGbE= -github.com/go-openapi/jsonreference v0.20.2/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= -github.com/go-openapi/loads v0.17.0/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU= -github.com/go-openapi/loads v0.18.0/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU= -github.com/go-openapi/loads v0.19.0/go.mod h1:72tmFy5wsWx89uEVddd0RjRWPZm92WRLhf7AC+0+OOU= -github.com/go-openapi/loads v0.19.2/go.mod h1:QAskZPMX5V0C2gvfkGZzJlINuP7Hx/4+ix5jWFxsNPs= -github.com/go-openapi/loads v0.19.3/go.mod h1:YVfqhUCdahYwR3f3iiwQLhicVRvLlU/WO5WPaZvcvSI= -github.com/go-openapi/loads v0.19.4/go.mod h1:zZVHonKd8DXyxyw4yfnVjPzBjIQcLt0CCsn0N0ZrQsk= -github.com/go-openapi/loads v0.19.5/go.mod h1:dswLCAdonkRufe/gSUC3gN8nTSaB9uaS2es0x5/IbjY= -github.com/go-openapi/loads v0.19.6/go.mod h1:brCsvE6j8mnbmGBh103PT/QLHfbyDxA4hsKvYBNEGVc= -github.com/go-openapi/loads v0.19.7/go.mod h1:brCsvE6j8mnbmGBh103PT/QLHfbyDxA4hsKvYBNEGVc= -github.com/go-openapi/loads v0.20.0/go.mod h1:2LhKquiE513rN5xC6Aan6lYOSddlL8Mp20AW9kpviM4= -github.com/go-openapi/loads v0.20.2/go.mod h1:hTVUotJ+UonAMMZsvakEgmWKgtulweO9vYP2bQYKA/o= -github.com/go-openapi/runtime v0.0.0-20180920151709-4f900dc2ade9/go.mod h1:6v9a6LTXWQCdL8k1AO3cvqx5OtZY/Y9wKTgaoP6YRfA= -github.com/go-openapi/runtime v0.19.0/go.mod h1:OwNfisksmmaZse4+gpV3Ne9AyMOlP1lt4sK4FXt0O64= -github.com/go-openapi/runtime v0.19.4/go.mod h1:X277bwSUBxVlCYR3r7xgZZGKVvBd/29gLDlFGtJ8NL4= -github.com/go-openapi/runtime v0.19.15/go.mod h1:dhGWCTKRXlAfGnQG0ONViOZpjfg0m2gUt9nTQPQZuoo= -github.com/go-openapi/runtime v0.19.16/go.mod h1:5P9104EJgYcizotuXhEuUrzVc+j1RiSjahULvYmlv98= -github.com/go-openapi/runtime v0.19.24/go.mod h1:Lm9YGCeecBnUUkFTxPC4s1+lwrkJ0pthx8YvyjCfkgk= -github.com/go-openapi/runtime v0.19.28/go.mod h1:BvrQtn6iVb2QmiVXRsFAm6ZCAZBpbVKFfN6QWCp582M= -github.com/go-openapi/spec v0.0.0-20160808142527-6aced65f8501/go.mod h1:J8+jY1nAiCcj+friV/PDoE1/3eeccG9LYBs0tYvLOWc= -github.com/go-openapi/spec v0.17.0/go.mod h1:XkF/MOi14NmjsfZ8VtAKf8pIlbZzyoTvZsdfssdxcBI= -github.com/go-openapi/spec v0.18.0/go.mod h1:XkF/MOi14NmjsfZ8VtAKf8pIlbZzyoTvZsdfssdxcBI= -github.com/go-openapi/spec v0.19.2/go.mod h1:sCxk3jxKgioEJikev4fgkNmwS+3kuYdJtcsZsD5zxMY= -github.com/go-openapi/spec v0.19.3/go.mod h1:FpwSN1ksY1eteniUU7X0N/BgJ7a4WvBFVA8Lj9mJglo= -github.com/go-openapi/spec v0.19.6/go.mod h1:Hm2Jr4jv8G1ciIAo+frC/Ft+rR2kQDh8JHKHb3gWUSk= -github.com/go-openapi/spec v0.19.7/go.mod h1:Hm2Jr4jv8G1ciIAo+frC/Ft+rR2kQDh8JHKHb3gWUSk= -github.com/go-openapi/spec v0.19.8/go.mod h1:Hm2Jr4jv8G1ciIAo+frC/Ft+rR2kQDh8JHKHb3gWUSk= -github.com/go-openapi/spec v0.19.15/go.mod h1:+81FIL1JwC5P3/Iuuozq3pPE9dXdIEGxFutcFKaVbmU= -github.com/go-openapi/spec v0.20.0/go.mod h1:+81FIL1JwC5P3/Iuuozq3pPE9dXdIEGxFutcFKaVbmU= -github.com/go-openapi/spec v0.20.1/go.mod h1:93x7oh+d+FQsmsieroS4cmR3u0p/ywH649a3qwC9OsQ= -github.com/go-openapi/spec v0.20.3/go.mod h1:gG4F8wdEDN+YPBMVnzE85Rbhf+Th2DTvA9nFPQ5AYEg= -github.com/go-openapi/strfmt v0.17.0/go.mod h1:P82hnJI0CXkErkXi8IKjPbNBM6lV6+5pLP5l494TcyU= -github.com/go-openapi/strfmt v0.18.0/go.mod h1:P82hnJI0CXkErkXi8IKjPbNBM6lV6+5pLP5l494TcyU= -github.com/go-openapi/strfmt v0.19.0/go.mod h1:+uW+93UVvGGq2qGaZxdDeJqSAqBqBdl+ZPMF/cC8nDY= -github.com/go-openapi/strfmt v0.19.2/go.mod h1:0yX7dbo8mKIvc3XSKp7MNfxw4JytCfCD6+bY1AVL9LU= -github.com/go-openapi/strfmt v0.19.3/go.mod h1:0yX7dbo8mKIvc3XSKp7MNfxw4JytCfCD6+bY1AVL9LU= -github.com/go-openapi/strfmt v0.19.4/go.mod h1:eftuHTlB/dI8Uq8JJOyRlieZf+WkkxUuk0dgdHXr2Qk= -github.com/go-openapi/strfmt v0.19.5/go.mod h1:eftuHTlB/dI8Uq8JJOyRlieZf+WkkxUuk0dgdHXr2Qk= -github.com/go-openapi/strfmt v0.19.11/go.mod h1:UukAYgTaQfqJuAFlNxxMWNvMYiwiXtLsF2VwmoFtbtc= -github.com/go-openapi/strfmt v0.20.0/go.mod h1:UukAYgTaQfqJuAFlNxxMWNvMYiwiXtLsF2VwmoFtbtc= -github.com/go-openapi/strfmt v0.20.1/go.mod h1:43urheQI9dNtE5lTZQfuFJvjYJKPrxicATpEfZwHUNk= -github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= -github.com/go-openapi/swag v0.17.0/go.mod h1:AByQ+nYG6gQg71GINrmuDXCPWdL640yX49/kXLo40Tg= -github.com/go-openapi/swag v0.18.0/go.mod h1:AByQ+nYG6gQg71GINrmuDXCPWdL640yX49/kXLo40Tg= -github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.7/go.mod h1:ao+8BpOPyKdpQz3AOJfbeEVpLmWAvlT1IfTe5McPyhY= -github.com/go-openapi/swag v0.19.9/go.mod h1:ao+8BpOPyKdpQz3AOJfbeEVpLmWAvlT1IfTe5McPyhY= -github.com/go-openapi/swag v0.19.12/go.mod h1:eFdyEBkTdoAf/9RXBvj4cr1nH7GD8Kzo5HTt47gr72M= -github.com/go-openapi/swag v0.19.13/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-openapi/swag v0.19.14/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-openapi/swag v0.19.15/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g= -github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14= -github.com/go-openapi/validate v0.18.0/go.mod h1:Uh4HdOzKt19xGIGm1qHf/ofbX1YQ4Y+MYsct2VUrAJ4= -github.com/go-openapi/validate v0.19.2/go.mod h1:1tRCw7m3jtI8eNWEEliiAqUIcBztB2KDnRCRMUi7GTA= -github.com/go-openapi/validate v0.19.3/go.mod h1:90Vh6jjkTn+OT1Eefm0ZixWNFjhtOH7vS9k0lo6zwJo= -github.com/go-openapi/validate v0.19.8/go.mod h1:8DJv2CVJQ6kGNpFW6eV9N3JviE1C85nY1c2z52x1Gk4= -github.com/go-openapi/validate v0.19.10/go.mod h1:RKEZTUWDkxKQxN2jDT7ZnZi2bhZlbNMAuKvKB+IaGx8= -github.com/go-openapi/validate v0.19.12/go.mod h1:Rzou8hA/CBw8donlS6WNEUQupNvUZ0waH08tGe6kAQ4= -github.com/go-openapi/validate v0.19.15/go.mod h1:tbn/fdOwYHgrhPBzidZfJC2MIVvs9GA7monOmWBbeCI= -github.com/go-openapi/validate v0.20.1/go.mod h1:b60iJT+xNNLfaQJUqLI7946tYiFEOuE9E4k54HpKcJ0= -github.com/go-openapi/validate v0.20.2/go.mod h1:e7OJoKNgd0twXZwIn0A43tHbvIcr/rZIVCbJBpTUoY0= -github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= +github.com/go-openapi/jsonpointer v0.20.2 h1:mQc3nmndL8ZBzStEo3JYF8wzmeWffDH4VbXz58sAx6Q= +github.com/go-openapi/jsonpointer v0.20.2/go.mod h1:bHen+N0u1KEO3YlmqOjTT9Adn1RfD91Ar825/PuiRVs= +github.com/go-openapi/jsonreference v0.20.4 h1:bKlDxQxQJgwpUSgOENiMPzCTBVuc7vTdXSSgNeAhojU= +github.com/go-openapi/jsonreference v0.20.4/go.mod h1:5pZJyJP2MnYCpoeoMAql78cCHauHj0V9Lhc506VOpw4= +github.com/go-openapi/swag v0.22.9 h1:XX2DssF+mQKM2DHsbgZK74y/zj4mo9I99+89xUmuZCE= +github.com/go-openapi/swag v0.22.9/go.mod h1:3/OXnFfnMAwBD099SwYRk7GD3xOrr1iL7d/XNLXVVwE= github.com/go-quicktest/qt v1.101.0 h1:O1K29Txy5P2OK0dGo59b7b0LR6wKfIhttaAhHUyn7eI= github.com/go-quicktest/qt v1.101.0/go.mod h1:14Bz/f7NwaXPtdYEgzsx46kqSxVwTbzVZsDC26tQJow= -github.com/go-resty/resty/v2 v2.1.1-0.20191201195748-d7b97669fe48/go.mod h1:dZGr0i9PLlaaTD4H/hoZIDjQ+r6xq8mgbRzHZf7f2J8= -github.com/go-resty/resty/v2 v2.11.0 h1:i7jMfNOJYMp69lq7qozJP+bjgzfAzeOhuGlyDrqxT/8= -github.com/go-resty/resty/v2 v2.11.0/go.mod h1:iiP/OpA0CkcL3IGt1O0+/SIItFUbkkyw5BGXiVdTu+A= +github.com/go-resty/resty/v2 v2.13.1 h1:x+LHXBI2nMB1vqndymf26quycC4aggYJ7DECYbiz03g= +github.com/go-resty/resty/v2 v2.13.1/go.mod h1:GznXlLxkq6Nh4sU59rPmUw3VtgpO3aS96ORAI6Q7d+0= github.com/go-sourcemap/sourcemap v2.1.2+incompatible h1:0b/xya7BKGhXuqFESKM4oIiRo9WOt2ebz7KxfreD6ug= github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= -github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= -github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= -github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE= github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= -github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls= -github.com/go-zookeeper/zk v1.0.2/go.mod h1:nOB03cncLtlp4t+UAkGSV+9beXP/akpekBwL+UX1Qcw= -github.com/gobuffalo/attrs v0.0.0-20190224210810-a9411de4debd/go.mod h1:4duuawTqi2wkkpB4ePgWMaai6/Kc6WEz83bhFwpHzj0= -github.com/gobuffalo/depgen v0.0.0-20190329151759-d478694a28d3/go.mod h1:3STtPUQYuzV0gBVOY3vy6CfMm/ljR4pABfrTeHNLHUY= -github.com/gobuffalo/depgen v0.1.0/go.mod h1:+ifsuy7fhi15RWncXQQKjWS9JPkdah5sZvtHc2RXGlg= -github.com/gobuffalo/envy v1.6.15/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= -github.com/gobuffalo/envy v1.7.0/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= -github.com/gobuffalo/flect v0.1.0/go.mod h1:d2ehjJqGOH/Kjqcoz+F7jHTBbmDb38yXA598Hb50EGs= -github.com/gobuffalo/flect v0.1.1/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= -github.com/gobuffalo/flect v0.1.3/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= -github.com/gobuffalo/genny v0.0.0-20190329151137-27723ad26ef9/go.mod h1:rWs4Z12d1Zbf19rlsn0nurr75KqhYp52EAGGxTbBhNk= -github.com/gobuffalo/genny v0.0.0-20190403191548-3ca520ef0d9e/go.mod h1:80lIj3kVJWwOrXWWMRzzdhW3DsrdjILVil/SFKBzF28= -github.com/gobuffalo/genny v0.1.0/go.mod h1:XidbUqzak3lHdS//TPu2OgiFB+51Ur5f7CSnXZ/JDvo= -github.com/gobuffalo/genny v0.1.1/go.mod h1:5TExbEyY48pfunL4QSXxlDOmdsD44RRq4mVZ0Ex28Xk= -github.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211/go.mod h1:vEHJk/E9DmhejeLeNt7UVvlSGv3ziL+djtTr3yyzcOw= -github.com/gobuffalo/gogen v0.0.0-20190315121717-8f38393713f5/go.mod h1:V9QVDIxsgKNZs6L2IYiGR8datgMhB577vzTDqypH360= -github.com/gobuffalo/gogen v0.1.0/go.mod h1:8NTelM5qd8RZ15VjQTFkAW6qOMx5wBbW4dSCS3BY8gg= -github.com/gobuffalo/gogen v0.1.1/go.mod h1:y8iBtmHmGc4qa3urIyo1shvOD8JftTtfcKi+71xfDNE= github.com/gobuffalo/here v0.6.0/go.mod h1:wAG085dHOYqUpf+Ap+WOdrPTp5IYcDAs/x7PLa8Y5fM= github.com/gobuffalo/here v0.6.7 h1:hpfhh+kt2y9JLDfhYUxxCRxQol540jsVfKUZzjlbp8o= github.com/gobuffalo/here v0.6.7/go.mod h1:vuCfanjqckTuRlqAitJz6QC4ABNnS27wLb816UhsPcc= -github.com/gobuffalo/logger v0.0.0-20190315122211-86e12af44bc2/go.mod h1:QdxcLw541hSGtBnhUc4gaNIXRjiDppFGaDqzbrBd3v8= -github.com/gobuffalo/mapi v1.0.1/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= -github.com/gobuffalo/mapi v1.0.2/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= -github.com/gobuffalo/packd v0.0.0-20190315124812-a385830c7fc0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= -github.com/gobuffalo/packd v0.1.0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= -github.com/gobuffalo/packr/v2 v2.0.9/go.mod h1:emmyGweYTm6Kdper+iywB6YK5YzuKchGtJQZ0Odn4pQ= -github.com/gobuffalo/packr/v2 v2.2.0/go.mod h1:CaAwI0GPIAv+5wKLtv8Afwl+Cm78K/I/VCm/3ptBN+0= -github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw= github.com/gocarina/gocsv v0.0.0-20170324095351-ffef3ffc77be h1:zXHeEEJ231bTf/IXqvCfeaqjLpXsq42ybLoT4ROSR6Y= github.com/gocarina/gocsv v0.0.0-20170324095351-ffef3ffc77be/go.mod h1:/oj50ZdPq/cUjA02lMZhijk5kR31SEydKyqah1OgBuo= -github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/godbus/dbus/v5 v5.1.0 h1:4KLkAxT3aOY8Li4FRJe/KvhoNFFxo0m6fNuFUO8QJUk= github.com/godbus/dbus/v5 v5.1.0/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= @@ -856,22 +477,12 @@ github.com/godror/knownpb v0.1.0 h1:dJPK8s/I3PQzGGaGcUStL2zIaaICNzKKAK8BzP1uLio= github.com/godror/knownpb v0.1.0/go.mod h1:4nRFbQo1dDuwKnblRXDxrfCFYeT4hjg3GjMqef58eRE= github.com/gofrs/flock v0.8.1 h1:+gYjHKf32LDeiEEFhQaotPbLuUXjY5ZqxKgXy7n59aw= github.com/gofrs/flock v0.8.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= -github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= github.com/gofrs/uuid/v5 v5.2.0 h1:qw1GMx6/y8vhVsx626ImfKMuS5CvJmhIKKtuyvfajMM= github.com/gofrs/uuid/v5 v5.2.0/go.mod h1:CDOjlDMVAtN56jqyRUZh58JT31Tiw7/oQyEXZV+9bD8= -github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.2.2-0.20190730201129-28a6bbf47e48/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= -github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang-jwt/jwt/v4 v4.5.0 h1:7cYmW1XlMY7h7ii7UhUyChSgS5wUJEnm9uZVTGqOWzg= github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= github.com/golang-jwt/jwt/v5 v5.2.1 h1:OuVbFODueb089Lh128TAcimifWaLhJwVflnrgM17wHk= @@ -880,58 +491,34 @@ github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe h1:lXe2qZdvpiX5WZ github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= github.com/golang-sql/sqlexp v0.1.0 h1:ZCD6MBpcuOVfGVqsEmY5/4FtYiKz6tSyUv9LPEDei6A= github.com/golang-sql/sqlexp v0.1.0/go.mod h1:J4ad9Vo8ZCWQ2GMrC4UCQy1JpCbwU9m3EOqtpKwwwHI= -github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= -github.com/golang/geo v0.0.0-20190916061304-5b978397cfec/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= -github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= -github.com/golang/protobuf v0.0.0-20161109072736-4bd1920723d7/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= -github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= -github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/gomodule/redigo v1.8.3 h1:HR0kYDX2RJZvAup8CsiJwxB4dTCSC0AaUq6S4SiLwUc= github.com/gomodule/redigo v1.8.3/go.mod h1:P9dn9mFrCBvWhGE1wpxx6fgq7BAeLBk+UUUzlpkBYO0= -github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/cel-go v0.19.0 h1:vVgaZoHPBDd1lXCYGQOh5A06L4EtuIfmqQ/qnSXSKiU= github.com/google/cel-go v0.19.0/go.mod h1:kWcIzTsPX0zmQ+H3TirHstLLf9ep5QTsZBN9u4dOYLg= -github.com/google/flatbuffers v1.11.0/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= -github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/flatbuffers v23.5.26+incompatible h1:M9dgRyhJemaM4Sw8+66GHBu8ioaQmyPLg1b8VwK5WJg= github.com/google/flatbuffers v23.5.26+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I= @@ -940,200 +527,98 @@ github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5a github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/licenseclassifier v0.0.0-20200402202327-879cb1424de0/go.mod h1:qsqn2hxC+vURpyBRygGUuinTO42MFRLcsmQ/P8v94+M= github.com/google/licenseclassifier v0.0.0-20221004142553-c1ed8fcf4bab h1:okY7fFoWybMbxiHkaqStN4mxSrPfYmTZl5Zh32Z5FjY= github.com/google/licenseclassifier v0.0.0-20221004142553-c1ed8fcf4bab/go.mod h1:jkYIPv59uiw+1MxTWlqQEKebsUDV1DCXQtBBn5lVzf4= github.com/google/licenseclassifier/v2 v2.0.0-alpha.1/go.mod h1:YAgBGGTeNDMU+WfIgaFvjZe4rudym4f6nIn8ZH5X+VM= -github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no= -github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/martian/v3 v3.3.3 h1:DIhPTQrbPkgs2yJYdXU/eNACCG5DVQjySNRNlflZ9Fc= github.com/google/martian/v3 v3.3.3/go.mod h1:iEPrYcgCF7jA9OtScMFQyAlZZ4YXTKEtJ1E6RWzmBA0= -github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200417002340-c6e0a841f49a/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20230426061923-93006964c1fc h1:AGDHt781oIcL4EFk7cPnvBUYTwU8BEU6GDTO3ZMn1sE= -github.com/google/pprof v0.0.0-20230426061923-93006964c1fc/go.mod h1:79YE0hCXdHag9sBkw2o+N/YnZtTkXi0UT9Nnixa5eYk= -github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/pprof v0.0.0-20240711041743-f6c9dda6c6da h1:xRmpO92tb8y+Z85iUOMOicpCfaYcv7o3Cg3wKrIpg8g= +github.com/google/pprof v0.0.0-20240711041743-f6c9dda6c6da/go.mod h1:K1liHPHnj73Fdn/EKuT8nrFqBihUSKXoLYU0BuatOYo= github.com/google/s2a-go v0.1.8 h1:zZDs9gcbt9ZPLV0ndSyQk6Kacx2g/X+SKYovpnz3SMM= github.com/google/s2a-go v0.1.8/go.mod h1:6iNWHTpQ+nfNRN5E00MSdfDwVesa8hhS32PhPO8deJA= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4= github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ= -github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/enterprise-certificate-proxy v0.3.2 h1:Vie5ybvEvT75RniqhfFxPRy3Bf7vr3h0cechB90XaQs= github.com/googleapis/enterprise-certificate-proxy v0.3.2/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0= -github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gax-go/v2 v2.13.0 h1:yitjD5f7jQHhyDsnhKEBU52NdvvdSeGzlAnDPT0hH1s= github.com/googleapis/gax-go/v2 v2.13.0/go.mod h1:Z/fvTZXF8/uw7Xu5GuslPw+bplx6SS338j1Is2S+B7A= -github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= -github.com/googleapis/gnostic v0.4.0/go.mod h1:on+2t9HRStVgn95RSsFWFz+6Q0Snyqv1awfrALZdbtU= -github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg= -github.com/gophercloud/gophercloud v0.1.0/go.mod h1:vxM41WHh5uqHVBMZHzuwNOHh8XEoIEcSTewFxm1c5g8= -github.com/gophercloud/gophercloud v0.10.0/go.mod h1:gmC5oQqMDOMO1t1gq5DquX/yAU808e/4mzjjDA76+Ss= -github.com/gophercloud/gophercloud v0.18.0/go.mod h1:wRtmUelyIIv3CSSDI47aUwbs075O6i+LY+pXsKCBsb4= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorhill/cronexpr v0.0.0-20180427100037-88b0669f7d75 h1:f0n1xnMSmBLzVfsMMvriDyA75NB/oBgILX2GcHXIQzY= github.com/gorhill/cronexpr v0.0.0-20180427100037-88b0669f7d75/go.mod h1:g2644b03hfBX9Ov0ZBDgXXens4rxSxmqFBbhvKv2yVA= -github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/handlers v1.5.1 h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4= github.com/gorilla/handlers v1.5.1/go.mod h1:t8XrUpc4KVXb7HGyJ4/cEnwQiaxrX/hz1Zv/4g96P1Q= -github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= -github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4= github.com/gorilla/sessions v1.2.1/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM= -github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.14.4/go.mod h1:6CwZWGDSPRJidgKAtJVvND6soZe6fT7iteq8wDPdhb0= +github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc h1:GN2Lv3MGO7AS6PrRoT6yV5+wkrOpcszoIsO4+4ds248= +github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc/go.mod h1:+JKpmjMGhpgPL+rXZ5nsZieVzvarn86asRlBg4uNGnk= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= -github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 h1:bkypFPDjIYGfCYD5mRBvpqxfYX1YCS1PXdKYWi8FsN0= github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0/go.mod h1:P+Lt/0by1T8bfcF3z737NnSbmxQAppXMRziHUxPOC8k= -github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= github.com/h2non/filetype v1.1.1 h1:xvOwnXKAckvtLWsN398qS9QhlxlnVXBjXBydK2/UFB4= github.com/h2non/filetype v1.1.1/go.mod h1:319b3zT68BvV+WRj7cwy856M2ehB3HqNOt6sy1HndBY= github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslCrtky5vbi9dd7HrQPQIx6wqiw= github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542/go.mod h1:Ow0tF8D4Kplbc8s8sSb3V2oUCygFHVp8gC3Dn6U4MNI= -github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= -github.com/hashicorp/consul/api v1.4.0/go.mod h1:xc8u05kyMa3Wjr9eEAsIAo3dg8+LywT5E/Cl7cNS5nU= -github.com/hashicorp/consul/api v1.8.1/go.mod h1:sDjTOq0yUyv5G4h+BqSea7Fn6BU+XbolEz1952UB+mk= -github.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= -github.com/hashicorp/consul/sdk v0.4.0/go.mod h1:fY08Y9z5SvJqevyZNy6WWPXiG3KwBPAvlcdx16zZ0fM= -github.com/hashicorp/consul/sdk v0.7.0/go.mod h1:fY08Y9z5SvJqevyZNy6WWPXiG3KwBPAvlcdx16zZ0fM= -github.com/hashicorp/cronexpr v1.1.0 h1:dnNsWtH0V2ReN7JccYe8m//Bj14+PjJDntR1dz0Cixk= -github.com/hashicorp/cronexpr v1.1.0/go.mod h1:P4wA0KBl9C5q2hABiMO7cp6jcIg96CDh1Efb3g1PWA4= +github.com/hashicorp/cronexpr v1.1.2 h1:wG/ZYIKT+RT3QkOdgYc+xsKWVRgnxJ1OJtjjy84fJ9A= +github.com/hashicorp/cronexpr v1.1.2/go.mod h1:P4wA0KBl9C5q2hABiMO7cp6jcIg96CDh1Efb3g1PWA4= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= -github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= +github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= -github.com/hashicorp/go-hclog v0.12.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= -github.com/hashicorp/go-hclog v0.12.2/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= -github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-immutable-radix v1.2.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= -github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA= -github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= +github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= +github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= github.com/hashicorp/go-retryablehttp v0.7.7 h1:C8hUCYzor8PIfXHa4UrZkU4VvK8o9ISHxT2Q8+VepXU= github.com/hashicorp/go-retryablehttp v0.7.7/go.mod h1:pkQpWZeYWskR+D1tR2O5OcBFOxfA7DoAO6xtkuQnHTk= -github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= github.com/hashicorp/go-rootcerts v1.0.2 h1:jzhAVGtqPKbwpyCPELlgNWhE1znq+qwJtW5Oi2viEzc= github.com/hashicorp/go-rootcerts v1.0.2/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= -github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= -github.com/hashicorp/go-sockaddr v1.0.2/go.mod h1:rB4wwRAUzs07qva3c5SdrY/NEtAUjGlgmH/UkBUC97A= -github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= -github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.2 h1:cfejS+Tpcp13yd5nYHWDI6qVCny6wyX2Mt5SGur2IGE= github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-version v1.0.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.2.0 h1:3vNe/fWF5CBgRIguda1meWhsZHy3m8gCJ5wx+dIzX/E= github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= -github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc= -github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= -github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= -github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= -github.com/hashicorp/mdns v1.0.1/go.mod h1:4gW7WsVCke5TE7EPeYliwHlRUyBtfCwuFwuMg2DmyNY= -github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= -github.com/hashicorp/memberlist v0.1.4/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= -github.com/hashicorp/memberlist v0.2.0/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= -github.com/hashicorp/memberlist v0.2.2/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= -github.com/hashicorp/memberlist v0.2.3/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= -github.com/hashicorp/nomad/api v0.0.0-20201203164818-6318a8ac7bf8 h1:Yrz9yGVJf5Ce2KS7x8hS/MUTIeBmGEhF8nhzolRpSqY= -github.com/hashicorp/nomad/api v0.0.0-20201203164818-6318a8ac7bf8/go.mod h1:vYHP9jMXk4/T2qNUbWlQ1OHCA1hHLil3nvqSmz8mtgc= -github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= -github.com/hashicorp/serf v0.9.0/go.mod h1:YL0HO+FifKOW2u1ke99DGVu1zhcpZzNwrLIqBC7vbYU= -github.com/hashicorp/serf v0.9.5/go.mod h1:UWDWwZeL5cuWDJdl0C6wrvrUwEqtQ4ZKBKKENpqIUyk= +github.com/hashicorp/golang-lru v0.6.0 h1:uL2shRDx7RTrOrTCUZEGP/wJUFiUI8QT6E7z5o8jga4= +github.com/hashicorp/golang-lru v0.6.0/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/nomad/api v0.0.0-20240717122358-3d93bd3778f3 h1:fgVfQ4AC1avVOnu2cfms8VAiD8lUq3vWI8mTocOXN/w= +github.com/hashicorp/nomad/api v0.0.0-20240717122358-3d93bd3778f3/go.mod h1:svtxn6QnrQ69P23VvIWMR34tg3vmwLz4UdUzm1dSCgE= github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95 h1:S4qyfL2sEm5Budr4KVMyEniCy+PbS55651I/a+Kn/NQ= github.com/hectane/go-acl v0.0.0-20190604041725-da78bae5fc95/go.mod h1:QiyDdbZLaJ/mZP4Zwc9g2QsfaEA4o7XvvgZegSci5/E= -github.com/hetznercloud/hcloud-go v1.26.2/go.mod h1:2C5uMtBiMoFr3m7lBFPf7wXTdh33CevmZpQIIDPGYJI= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huandu/xstrings v1.0.0/go.mod h1:4qWG/gcEcfX4z/mBDHJ++3ReCw9ibxbsNJbcucJdbSo= -github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= -github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/icholy/digest v0.1.22 h1:dRIwCjtAcXch57ei+F0HSb5hmprL873+q7PoVojdMzM= github.com/icholy/digest v0.1.22/go.mod h1:uLAeDdWKIWNFMH0wqbwchbTQOmJWhzSnL7zmqSPqEEc= -github.com/imdario/mergo v0.3.4/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/imdario/mergo v0.3.12 h1:b6R2BslTbIEToALKP7LxUvijTsNI9TAe80pLWN2g/HU= -github.com/imdario/mergo v0.3.12/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/imdario/mergo v0.3.16 h1:wwQJbIsHYGMUyLSPrEq1CT16AhnhNJQ51+4fdHUnCl4= +github.com/imdario/mergo v0.3.16/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+hD27ysY= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/influxdata/flux v0.65.0/go.mod h1:BwN2XG2lMszOoquQaFdPET8FRQfrXiZsWmcMO9rkaVY= -github.com/influxdata/flux v0.113.0/go.mod h1:3TJtvbm/Kwuo5/PEo5P6HUzwVg4bXWkb2wPQHPtQdlU= -github.com/influxdata/httprouter v1.3.1-0.20191122104820-ee83e2772f69/go.mod h1:pwymjR6SrP3gD3pRj9RJwdl1j5s3doEEV8gS4X9qSzA= -github.com/influxdata/influxdb v1.8.0/go.mod h1:SIzcnsjaHRFpmlxpJ4S3NT64qtEKYweNTUMb/vh0OMQ= -github.com/influxdata/influxdb v1.9.2/go.mod h1:UEe3MeD9AaP5rlPIes102IhYua3FhIWZuOXNHxDjSrI= -github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= -github.com/influxdata/influxql v1.1.0/go.mod h1:KpVI7okXjK6PRi3Z5B+mtKZli+R1DnZgb3N+tzevNgo= -github.com/influxdata/influxql v1.1.1-0.20210223160523-b6ab99450c93/go.mod h1:gHp9y86a/pxhjJ+zMjNXiQAA197Xk9wLxaz+fGG+kWk= -github.com/influxdata/line-protocol v0.0.0-20180522152040-32c6aa80de5e/go.mod h1:4kt73NQhadE3daL3WhR5EJ/J2ocX0PZzwxQ0gXJ7oFE= -github.com/influxdata/pkg-config v0.2.6/go.mod h1:EMS7Ll0S4qkzDk53XS3Z72/egBsPInt+BeRxb0WeSwk= -github.com/influxdata/pkg-config v0.2.7/go.mod h1:EMS7Ll0S4qkzDk53XS3Z72/egBsPInt+BeRxb0WeSwk= -github.com/influxdata/promql/v2 v2.12.0/go.mod h1:fxOPu+DY0bqCTCECchSRtWfc+0X19ybifQhZoQNF5D8= -github.com/influxdata/roaring v0.4.13-0.20180809181101-fc520f41fab6/go.mod h1:bSgUQ7q5ZLSO+bKBGqJiCBGAl+9DxyW63zLTujjUlOE= -github.com/influxdata/tdigest v0.0.0-20181121200506-bf2b5ad3c0a9/go.mod h1:Js0mqiSBE6Ffsg94weZZ2c+v/ciT8QRHFOap7EKDrR0= -github.com/influxdata/tdigest v0.0.2-0.20210216194612-fc98d27c9e8b/go.mod h1:Z0kXnxzbTC2qrx4NaIzYkE1k66+6oEDQTvL95hQFh5Y= -github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368/go.mod h1:Wbbw6tYNvwa5dlB6304Sd+82Z3f7PmVZHVKU637d4po= github.com/jcmturner/aescts/v2 v2.0.0 h1:9YKLH6ey7H4eDBXW8khjYslgyqG2xZikXP0EQFKrle8= github.com/jcmturner/aescts/v2 v2.0.0/go.mod h1:AiaICIRyfYg35RUkr8yESTqvSy7csK90qZ5xfvvsoNs= github.com/jcmturner/dnsutils/v2 v2.0.0 h1:lltnkeZGL0wILNvrNiVCR6Ro5PGU/SeBvVO/8c/iPbo= @@ -1147,19 +632,14 @@ github.com/jcmturner/gokrb5/v8 v8.4.2/go.mod h1:sb+Xq/fTY5yktf/VxLsE3wlfPqQjp0aW github.com/jcmturner/rpc/v2 v2.0.3 h1:7FXXj8Ti1IaVFpSAziCZWNzbNuZmnvw/i6CqLNdWfZY= github.com/jcmturner/rpc/v2 v2.0.3/go.mod h1:VUJYCIDm3PVOEHw8sgt091/20OJjskO/YJki3ELg/Hc= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= -github.com/jessevdk/go-flags v1.5.0/go.mod h1:Fw0T6WPc1dYxT4mKEZRfG5kJhaTDP9pj1c2EWnYs/m4= -github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.3.0/go.mod h1:9QtRXoHjLGCJ5IBSaohpXITPlowMeeYCZ7fLUTSywik= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 h1:rp+c0RAYOWj8l6qbCUTSiRLG/iKnW3K3/QfPPuSsBt4= github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901/go.mod h1:Z86h9688Y0wesXCyonoVr47MasHilkuLMqGhRZ4Hpak= -github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= -github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/jonboulle/clockwork v0.2.2 h1:UOGuzwb1PwsrDAObMuhUnj0p5ULPj8V/xJ7Kx9qUBdQ= github.com/jonboulle/clockwork v0.2.2/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8= github.com/josephspurrier/goversioninfo v0.0.0-20190209210621-63e6d1acd3dd h1:KikNiFwUO3QLyeKyN4k9yBH9Pcu/gU/yficWi61cJIw= @@ -1170,162 +650,89 @@ github.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2E github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/jsternberg/zap-logfmt v1.0.0/go.mod h1:uvPs/4X51zdkcm5jXl5SYoN+4RK21K8mysFmDaM/h+o= -github.com/jsternberg/zap-logfmt v1.2.0/go.mod h1:kz+1CUmCutPWABnNkOu9hOHKdT2q3TDYCcsFy9hpqb0= github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= -github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef/go.mod h1:Ct9fl0F6iIOGgxJ5npU/IUOhOhqlVrGjyIZc8/MagT0= -github.com/karrick/godirwalk v1.8.0/go.mod h1:H5KPZjojv4lE+QYImBI8xVtrBRgYrIVsaRPx4tDPEn4= -github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA= github.com/karrick/godirwalk v1.15.6/go.mod h1:j4mkqPuvaLI8mp1DroR3P6ad7cyYd4c1qeJ3RV7ULlk= github.com/karrick/godirwalk v1.17.0 h1:b4kY7nqDdioR/6qnbHQyDvmA17u5G1cZ6J+CZXwSWoI= github.com/karrick/godirwalk v1.17.0/go.mod h1:j4mkqPuvaLI8mp1DroR3P6ad7cyYd4c1qeJ3RV7ULlk= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= -github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= -github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/asmfmt v1.3.2 h1:4Ri7ox3EwapiOjCki+hw14RyKk201CN4rzyCJRFLpK4= github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= -github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= -github.com/klauspost/compress v1.9.5/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= github.com/klauspost/compress v1.12.2/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= -github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/compress v1.15.11/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM= github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA= github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= -github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= -github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= -github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kortschak/utter v1.5.0 h1:1vHGHPZmJ6zU5XbfllIAG3eQBoHT97ePrZJ+pT3RoiQ= github.com/kortschak/utter v1.5.0/go.mod h1:vSmSjbyrlKjjsL71193LmzBOKgwePk9DH6uFaWHIInc= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/kylelemons/godebug v0.0.0-20160406211939-eadb3ce320cb/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= -github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lib/pq v1.10.3 h1:v9QZf2Sn6AmjXtQeFpdoq/eaNtYP6IN+7lcrygsIAtg= github.com/lib/pq v1.10.3/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= -github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= -github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= -github.com/linode/linodego v0.28.5/go.mod h1:BR0gVkCJffEdIGJSl6bHR80Ty+Uvg/2jkjmrWaFectM= github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 h1:6E+4a0GO5zZEnZ81pIr0yLvtUWk2if982qA3F3QD6H4= github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0/go.mod h1:zJYVVT2jmtg6P3p1VtQj7WsuWi/y4VnjVBn7F8KPB3I= -github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= github.com/magefile/mage v1.15.0 h1:BvGheCMAsG3bWUDbZ8AyXXpCNwU9u5CB6sM+HNb9HYg= github.com/magefile/mage v1.15.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A= -github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190312143242-1de009706dbe/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.7.0/go.mod h1:KAzv3t3aY1NaHWoQz1+4F1ccyAH66Jk7yos7ldAVICs= -github.com/mailru/easyjson v0.7.1/go.mod h1:KAzv3t3aY1NaHWoQz1+4F1ccyAH66Jk7yos7ldAVICs= -github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE= github.com/markbates/pkger v0.17.0/go.mod h1:0JoVlrol20BSywW79rN3kdFFsE5xYM+rSCQDXbLhiuI= github.com/markbates/pkger v0.17.1 h1:/MKEtWqtc0mZvu9OinB9UzVN9iYCwLWuyUv4Bw+PCno= github.com/markbates/pkger v0.17.1/go.mod h1:0JoVlrol20BSywW79rN3kdFFsE5xYM+rSCQDXbLhiuI= -github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0= github.com/martini-contrib/render v0.0.0-20150707142108-ec18f8345a11 h1:YFh+sjyJTMQSYjKwM4dFKhJPJC/wfo98tPUc17HdoYw= github.com/martini-contrib/render v0.0.0-20150707142108-ec18f8345a11/go.mod h1:Ah2dBMoxZEqk118as2T4u4fjfXarE0pPnMJaArZQZsI= -github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-ieproxy v0.0.1 h1:qiyop7gCflfhwCzGyeT0gro3sF9AIg9HU98JORTkqfI= github.com/mattn/go-ieproxy v0.0.1/go.mod h1:pYabZ6IHcRpFh7vIaLfK7rdcWgFEb3SFJ6/gNWuh88E= -github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= -github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= -github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-sqlite3 v1.11.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= -github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= -github.com/mattn/go-tty v0.0.0-20180907095812-13ff1204f104/go.mod h1:XPvLUNfbS4fJH25nqRHfWLMa1ONC8Amw+mIA639KxkE= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/miekg/dns v1.1.22/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= -github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= -github.com/miekg/dns v1.1.29/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM= -github.com/miekg/dns v1.1.42 h1:gWGe42RGaIqXQZ+r3WUGEKBEtvPHY2SXo4dqixDNxuY= -github.com/miekg/dns v1.1.42/go.mod h1:+evo5L0630/F6ca/Z9+GAqzhjGyn8/c+TBaOyfEl0V4= -github.com/mileusna/useragent v0.0.0-20190129205925-3e331f0949a5/go.mod h1:JWhYAp2EXqUtsxTKdeGlY8Wp44M7VxThC9FEoNGi2IE= +github.com/miekg/dns v1.1.61 h1:nLxbwF3XxhwVSm8g9Dghm9MHPaUZuqhPiGL+675ZmEs= +github.com/miekg/dns v1.1.61/go.mod h1:mnAarhS3nWaW+NVP2wTkYVIZyHNJ098SJZUki3eykwQ= github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 h1:AMFGa4R4MiIpspGNG7Z948v4n35fFGB3RR3G/ry4FWs= github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 h1:+n/aFZefKZp7spd8DFdX7uMikMLXX4oubIzJF4kv/wI= github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= -github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= -github.com/mitchellh/cli v1.1.0/go.mod h1:xcISNoH86gajksDmfB23e/pu+B+GeFRMYmoHXxx3xhI= -github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-testing-interface v1.0.0 h1:fzU/JVNcaqHQEcVFAKeR41fkiLdIPrefOvVG1VZ96U0= -github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= -github.com/mitchellh/go-wordwrap v1.0.0/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= -github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= +github.com/mitchellh/go-testing-interface v1.14.1 h1:jrgshOhYAUVNMAJiKbEu7EqAwgJJ2JqpQmpLJOu07cU= +github.com/mitchellh/go-testing-interface v1.14.1/go.mod h1:gfgS7OtZj6MA4U1UrDRp04twqAjfvlZyCfX3sDjEym8= github.com/mitchellh/gox v1.0.1 h1:x0jD3dcHk9a9xPSDN6YEL4xL6Qz0dvNYm8yZqui5chI= github.com/mitchellh/gox v1.0.1/go.mod h1:ED6BioOGXMswlXa2zxfh/xdd5QhwYliBFn9V18Ap4z4= github.com/mitchellh/hashstructure v1.1.0 h1:P6P1hdjqAAknpY/M1CGipelZgp+4y9ja9kmUZPXP+H0= github.com/mitchellh/hashstructure v1.1.0/go.mod h1:xUDAozZz0Wmdiufv0uyhnHkUTN6/6d8ulp4AwfLKrmA= github.com/mitchellh/iochan v1.0.0 h1:C+X3KsSTLFVBr/tK1eYN/vs4rJcvsiLU338UhYPJWeY= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= -github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.2.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/mapstructure v1.3.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/mapstructure v1.3.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/mapstructure v1.4.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3Nl2EsFP0= github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo= github.com/moby/spdystream v0.2.0 h1:cjW1zVyyoiM0T7b6UoySUFqzXMoqRckQtXwGPiBhOM8= github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= -github.com/moby/term v0.0.0-20201216013528-df9cb8a40635/go.mod h1:FBS0z0QWA44HXygs7VXDUOGoN/1TV3RuWkLO04am3wc= +github.com/moby/sys/userns v0.1.0 h1:tVLXkFOxVu9A64/yh59slHVv9ahO9UIev4JZusOLG/g= +github.com/moby/sys/userns v0.1.0/go.mod h1:IHUYgu/kao6N8YZlp9Cf444ySSvCmDlmzUcYfDHOl28= github.com/moby/term v0.5.0 h1:xt8Q1nalod/v7BqbG21f8mQPqH+xAaC9C3N3wfWbVP0= github.com/moby/term v0.5.0/go.mod h1:8FzsFHVUBGZdbDsJw/ot+X+d5HLUbvklYLJ9uGfcI3Y= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -1336,68 +743,32 @@ github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3Rllmb github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= -github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= -github.com/montanaflynn/stats v0.6.6/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= +github.com/montanaflynn/stats v0.7.0 h1:r3y12KyNxj/Sb/iOE46ws+3mS1+MZca1wlHQFPsY/JU= +github.com/montanaflynn/stats v0.7.0/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A= github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= -github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg= -github.com/mtibben/percent v0.2.1/go.mod h1:KG9uO+SZkUp+VkRHsCdYQV3XSZrrSpR3O9ibNBTZrns= -github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus= github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= -github.com/nats-io/jwt v0.3.0/go.mod h1:fRYCDE99xlTsqUzISS1Bi75UBJ6ljOJQOAAu5VglpSg= -github.com/nats-io/jwt v0.3.2/go.mod h1:/euKqTS1ZD+zzjYrY7pseZrTtWQSjujC7xjPc8wL6eU= -github.com/nats-io/nats-server/v2 v2.1.2/go.mod h1:Afk+wRZqkMQs/p45uXdrVLuab3gwv3Z8C4HTBu8GD/k= -github.com/nats-io/nats.go v1.9.1/go.mod h1:ZjDU1L/7fJ09jvUSRVBR2e7+RnLiiIQyqyzEE/Zbp4w= -github.com/nats-io/nkeys v0.1.0/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= -github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= -github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= -github.com/oklog/run v1.1.0/go.mod h1:sVPdnTZT1zYwAJeCMu2Th4T21pA3FPOQRfWjQlk7DVU= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= -github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/oklog/ulid/v2 v2.0.2 h1:r4fFzBm+bv0wNKNh5eXTwU7i85y5x+uwkxCUTNVQqLc= github.com/oklog/ulid/v2 v2.0.2/go.mod h1:mtBL0Qe/0HAx6/a4Z30qxVIAL1eQDweXq5lxOEiwQ68= -github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec= github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= -github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.6.0 h1:Ix8l273rp3QzYgXSR+c8d1fTG7UPgYkOSELPhiY/YGw= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.11.0 h1:JAKSXpt1YjtLA7YpPiqO9ss6sNXEsPfSGdwN0UHqzrw= -github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo/v2 v2.17.1 h1:V++EzdbhI4ZV4ev0UTIj0PzhzOcReJFyJaLjtSF55M8= github.com/onsi/ginkgo/v2 v2.17.1/go.mod h1:llBI3WDLL9Z6taip6f33H76YcWtJv+7R3HigUjbIBOs= -github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.33.0 h1:snPCflnZrpMsy94p4lXVEkHo12lmPnc3vY5XBbreexE= github.com/onsi/gomega v1.33.0/go.mod h1:+925n5YtiFsLzzafLUHzVMBpvvRAzrydIBiSIxjX3wY= -github.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk= github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= -github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= github.com/opencontainers/image-spec v1.1.0 h1:8SG7/vwALn54lVB/0yZ/MMwhFrPYtpEHQb2IpWsCzug= github.com/opencontainers/image-spec v1.1.0/go.mod h1:W4s4sFTMaBeK1BQLXbG4AdM2szdn85PY75RI83NrTrM= -github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis= -github.com/opentracing-contrib/go-stdlib v0.0.0-20190519235532-cf7a6c988dc9/go.mod h1:PLldrQSroqzH70Xl+1DQcGnefIbqsKR7UDaiux3zV+w= -github.com/opentracing-contrib/go-stdlib v1.0.0/go.mod h1:qtI1ogk+2JhVPIXVc6q+NHziSmy2W5GbdQZFUHADCBU= -github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= -github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/opentracing/opentracing-go v1.0.3-0.20180606204148-bd9c31933947/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc= -github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5/go.mod h1:/wsWhb9smxSfWAKL3wpBW7V8scJMt8N8gnaMCS9E/cA= -github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= -github.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= -github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= github.com/osquery/osquery-go v0.0.0-20231108163517-e3cde127e724 h1:z8XmnNQeCDZB3BwVoRxcqwo7MlDdsB6AJxqTap72S7w= github.com/osquery/osquery-go v0.0.0-20231108163517-e3cde127e724/go.mod h1:mLJRc1Go8uP32LRALGvWj2lVJ+hDYyIfxDzVa+C5Yo8= github.com/otiai10/copy v1.12.0 h1:cLMgSQnXBs1eehF0Wy/FAGsgDTDmAqFR7rQylBb1nDY= @@ -1406,191 +777,90 @@ github.com/otiai10/mint v1.5.1 h1:XaPLeE+9vGbuyEHem1JNk3bYc7KKqyI/na0/mLd/Kks= github.com/otiai10/mint v1.5.1/go.mod h1:MJm72SBthJjz8qhefc4z1PYEieWmy8Bku7CjcAqyUSM= github.com/oxtoacart/bpool v0.0.0-20150712133111-4e1c5567d7c2 h1:CXwSGu/LYmbjEab5aMCs5usQRVBGThelUKBNnoSOuso= github.com/oxtoacart/bpool v0.0.0-20150712133111-4e1c5567d7c2/go.mod h1:L3UMQOThbttwfYRNFOWLLVXMhk5Lkio4GGOtw5UrxS0= -github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= -github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= -github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= -github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= github.com/pborman/getopt v0.0.0-20170112200414-7148bc3a4c30/go.mod h1:85jBQOZwpVEaDAr341tbn15RS4fCAsIst0qp7i8ex1o= -github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= -github.com/pelletier/go-toml v1.4.0/go.mod h1:PN7xzY2wHTK0K9p34ErDQMlFxa51Fk0OUruD3k1mMwo= -github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE= -github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= -github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= -github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= -github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= -github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= -github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= -github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pierrec/lz4 v2.6.0+incompatible h1:Ix9yFKn1nSPBLFl/yZknTp8TU5G4Ps0JDmguYK6iH1A= github.com/pierrec/lz4 v2.6.0+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= -github.com/pierrec/lz4/v4 v4.1.16/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= github.com/pierrec/lz4/v4 v4.1.18 h1:xaKrnTkyoqfh1YItXl56+6KJNVYWlEEPuAQW9xsplYQ= github.com/pierrec/lz4/v4 v4.1.18/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= github.com/pierrre/gotestcover v0.0.0-20160517101806-924dca7d15f0 h1:i5VIxp6QB8oWZ8IkK8zrDgeT6ORGIUeiN+61iETwJbI= github.com/pierrre/gotestcover v0.0.0-20160517101806-924dca7d15f0/go.mod h1:4xpMLz7RBWyB+ElzHu8Llua96TRCB3YwX+l5EP1wmHk= github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4/go.mod h1:4OwLy04Bl9Ef3GJJCoec+30X3LQs/0/m4HFRt/2LUSA= -github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4/go.mod h1:N6UoU20jOqggOuDwUaBQpluzLNDqif3kq9z2wpdYEfQ= -github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ= github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c/go.mod h1:7rwL4CYBLnjLxUqIJNnCWiEdr3bn6IUYi15bNlnbCCU= -github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= -github.com/pkg/term v0.0.0-20180730021639-bffc007b7fd5/go.mod h1:eCbImbZ95eXtAUIbLAuAVnBnwf83mjf6QIVH8SHYwqQ= github.com/pkg/xattr v0.4.9 h1:5883YPCtkSd8LFbs13nXplj9g9tlrwoJRjgpgMu1/fE= github.com/pkg/xattr v0.4.9/go.mod h1:di8WF84zAKk8jzR1UBTEWh9AUlIZZ7M/JNt8e9B6ktU= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= -github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c h1:ncq/mPwQF4JjgDlrVEn3C11VoGHZN7m8qihwgMEtzYw= github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c/go.mod h1:OmDBASR4679mdNQnz2pUhc2G8CO2JrUAVFDRBDP/hJE= github.com/poy/eachers v0.0.0-20181020210610-23942921fe77 h1:SNdqPRvRsVmYR0gKqFvrUKhFizPJ6yDiGQ++VAJIoDg= github.com/poy/eachers v0.0.0-20181020210610-23942921fe77/go.mod h1:x1vqpbcMW9T/KRcQ4b48diSiSVtYgvwQ5xzDByEg4WE= -github.com/prometheus/alertmanager v0.20.0/go.mod h1:9g2i48FAyZW6BtbsnvHtMHQXl2aVtrORKwKVCQ+nbrg= -github.com/prometheus/alertmanager v0.22.2/go.mod h1:rYinOWxFuCnNssc3iOjn2oMTlhLaPcUuqV5yk5JKUAE= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g= -github.com/prometheus/client_golang v1.2.1/go.mod h1:XMU6Z2MjaRKVu/dC1qupJI9SiNkDYzz3xecMgSW/F+U= -github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= -github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= -github.com/prometheus/client_golang v1.5.1/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= -github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.10.0/go.mod h1:WJM3cc3yu7XKBKa/I8WeZm+V3eltZnBwfENSU7mdogU= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= github.com/prometheus/client_golang v1.20.2 h1:5ctymQzZlyOON1666svgwn3s6IKWgfbjsejTMiXIyjg= github.com/prometheus/client_golang v1.20.2/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E= github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY= -github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= -github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= -github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= -github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.15.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s= -github.com/prometheus/common v0.18.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s= -github.com/prometheus/common v0.23.0/go.mod h1:H6QK/N6XVT42whUeIdI3dp36w49c+/iMDk7UAI2qm7Q= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/common v0.57.0 h1:Ro/rKjwdq9mZn1K5QPctzh+MA4Lp0BuYk5ZZEVhoNcY= github.com/prometheus/common v0.57.0/go.mod h1:7uRPFSUTbfZWsJ7MHY56sqt7hLQu3bxXHDnNhl8E9qI= -github.com/prometheus/exporter-toolkit v0.5.1/go.mod h1:OCkM4805mmisBhLmVFw858QYi3v0wKdY6/UxrT0pZVg= -github.com/prometheus/exporter-toolkit v0.6.0/go.mod h1:ZUBIj498ePooX9t/2xtDjeQYwvRpiPP2lh5u4iblj2g= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= -github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= -github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= -github.com/prometheus/procfs v0.0.11/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.15.1 h1:YagwOFzUgYfKKHX6Dr+sHT7km/hxC76UB0learggepc= github.com/prometheus/procfs v0.15.1/go.mod h1:fB45yRUv8NstnjriLhBQLuOUt+WW4BsoGhij/e3PBqk= -github.com/prometheus/prometheus v0.0.0-20200609090129-a6600f564e3c/go.mod h1:S5n0C6tSgdnwWshBUceRx5G1OsjLv/EeZ9t3wIfEtsY= -github.com/prometheus/prometheus v1.8.2-0.20210701133801-b0944590a1c9 h1:If7jYp33vwa8ZQ7GGwrAs0SBjiW0aWeAB/oV1aG7bZ4= -github.com/prometheus/prometheus v1.8.2-0.20210701133801-b0944590a1c9/go.mod h1:A97P+iwS3Ffpxpejz4+ASZl6i9EqSJDzxObq8DjV2SU= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/prometheus/prometheus v0.54.1 h1:vKuwQNjnYN2/mDoWfHXDhAsz/68q/dQDb+YbcEqU7MQ= +github.com/prometheus/prometheus v0.54.1/go.mod h1:xlLByHhk2g3ycakQGrMaU8K7OySZx98BzeCR99991NY= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= -github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= -github.com/retailnext/hllpp v1.0.1-0.20180308014038-101a6d2f8b52/go.mod h1:RDpi1RftBQPUCDRw6SmxeaREsAaRKnOclghuzp/WRzc= -github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= -github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= -github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= -github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= +github.com/rogpeppe/go-charset v0.0.0-20180617210344-2471d30d28b4/go.mod h1:qgYeAmZ5ZIpBWTGllZSQnw97Dj+woV0toclVaRGI8pc= github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= -github.com/rs/cors v1.6.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= -github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= -github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= -github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= -github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= -github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/samuel/go-parser v0.0.0-20130731160455-ca8abbf65d0e h1:hUGyBE/4CXRPThr4b6kt+f1CN90no4Fs5CNrYOKYSIg= github.com/samuel/go-parser v0.0.0-20130731160455-ca8abbf65d0e/go.mod h1:Sb6li54lXV0yYEjI4wX8cucdQ9gqUJV3+Ngg3l9g30I= github.com/samuel/go-thrift v0.0.0-20140522043831-2187045faa54 h1:jbchLJWyhKcmOjkbC4zDvT/n5EEd7g6hnnF760rEyRA= github.com/samuel/go-thrift v0.0.0-20140522043831-2187045faa54/go.mod h1:Vrkh1pnjV9Bl8c3P9zH0/D4NlOHWP5d4/hF4YTULaec= -github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= -github.com/satori/go.uuid v0.0.0-20160603004225-b111a074d5ef/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= -github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.7.0.20210223165440-c65ae3540d44/go.mod h1:CJJ5VAbozOl0yEw7nHB9+7BXTJbIn6h7W+f6Gau5IP8= -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= -github.com/segmentio/kafka-go v0.1.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= -github.com/segmentio/kafka-go v0.2.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/sergi/go-diff v1.3.1 h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8= github.com/sergi/go-diff v1.3.1/go.mod h1:aMJSSKb2lpPvRNec0+w3fl7LP9IOFzdc9Pa4NFbPK1I= github.com/shirou/gopsutil/v3 v3.22.10 h1:4KMHdfBRYXGF9skjDWiL4RA2N+E8dRdodU/bOZpPoVg= github.com/shirou/gopsutil/v3 v3.22.10/go.mod h1:QNza6r4YQoydyCfo6rH0blGfKahgibh4dQmV5xdFkQk= +github.com/shoenig/test v1.7.1 h1:UJcjSAI3aUKx52kfcfhblgyhZceouhvvs3OYdWgn+PY= +github.com/shoenig/test v1.7.1/go.mod h1:UxJ6u/x2v/TNs/LoLxBNJRV9DiwBBKYxXSyczsBHFoI= github.com/shopspring/decimal v1.3.1 h1:2Usl1nmF/WZucqkFZhnfFYxxxu8LG21F6nPQBE5gKV8= github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= -github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg= -github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= -github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd/go.mod h1:TrYk7fJVaAttu97ZZKrO9UbRa8izdowaMIZcxYMbVaw= -github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546/go.mod h1:TrYk7fJVaAttu97ZZKrO9UbRa8izdowaMIZcxYMbVaw= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= -github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a h1:pa8hGb/2YqsZKovtsgrwcDH1RZhVbTKCjLp47XpqCDs= github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= -github.com/smartystreets/goconvey v1.6.4 h1:fv0U8FUIMPNf1L9lnHLvLhgicrIVChEkdzIKYqbNC9s= -github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= -github.com/snowflakedb/gosnowflake v1.6.19/go.mod h1:FM1+PWUdwB9udFDsXdfD58NONC0m+MlOSmQRvimobSM= -github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= -github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY= -github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= -github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM= github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y= -github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/stoewer/go-strcase v1.2.0 h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU= github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= -github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= -github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= -github.com/stretchr/objx v0.3.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY= github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= -github.com/stretchr/testify v1.2.0/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= @@ -1603,68 +873,41 @@ github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= -github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs= -github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= -github.com/tinylib/msgp v1.0.2/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= -github.com/tinylib/msgp v1.1.0/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= github.com/tklauser/go-sysconf v0.3.10 h1:IJ1AZGZRWbY8T5Vfk04D9WOA5WSejdflXxP03OUqALw= github.com/tklauser/go-sysconf v0.3.10/go.mod h1:C8XykCvCb+Gn0oNCWPIlcb0RuglQTYaQ2hGm7jmxEFk= github.com/tklauser/numcpus v0.4.0 h1:E53Dm1HjH1/R2/aoCtXtPgzmElmn51aOkhCFSuZq//o= github.com/tklauser/numcpus v0.4.0/go.mod h1:1+UI3pD8NW14VMwdgJNJ1ESk2UnwhAnz5hMwiKKqXCQ= -github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tommyers-elastic/dashboard-api-go/v3 v3.0.0-20240913150833-a945473a8f25 h1:o24r+NDexzdlwgqI0Dglq2I/cdONYRACikcUmYmovtQ= github.com/tommyers-elastic/dashboard-api-go/v3 v3.0.0-20240913150833-a945473a8f25/go.mod h1:COGDRzuD05ZS/zp0lDCTDFhx6kAuuNdhDjY0y2ifi5o= github.com/tsg/go-daemon v0.0.0-20200207173439-e704b93fd89b h1:X/8hkb4rQq3+QuOxpJK7gWmAXmZucF0EI1s1BfBLq6U= github.com/tsg/go-daemon v0.0.0-20200207173439-e704b93fd89b/go.mod h1:jAqhj/JBVC1PwcLTWd6rjQyGyItxxrhpiBl8LSuAGmw= -github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= -github.com/uber-go/tally v3.3.15+incompatible/go.mod h1:YDTIBxdXyOU/sCWilKB4bgyufu1cEi0jdVnRdxvjnmU= -github.com/uber/athenadriver v1.1.4/go.mod h1:tQjho4NzXw55LGfSZEcETuYydpY1vtmixUabHkC1K/E= -github.com/uber/jaeger-client-go v2.23.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk= -github.com/uber/jaeger-client-go v2.29.1+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk= -github.com/uber/jaeger-lib v2.2.0+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U= -github.com/uber/jaeger-lib v2.4.1+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U= github.com/ugorji/go v1.1.8/go.mod h1:0lNM99SwWUIRhCXnigEMClngXBk/EmpTXa7mgiewYWA= github.com/ugorji/go/codec v1.1.8 h1:4dryPvxMP9OtkjIbuNeK2nb27M38XMHLGlfNSNph/5s= github.com/ugorji/go/codec v1.1.8/go.mod h1:X00B19HDtwvKbQY2DcYjvZxKQp8mzrJoQ6EgoIY/D2E= -github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= -github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/vektah/gqlparser v1.1.2/go.mod h1:1ycwN7Ij5njmMkPPAOaRFY4rET2Enx7IkVv3vaXspKw= github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE= github.com/vishvananda/netlink v1.2.1-beta.2 h1:Llsql0lnQEbHj0I1OuKyp8otXp0r3q0mPkuhwHfStVs= github.com/vishvananda/netlink v1.2.1-beta.2/go.mod h1:twkDnbuQxJYemMlGd4JFIcuhgX83tXhKS2B/PRMpOho= github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU= +github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0= github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f h1:p4VB7kIXpOQvVn1ZaTIVp+3vuYAXFe3OJEvjbUYJLaA= github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0= github.com/vmware/govmomi v0.39.0 h1:soLZ08Q2zvjRSinNup8xVlw0KDDCJPPA1rIDmBhi7As= github.com/vmware/govmomi v0.39.0/go.mod h1:oHzAQ1r6152zYDGcUqeK+EO8LhKo5wjtvWZBGHws2Hc= -github.com/willf/bitset v1.1.3/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= -github.com/willf/bitset v1.1.9/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c= github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= -github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs= github.com/xdg-go/scram v1.1.2 h1:FHX5I5B4i4hKRVRBCFRxq1iQRej7WO3hhBuJf+UUySY= github.com/xdg-go/scram v1.1.2/go.mod h1:RT/sEzTbU5y00aCK8UOx6R7YryM0iF1N2MOmC3kKLN4= -github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM= github.com/xdg-go/stringprep v1.0.4 h1:XLI/Ng3O1Atzq0oBs3TWm+5ZVgkq2aqdlvP9JtoZ6c8= github.com/xdg-go/stringprep v1.0.4/go.mod h1:mPGuuIYwz7CmR2bT9j4GbQqutWS1zV24gijq1dTyGkM= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/scram v1.0.3/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v0.0.0-20180714160509-73f8eece6fdc/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= github.com/xdg/stringprep v1.0.3/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= -github.com/xlab/treeprint v0.0.0-20180616005107-d6fb6747feb6/go.mod h1:ce1O1j6UtZfjr22oyGxGLbauSBp2YVXpARAosm7dHBg= -github.com/xlab/treeprint v1.1.0/go.mod h1:gj5Gd3gPdKtR1ikdDK6fnFLdmIS0X30kTTuNd/WEJu0= -github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a h1:fZHgsYlfvtyqToslyjUt3VOPF4J7aK/3MPcK7xp3PDk= github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a/go.mod h1:ul22v+Nro/R083muKhosV54bj5niojjWZvU8xrevuH4= -github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/yuin/gopher-lua v0.0.0-20170403160031-b402f3114ec7 h1:0gYLpmzecnaDCoeWxSfEJ7J1b6B/67+NV++4HKQXx+Y= github.com/yuin/gopher-lua v0.0.0-20170403160031-b402f3114ec7/go.mod h1:aEV29XrmTYFr3CiRxZeGHpkvbwq+prZduBqMaascyCU= @@ -1688,30 +931,10 @@ go.elastic.co/fastjson v1.1.0 h1:3MrGBWWVIxe/xvsbpghtkFoPciPhOCmjsR/HfwEeQR4= go.elastic.co/fastjson v1.1.0/go.mod h1:boNGISWMjQsUPy/t6yqt2/1Wx4YNPSe+mZjlyw9vKKI= go.elastic.co/go-licence-detector v0.6.1 h1:T2PFHYdow+9mAjj6K5ehn5anTxtsURfom2P4S6PgMzg= go.elastic.co/go-licence-detector v0.6.1/go.mod h1:qQ1clBRS2f0Ee5ie+y2LLYnyhSNJNm0Ha6d7SoYVtM4= -go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/bbolt v1.3.10 h1:+BqfJTcCzTItrop8mq/lbzL8wSGtj94UO/3U31shqG0= go.etcd.io/bbolt v1.3.10/go.mod h1:bK3UQLPJZly7IlNmV7uVHJDxfe5aK9Ll93e/74Y9oEQ= -go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= -go.mongodb.org/mongo-driver v1.0.3/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= -go.mongodb.org/mongo-driver v1.1.1/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= -go.mongodb.org/mongo-driver v1.1.2/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= -go.mongodb.org/mongo-driver v1.3.0/go.mod h1:MSWZXKOynuguX+JSvwP8i+58jYCXxbia8HS3gZBapIE= -go.mongodb.org/mongo-driver v1.3.2/go.mod h1:MSWZXKOynuguX+JSvwP8i+58jYCXxbia8HS3gZBapIE= -go.mongodb.org/mongo-driver v1.3.4/go.mod h1:MSWZXKOynuguX+JSvwP8i+58jYCXxbia8HS3gZBapIE= -go.mongodb.org/mongo-driver v1.4.3/go.mod h1:WcMNYLx/IlOxLe6JRJiv2uXuCz6zBLndR4SoGjYphSc= -go.mongodb.org/mongo-driver v1.4.4/go.mod h1:WcMNYLx/IlOxLe6JRJiv2uXuCz6zBLndR4SoGjYphSc= -go.mongodb.org/mongo-driver v1.4.6/go.mod h1:WcMNYLx/IlOxLe6JRJiv2uXuCz6zBLndR4SoGjYphSc= -go.mongodb.org/mongo-driver v1.5.1 h1:9nOVLGDfOaZ9R0tBumx/BcuqkbFpyTCU2r/Po7A2azI= -go.mongodb.org/mongo-driver v1.5.1/go.mod h1:gRXCHX4Jo7J0IJ1oDQyUxF7jfy19UfxniMS4xxMmUqw= -go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= -go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= -go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.mongodb.org/mongo-driver v1.14.0 h1:P98w8egYRjYe3XDjxhYJagTokP/H6HzlsnojRgZRd80= +go.mongodb.org/mongo-driver v1.14.0/go.mod h1:Vzb0Mk/pa7e6cWw85R4F/endUC3u0U9jGcNU603k65c= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/collector v0.109.0 h1:ULnMWuwcy4ix1oP5RFFRcmpEbaU5YabW6nWcLMQQRo0= @@ -1747,134 +970,56 @@ go.opentelemetry.io/otel/sdk v1.29.0 h1:vkqKjk7gwhS8VaWb0POZKmIEDimRCMsopNYnriHy go.opentelemetry.io/otel/sdk v1.29.0/go.mod h1:pM8Dx5WKnvxLCb+8lG1PRNIDxu9g9b9g59Qr7hfAAok= go.opentelemetry.io/otel/trace v1.29.0 h1:J/8ZNK4XgR7a21DZUAsbF8pZ5Jcw1VhACmnYt39JTi4= go.opentelemetry.io/otel/trace v1.29.0/go.mod h1:eHl3w0sp3paPkYstJOmAimxhiFXPg+MMTlEh3nsQgWQ= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.opentelemetry.io/proto/otlp v1.3.1 h1:TrMUixzpM0yuc/znrFTP9MMRh8trP93mkCiDVeXrui0= go.opentelemetry.io/proto/otlp v1.3.1/go.mod h1:0X1WI4de4ZsLrrJNLAQbFeLCm3T7yBkR0XqQ7niQU+8= -go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= -go.uber.org/atomic v1.5.1/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= -go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= -go.uber.org/atomic v1.8.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE= go.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0= -go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= go.uber.org/goleak v1.1.11/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= -go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= -go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= -go.uber.org/multierr v1.4.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= -go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/multierr v1.7.0/go.mod h1:7EAYxJLBy9rStEaz58O2t4Uvip6FSURkq8/ppBp95ak= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= go.uber.org/ratelimit v0.3.1 h1:K4qVE+byfv/B3tC+4nYWP7v/6SimcO7HzHekoMNBma0= go.uber.org/ratelimit v0.3.1/go.mod h1:6euWsTB6U/Nb3X++xEUXA8ciPJvr19Q/0h1+oDcJhRk= -go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= -go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= -go.uber.org/zap v1.14.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= -go.uber.org/zap v1.14.1/go.mod h1:Mb2vm2krFEG5DV0W9qcHBYFtp/Wku1cvYaqPsS/WYfc= go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8= go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E= -golang.org/x/crypto v0.0.0-20180505025534-4ec37c66abab/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190320223903-b7391e95e576/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190422162423-af44ce270edf/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190617133340-57b3e21c3d56/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20191202143827-86a70503ff7e/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200422194213-44a606286825/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= -golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= -golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= +golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8= golang.org/x/crypto v0.27.0 h1:GXm2NjJrPaiv/h1tb2UH8QfgC/hOf/+z0p6PT8o1w7A= golang.org/x/crypto v0.27.0/go.mod h1:1Xngt8kV6Dvbssa53Ziq6Eqn0HqbZi5Z6R0ZpwQzt70= -golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= -golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= -golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 h1:/RIbNt/Zr7rVhIkQhooTxCxFcdWLGIKnZA4IXNFSrvo= golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3/go.mod h1:idGWGoKP1toJGkd5/ig9ZLuPcZBC3ewk7SzmH0uou08= -golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= -golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= -golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= -golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= -golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= -golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= -golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= @@ -1883,224 +1028,94 @@ golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/mod v0.21.0 h1:vvrHzRwRfVKSiLrG+d4FMl/Qi4ukBCE6kZlTUkDYRT0= golang.org/x/mod v0.21.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY= -golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181005035420-146acd28ed58/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190320064053-1272bf9dcd53/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191002035440-2ec189313ef0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191112182307-2180aed22343/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191126235420-ef20fe5d7933/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200421231249-e086a090c8fd/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200602114024-627f9648deb9/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20201010224723-4f7140c49acb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210224082022-3d97a244fca7/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210421230115-4e50805a0758/go.mod h1:72T/g9IO56b78aLF+1Kcs5dz7/ng1VjMUvfKvpfy+jM= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= -golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= +golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= golang.org/x/net v0.29.0 h1:5ORfpBpCs4HzDYoodCDBbwHzdR5UrLBZ3sOnUJmFoHo= golang.org/x/net v0.29.0/go.mod h1:gLkgy8jTGERgjzMic6DS9+SP0ajcu6Xu3Orq/SpETg0= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190130055435-99b60b757ec1/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.22.0 h1:BzDx2FehcG7jJwgWLELCdmLuxk2i+x9UDpSiss2u0ZA= golang.org/x/oauth2 v0.22.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220513210516-0976fa681c29/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= -golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180810173357-98c5dad5d1a0/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190209173611-3b5209105503/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190321052220-f7bb7a8bee54/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190419153524-e8e3143a4f4a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190529164535-6a60838ec259/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190531175056-4c3a928424d2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606203320-7fc4e5ec1444/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190922100055-0a153f010e69/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191010194322-b09406accb47/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191112214154-59a1497f0cea/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191128015809-6d18c012aee9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200107162124-548cf772de50/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200217220822-9197077df867/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200831180312-196b9ba8737a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201204225414-ed752295db88/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210309074719-68d13333faf2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210420072515-93ed5bcd2bfe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211102192858-4dd72447c267/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220204135822-1c1b9b1eba6a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -2108,139 +1123,57 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.25.0 h1:r+8e+loiHxRqhXVl6ML1nO3l1+oFoWbnlu2Ehimmi34= golang.org/x/sys v0.25.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= -golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/term v0.19.0/go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk= +golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY= golang.org/x/term v0.24.0 h1:Mh5cbb+Zk2hqqXNO7S1iTjEphVL+jb8ZWaqh/g+JWkM= golang.org/x/term v0.24.0/go.mod h1:lOBK/LVxemqiMij05LGJ0tzNr8xlmwBRJ81PX6wVLH8= -golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/text v0.18.0 h1:XvMDiNzPAl0jr17s6W9lcaIhGUfUORdGCNsuLmPG224= golang.org/x/text v0.18.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= -golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/time v0.6.0 h1:eTDhh4ZXt5Qf0augr54TN6suAUudPcawVZeIAPU7D4U= golang.org/x/time v0.6.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= -golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190125232054-d66bd3c5d5a6/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190329151228-23e29df326fe/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190416151739-9c9e1878f421/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190420181800-aa740d480789/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190617190820-da514acc4774/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190813034749-528a2984e271/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191203134012-c197fd4bf371/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200108203644-89082a384178/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200304024140-c4206d458c3f/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200422205258-72e4a01eba43/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200509030707-2212a7e161a5/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200721032237-77f530d86f9a/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200821192610-3366bbee4705/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.7/go.mod h1:LGqMHiF4EqQNHR1JncWGqT5BVaXmza+X+BDGol+dOxo= -golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= @@ -2250,144 +1183,30 @@ golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 h1:+cNy6SZtPcJQH3LJVLOSmiC7MMxXNOb3PU/VUEz+EhU= golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90= -gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.0.0-20181121035319-3f7ecaa7e8ca/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.6.0/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= -gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= -gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= -gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= gonum.org/v1/gonum v0.12.0 h1:xKuo6hzt+gMav00meVPUlXwSdoEJP46BR+wdxQEFK2o= gonum.org/v1/gonum v0.12.0/go.mod h1:73TDxJfAAHeA8Mk9mf8NlIppyhQNo5GLTcYeqgo2lvY= -gonum.org/v1/netlib v0.0.0-20181029234149-ec6d1f5cefe6/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= -gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= -gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= -gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= -gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= -google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= -google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= -google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= -google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= google.golang.org/api v0.191.0 h1:cJcF09Z+4HAB2t5qTQM1ZtfL/PemsLFkcFG67qq2afk= google.golang.org/api v0.191.0/go.mod h1:tD5dsFGxFza0hnQveGfVk9QQYKcfp+VzgRqyXFxE0+E= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190530194941-fb225487d101/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= -google.golang.org/genproto v0.0.0-20190716160619-c506a9f90610/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20190927181202-20e1ac93f88c/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200108215221-bd8f9a0ef82f/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= -google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200420144010-e5e8543f8aeb/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= google.golang.org/genproto v0.0.0-20240730163845-b1a4ccb954bf h1:OqdXDEakZCVtDiZTjcxfwbHPCT11ycCEsTKesBVKvyY= google.golang.org/genproto v0.0.0-20240730163845-b1a4ccb954bf/go.mod h1:mCr1K1c8kX+1iSBREvU3Juo11CB+QOEWxbRS01wWl5M= google.golang.org/genproto/googleapis/api v0.0.0-20240725223205-93522f1f2a9f h1:b1Ln/PG8orm0SsBbHZWke8dDp2lrCD4jSmfglFpTZbk= google.golang.org/genproto/googleapis/api v0.0.0-20240725223205-93522f1f2a9f/go.mod h1:AHT0dDg3SoMOgZGnZk29b5xTbPHMoEC8qthmBLJCpys= google.golang.org/genproto/googleapis/rpc v0.0.0-20240822170219-fc7c04adadcd h1:6TEm2ZxXoQmFWFlt1vNxvVOa1Q0dXFQD1m/rYjXmS0E= google.golang.org/genproto/googleapis/rpc v0.0.0-20240822170219-fc7c04adadcd/go.mod h1:UqMtugtsSgubUsoxbuAoiCXvqvErP7Gf0so0mK9tHxU= -google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.22.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.24.0/go.mod h1:XDChyiUovWa60DnaeDeZmSW86xtLtjtZbwvSiRnRtcA= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= -google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= -google.golang.org/grpc v1.29.0/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= google.golang.org/grpc v1.66.0 h1:DibZuoBznOxbDQxRINckZcUvnCEvrW9pcWIE2yF9r1c= google.golang.org/grpc v1.66.0/go.mod h1:s3/l6xSSCURdVfAnL+TqCNMyTDAGN6+lZeVxnZR128Y= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -2396,12 +1215,10 @@ google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzi google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= @@ -2409,15 +1226,10 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= -gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/fsnotify/fsnotify.v1 v1.4.7/go.mod h1:Fyux9zXlo4rWoMSIzpn9fDAYjalPqJ/K1qJ27s+7ltE= -gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= gopkg.in/h2non/gock.v1 v1.1.2 h1:jBbHXgGBK/AoPVfJh5x4r/WxIrElvbLel8TCZkkZJoY= gopkg.in/h2non/gock.v1 v1.1.2/go.mod h1:n7UGz/ckNChHiK05rDoiC4MYSunEC/lyaUm2WWaDva0= gopkg.in/hjson/hjson-go.v3 v3.0.1/go.mod h1:X6zrTSVeImfwfZLfgQdInl9mWjqPqgH90jom9nym/lw= @@ -2437,25 +1249,17 @@ gopkg.in/mcuadros/go-syslog.v2 v2.3.0 h1:kcsiS+WsTKyIEPABJBJtoG0KkOS6yzvJ+/eZlhD gopkg.in/mcuadros/go-syslog.v2 v2.3.0/go.mod h1:l5LPIyOOyIdQquNg+oU6Z3524YwrcqEm0aKH+5zpt2U= gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc= gopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc= -gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= -gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0/go.mod h1:WDnlLJ4WF5VGsH/HVa3CI79GS0ol3YnhVnKP89i0kNg= -gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= @@ -2465,103 +1269,33 @@ gotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk= gotest.tools/v3 v3.0.3/go.mod h1:Z7Lb0S5l+klDB31fvDQX8ss/FlKDxtlFlw3Oa8Ymbl8= gotest.tools/v3 v3.5.1 h1:EENdUnS3pdur5nybKYIh2Vfgc8IUNBjxDPSjtiJcOzU= gotest.tools/v3 v3.5.1/go.mod h1:isy3WKz7GK6uNw/sbHzfKBLvlvXwUyV06n6brMxxopU= -honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= howett.net/plist v1.0.1 h1:37GdZ8tP09Q35o9ych3ehygcsL+HqKSwzctveSlarvM= howett.net/plist v1.0.1/go.mod h1:lqaXoTrLY4hg8tnEzNru53gicrbv7rrk+2xJA/7hw9g= -k8s.io/api v0.17.5/go.mod h1:0zV5/ungglgy2Rlm3QK8fbxkXVs+BSJWpJP/+8gUVLY= -k8s.io/api v0.21.1/go.mod h1:FstGROTmsSHBarKc8bylzXih8BLNYTiS3TZcsoEDg2s= k8s.io/api v0.29.5 h1:levS+umUigHCfI3riD36pMY1vQEbrzh4r1ivVWAhHaI= k8s.io/api v0.29.5/go.mod h1:7b18TtPcJzdjk7w5zWyIHgoAtpGeRvGGASxlS7UZXdQ= -k8s.io/apimachinery v0.17.5/go.mod h1:ioIo1G/a+uONV7Tv+ZmCbMG1/a3kVw5YcDdncd8ugQ0= -k8s.io/apimachinery v0.21.1/go.mod h1:jbreFvJo3ov9rj7eWT7+sYiRx+qZuCYXwWT1bcDswPY= k8s.io/apimachinery v0.29.5 h1:Hofa2BmPfpoT+IyDTlcPdCHSnHtEQMoJYGVoQpRTfv4= k8s.io/apimachinery v0.29.5/go.mod h1:i3FJVwhvSp/6n8Fl4K97PJEP8C+MM+aoDq4+ZJBf70Y= -k8s.io/client-go v0.17.5/go.mod h1:S8uZpBpjJJdEH/fEyxcqg7Rn0P5jH+ilkgBHjriSmNo= -k8s.io/client-go v0.21.1/go.mod h1:/kEw4RgW+3xnBGzvp9IWxKSNA+lXn3A7AuH3gdOAzLs= k8s.io/client-go v0.29.5 h1:nlASXmPQy190qTteaVP31g3c/wi2kycznkTP7Sv1zPc= k8s.io/client-go v0.29.5/go.mod h1:aY5CnqUUvXYccJhm47XHoPcRyX6vouHdIBHaKZGTbK4= -k8s.io/gengo v0.0.0-20190128074634-0689ccc1d7d6/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= -k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= -k8s.io/klog v0.0.0-20181102134211-b9b56d5dfc92/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= -k8s.io/klog v0.3.0/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= -k8s.io/klog v1.0.0/go.mod h1:4Bi6QPql/J/LkTDqv7R/cd3hPo4k2DG6Ptcz060Ez5I= -k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE= -k8s.io/klog/v2 v2.8.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= -k8s.io/klog/v2 v2.9.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= -k8s.io/klog/v2 v2.110.1 h1:U/Af64HJf7FcwMcXyKm2RPM22WZzyR7OSpYj5tg3cL0= -k8s.io/klog/v2 v2.110.1/go.mod h1:YGtd1984u+GgbuZ7e08/yBuAfKLSO0+uR1Fhi6ExXjo= -k8s.io/kube-openapi v0.0.0-20200316234421-82d701f24f9d/go.mod h1:F+5wygcW0wmRTnM3cOgIqGivxkwSWIWT5YdsDbeAOaU= -k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7/go.mod h1:wXW5VT87nVfh/iLV8FpR2uDvrFyomxbtb1KivDbvPTE= -k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 h1:aVUu9fTY98ivBPKR9Y5w/AuzbMm96cd3YHRTU83I780= -k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00/go.mod h1:AsvuZPBlUDVuCdzJ87iajxtXuR9oktsTctW/R9wwouA= -k8s.io/utils v0.0.0-20191114184206-e782cd3c129f/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= -k8s.io/utils v0.0.0-20200414100711-2df71ebbae66/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= +k8s.io/klog/v2 v2.130.1 h1:n9Xl7H1Xvksem4KFG4PYbdQCQxqc/tTUyrgXaOhHSzk= +k8s.io/klog/v2 v2.130.1/go.mod h1:3Jpz1GvMt720eyJH1ckRHK1EDfpxISzJ7I9OYgaDtPE= +k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 h1:BZqlfIlq5YbRMFko6/PM7FjZpUb45WallggurYhKGag= +k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340/go.mod h1:yD4MZYeKMBwQKVht279WycxKyM84kkAx2DPrTXaeb98= k8s.io/utils v0.0.0-20230726121419-3b25d923346b h1:sgn3ZU783SCgtaSJjpcVVlRqd6GSnlTLKgpAAttJvpI= k8s.io/utils v0.0.0-20230726121419-3b25d923346b/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= kernel.org/pub/linux/libs/security/libcap/cap v1.2.57 h1:2nmqI+aw7EQZuelYktkQHBE4jESD2tOR+lOJEnv/Apo= kernel.org/pub/linux/libs/security/libcap/cap v1.2.57/go.mod h1:uI99C3r4SXvJeuqoEtx/eWt7UbmfqqZ80H8q+9t/A7I= kernel.org/pub/linux/libs/security/libcap/psx v1.2.57 h1:NOFATXSf5z/cMR3HIwQ3Xrd3nwnWl5xThmNr5U/F0pI= kernel.org/pub/linux/libs/security/libcap/psx v1.2.57/go.mod h1:+l6Ee2F59XiJ2I6WR5ObpC1utCQJZ/VLsEbQCD8RG24= -lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= -modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= -modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= -modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= -modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= -modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= -modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= -modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= -modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= -modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= -modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= -modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= -modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= -modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= -modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= -modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= mvdan.cc/garble v0.12.1 h1:GyKeyqr4FKhWz12ZD9kKT9VnDqFILVYxgmAE8RKd3x8= mvdan.cc/garble v0.12.1/go.mod h1:rJ4GvtUEuVCRAYQkpd1iG6bolz9NEnkk0iu6gdTwWqA= nhooyr.io/websocket v1.8.11 h1:f/qXNc2/3DpoSZkHt1DQu6rj4zGC8JmkkLkWss0MgN0= nhooyr.io/websocket v1.8.11/go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c= -rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= -rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= -rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= -rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo= sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0= -sigs.k8s.io/structured-merge-diff/v2 v2.0.1/go.mod h1:Wb7vfKAodbKgf6tn1Kl0VvGj7mRH6DGaRcixXEJXTsE= -sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.1.0/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4= sigs.k8s.io/structured-merge-diff/v4 v4.4.1/go.mod h1:N8hJocpFajUSSeSJ9bOZ77VzejKZaXsTtZo4/u7Io08= -sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= -sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo= sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8= -sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU= diff --git a/metricbeat/helper/openmetrics/openmetrics.go b/metricbeat/helper/openmetrics/openmetrics.go index 5a0afaf2dba..49f608c2f8a 100644 --- a/metricbeat/helper/openmetrics/openmetrics.go +++ b/metricbeat/helper/openmetrics/openmetrics.go @@ -98,10 +98,6 @@ func (p *openmetrics) GetFamilies() ([]*prometheus.MetricFamily, error) { } contentType := prometheus.GetContentType(resp.Header) - if contentType == "" { - return nil, fmt.Errorf("Invalid format for response of response") - } - appendTime := time.Now().Round(0) b, err := io.ReadAll(reader) if err != nil { diff --git a/metricbeat/helper/prometheus/prometheus.go b/metricbeat/helper/prometheus/prometheus.go index 686bd97b9c4..f4e06df7e1f 100644 --- a/metricbeat/helper/prometheus/prometheus.go +++ b/metricbeat/helper/prometheus/prometheus.go @@ -96,10 +96,6 @@ func (p *prometheus) GetFamilies() ([]*MetricFamily, error) { } contentType := GetContentType(resp.Header) - if contentType == "" { - return nil, fmt.Errorf("invalid format for response: %v", resp.Header) - } - appendTime := time.Now().Round(0) b, err := io.ReadAll(reader) if err != nil { diff --git a/metricbeat/helper/prometheus/textparse.go b/metricbeat/helper/prometheus/textparse.go index 5430bab07ef..d9f2f9c8a7c 100644 --- a/metricbeat/helper/prometheus/textparse.go +++ b/metricbeat/helper/prometheus/textparse.go @@ -28,10 +28,10 @@ import ( "time" "github.com/prometheus/common/model" - "github.com/prometheus/prometheus/pkg/exemplar" - "github.com/prometheus/prometheus/pkg/labels" - "github.com/prometheus/prometheus/pkg/textparse" - "github.com/prometheus/prometheus/pkg/timestamp" + "github.com/prometheus/prometheus/model/exemplar" + "github.com/prometheus/prometheus/model/labels" + "github.com/prometheus/prometheus/model/textparse" + "github.com/prometheus/prometheus/model/timestamp" "github.com/elastic/elastic-agent-libs/logp" ) @@ -41,7 +41,6 @@ const ( hdrContentType = "Content-Type" TextVersion = "0.0.4" OpenMetricsType = `application/openmetrics-text` - FmtUnknown string = `` ContentTypeTextFormat string = `text/plain; version=` + TextVersion + `; charset=utf-8` ) @@ -296,7 +295,7 @@ func (m *OpenMetric) GetTimestampMs() int64 { type MetricFamily struct { Name *string Help *string - Type textparse.MetricType + Type model.MetricType Unit *string Metric []*OpenMetric } @@ -481,17 +480,19 @@ func histogramMetricName(name string, s float64, qv string, lbls string, t *int6 } func ParseMetricFamilies(b []byte, contentType string, ts time.Time, logger *logp.Logger) ([]*MetricFamily, error) { + parser, err := textparse.New(b, contentType, false, labels.NewSymbolTable()) + if err != nil { + return nil, err + } var ( - parser = textparse.New(b, contentType) defTime = timestamp.FromTime(ts) metricFamiliesByName = map[string]*MetricFamily{} summariesByName = map[string]map[string]*OpenMetric{} histogramsByName = map[string]map[string]*OpenMetric{} fam *MetricFamily // metricTypes stores the metric type for each metric name. - metricTypes = make(map[string]textparse.MetricType) + metricTypes = make(map[string]model.MetricType) ) - var err error for { var ( @@ -626,13 +627,13 @@ func ParseMetricFamilies(b []byte, contentType string, ts time.Time, logger *log if metricTypeFound, ok := metricTypes[baseMetricNamekey]; ok { mt = metricTypeFound } else { - mt = textparse.MetricTypeUnknown + mt = model.MetricTypeUnknown } } // Suffixes - https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md#suffixes switch mt { - case textparse.MetricTypeCounter: + case model.MetricTypeCounter: if contentType == OpenMetricsType && !isTotal(metricName) && !isCreated(metricName) { // Possible suffixes for counter in Open metrics are _created and _total. // Otherwise, ignore. @@ -653,11 +654,11 @@ func ParseMetricFamilies(b []byte, contentType string, ts time.Time, logger *log } else { lookupMetricName = metricName } - case textparse.MetricTypeGauge: + case model.MetricTypeGauge: var gauge = &Gauge{Value: &v} metric = &OpenMetric{Name: &metricName, Gauge: gauge, Label: labelPairs} //lookupMetricName = metricName - case textparse.MetricTypeInfo: + case model.MetricTypeInfo: // Info only exists for Openmetrics. It must have the suffix _info if !isInfo(metricName) { continue @@ -666,14 +667,14 @@ func ParseMetricFamilies(b []byte, contentType string, ts time.Time, logger *log value := int64(v) var info = &Info{Value: &value} metric = &OpenMetric{Name: &metricName, Info: info, Label: labelPairs} - case textparse.MetricTypeSummary: + case model.MetricTypeSummary: lookupMetricName, metric = summaryMetricName(metricName, v, qv, lbls.String(), summariesByName) metric.Label = labelPairs if !isSum(metricName) { // Avoid registering the metric multiple times. continue } - case textparse.MetricTypeHistogram: + case model.MetricTypeHistogram: if hasExemplar := parser.Exemplar(&e); hasExemplar { exm = &e } @@ -686,7 +687,7 @@ func ParseMetricFamilies(b []byte, contentType string, ts time.Time, logger *log // Avoid registering the metric multiple times. continue } - case textparse.MetricTypeGaugeHistogram: + case model.MetricTypeGaugeHistogram: if hasExemplar := parser.Exemplar(&e); hasExemplar { exm = &e } @@ -700,11 +701,11 @@ func ParseMetricFamilies(b []byte, contentType string, ts time.Time, logger *log // Avoid registering the metric multiple times. continue } - case textparse.MetricTypeStateset: + case model.MetricTypeStateset: value := int64(v) var stateset = &Stateset{Value: &value} metric = &OpenMetric{Name: &metricName, Stateset: stateset, Label: labelPairs} - case textparse.MetricTypeUnknown: + case model.MetricTypeUnknown: var unknown = &Unknown{Value: &v} metric = &OpenMetric{Name: &metricName, Unknown: unknown, Label: labelPairs} default: @@ -724,7 +725,7 @@ func ParseMetricFamilies(b []byte, contentType string, ts time.Time, logger *log } } - if hasExemplar := parser.Exemplar(&e); hasExemplar && mt != textparse.MetricTypeHistogram && metric != nil { + if hasExemplar := parser.Exemplar(&e); hasExemplar && mt != model.MetricTypeHistogram && metric != nil { if !e.HasTs { e.Ts = t } @@ -753,7 +754,7 @@ func GetContentType(h http.Header) string { mediatype, params, err := mime.ParseMediaType(ct) if err != nil { - return FmtUnknown + return "" } const textType = "text/plain" @@ -761,16 +762,16 @@ func GetContentType(h http.Header) string { switch mediatype { case OpenMetricsType: if e, ok := params["encoding"]; ok && e != "delimited" { - return FmtUnknown + return "" } return OpenMetricsType case textType: if v, ok := params["version"]; ok && v != TextVersion { - return FmtUnknown + return "" } return ContentTypeTextFormat } - return FmtUnknown + return "" } diff --git a/metricbeat/helper/prometheus/textparse_test.go b/metricbeat/helper/prometheus/textparse_test.go index e6c4fff4452..18baf4b4b75 100644 --- a/metricbeat/helper/prometheus/textparse_test.go +++ b/metricbeat/helper/prometheus/textparse_test.go @@ -21,7 +21,7 @@ import ( "testing" "time" - "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/model/labels" "github.com/stretchr/testify/require" "github.com/elastic/elastic-agent-libs/logp" diff --git a/metricbeat/module/docker/image/image.go b/metricbeat/module/docker/image/image.go index fa8c7288264..efd1cf2601a 100644 --- a/metricbeat/module/docker/image/image.go +++ b/metricbeat/module/docker/image/image.go @@ -20,7 +20,7 @@ package image import ( "context" - "github.com/docker/docker/api/types" + "github.com/docker/docker/api/types/image" "github.com/docker/docker/client" "github.com/elastic/beats/v7/metricbeat/mb" @@ -70,7 +70,7 @@ func New(base mb.BaseMetricSet) (mb.MetricSet, error) { // It returns the event which is then forward to the output. In case of an error, a // descriptive error must be returned. func (m *MetricSet) Fetch(reporter mb.ReporterV2) error { - images, err := m.dockerClient.ImageList(context.TODO(), types.ImageListOptions{}) + images, err := m.dockerClient.ImageList(context.TODO(), image.ListOptions{}) if err != nil { return err } diff --git a/metricbeat/module/openmetrics/collector/collector.go b/metricbeat/module/openmetrics/collector/collector.go index 3382fc5f9d8..30119d2df9e 100644 --- a/metricbeat/module/openmetrics/collector/collector.go +++ b/metricbeat/module/openmetrics/collector/collector.go @@ -21,8 +21,8 @@ import ( "fmt" "regexp" - "github.com/prometheus/prometheus/pkg/labels" - "github.com/prometheus/prometheus/pkg/textparse" + "github.com/prometheus/common/model" + "github.com/prometheus/prometheus/model/labels" p "github.com/elastic/beats/v7/metricbeat/helper/openmetrics" "github.com/elastic/beats/v7/metricbeat/helper/prometheus" @@ -45,7 +45,7 @@ var ( }.Build() upMetricName = "up" - upMetricType = textparse.MetricTypeGauge + upMetricType = model.MetricTypeGauge upMetricInstanceLabel = "instance" upMetricJobLabel = "job" ) @@ -137,7 +137,7 @@ func (m *MetricSet) Fetch(reporter mb.ReporterV2) error { } families, err := m.openmetrics.GetFamilies() - eventList := map[textparse.MetricType]map[string]mapstr.M{} + eventList := map[model.MetricType]map[string]mapstr.M{} if err != nil { // send up event only families = append(families, m.upMetricFamily(0.0)) diff --git a/metricbeat/module/openmetrics/collector/collector_test.go b/metricbeat/module/openmetrics/collector/collector_test.go index bd30c96baac..708d0d0e92f 100644 --- a/metricbeat/module/openmetrics/collector/collector_test.go +++ b/metricbeat/module/openmetrics/collector/collector_test.go @@ -22,8 +22,8 @@ package collector import ( "testing" - prometheuslabels "github.com/prometheus/prometheus/pkg/labels" - "github.com/prometheus/prometheus/pkg/textparse" + "github.com/prometheus/common/model" + prometheuslabels "github.com/prometheus/prometheus/model/labels" "github.com/stretchr/testify/assert" "google.golang.org/protobuf/proto" @@ -58,7 +58,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeCounter, + Type: model.MetricTypeCounter, Metric: []*p.OpenMetric{ { Name: proto.String("http_request_duration_microseconds_total"), @@ -82,7 +82,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { }, }, Help: "foo", - Type: textparse.MetricTypeCounter, + Type: model.MetricTypeCounter, Labels: labels, Exemplars: mapstr.M{}, }, @@ -92,7 +92,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeGauge, + Type: model.MetricTypeGauge, Metric: []*p.OpenMetric{ { Gauge: &p.Gauge{ @@ -109,7 +109,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { }, }, Help: "foo", - Type: textparse.MetricTypeGauge, + Type: model.MetricTypeGauge, Labels: mapstr.M{}, }, }, @@ -118,7 +118,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeSummary, + Type: model.MetricTypeSummary, Metric: []*p.OpenMetric{ { Summary: &p.Summary{ @@ -143,7 +143,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { }, }, Help: "foo", - Type: textparse.MetricTypeSummary, + Type: model.MetricTypeSummary, Labels: mapstr.M{}, }, { @@ -162,7 +162,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeHistogram, + Type: model.MetricTypeHistogram, Metric: []*p.OpenMetric{ { Histogram: &p.Histogram{ @@ -187,7 +187,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { }, }, Help: "foo", - Type: textparse.MetricTypeHistogram, + Type: model.MetricTypeHistogram, Labels: mapstr.M{}, }, { @@ -205,7 +205,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeUnknown, + Type: model.MetricTypeUnknown, Metric: []*p.OpenMetric{ { Label: []*prometheuslabels.Label{ @@ -228,7 +228,7 @@ func TestGetOpenMetricsEventsFromMetricFamily(t *testing.T) { }, }, Help: "foo", - Type: textparse.MetricTypeUnknown, + Type: model.MetricTypeUnknown, Labels: labels, }, }, @@ -247,7 +247,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_a_a_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeCounter, + Type: model.MetricTypeCounter, Metric: []*p.OpenMetric{ { Label: []*prometheuslabels.Label{ @@ -265,7 +265,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_a_b_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeCounter, + Type: model.MetricTypeCounter, Metric: []*p.OpenMetric{ { Label: []*prometheuslabels.Label{ @@ -283,7 +283,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_b_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeGauge, + Type: model.MetricTypeGauge, Metric: []*p.OpenMetric{ { Gauge: &p.Gauge{ @@ -295,7 +295,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_c_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeSummary, + Type: model.MetricTypeSummary, Metric: []*p.OpenMetric{ { Summary: &p.Summary{ @@ -314,7 +314,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_d_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeHistogram, + Type: model.MetricTypeHistogram, Metric: []*p.OpenMetric{ { Histogram: &p.Histogram{ @@ -333,7 +333,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_e_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeUnknown, + Type: model.MetricTypeUnknown, Metric: []*p.OpenMetric{ { Label: []*prometheuslabels.Label{ diff --git a/metricbeat/module/openmetrics/collector/data.go b/metricbeat/module/openmetrics/collector/data.go index e07d6f56b4f..f54ff385afb 100644 --- a/metricbeat/module/openmetrics/collector/data.go +++ b/metricbeat/module/openmetrics/collector/data.go @@ -21,12 +21,12 @@ import ( "math" "strconv" - "github.com/prometheus/prometheus/pkg/textparse" + "github.com/prometheus/common/model" - p "github.com/elastic/beats/v7/metricbeat/helper/prometheus" "github.com/elastic/elastic-agent-libs/mapstr" "github.com/elastic/beats/v7/metricbeat/helper/labelhash" + p "github.com/elastic/beats/v7/metricbeat/helper/prometheus" "github.com/elastic/beats/v7/metricbeat/mb" ) @@ -35,7 +35,7 @@ type OpenMetricEvent struct { Data mapstr.M Labels mapstr.M Help string - Type textparse.MetricType + Type model.MetricType Unit string Exemplars mapstr.M } @@ -116,7 +116,7 @@ func (p *openmetricEventGenerator) GenerateOpenMetricsEvents(mf *p.MetricFamily) if counter != nil { if !math.IsNaN(counter.GetValue()) && !math.IsInf(counter.GetValue(), 0) { events = append(events, OpenMetricEvent{ - Type: textparse.MetricTypeCounter, + Type: model.MetricTypeCounter, Help: help, Unit: unit, Data: mapstr.M{ @@ -134,7 +134,7 @@ func (p *openmetricEventGenerator) GenerateOpenMetricsEvents(mf *p.MetricFamily) if gauge != nil { if !math.IsNaN(gauge.GetValue()) && !math.IsInf(gauge.GetValue(), 0) { events = append(events, OpenMetricEvent{ - Type: textparse.MetricTypeGauge, + Type: model.MetricTypeGauge, Help: help, Unit: unit, Data: mapstr.M{ @@ -151,7 +151,7 @@ func (p *openmetricEventGenerator) GenerateOpenMetricsEvents(mf *p.MetricFamily) if info != nil { if info.HasValidValue() { events = append(events, OpenMetricEvent{ - Type: textparse.MetricTypeInfo, + Type: model.MetricTypeInfo, Data: mapstr.M{ "metrics": mapstr.M{ name: info.GetValue(), @@ -166,7 +166,7 @@ func (p *openmetricEventGenerator) GenerateOpenMetricsEvents(mf *p.MetricFamily) if stateset != nil { if stateset.HasValidValue() { events = append(events, OpenMetricEvent{ - Type: textparse.MetricTypeStateset, + Type: model.MetricTypeStateset, Data: mapstr.M{ "metrics": mapstr.M{ name: stateset.GetValue(), @@ -181,7 +181,7 @@ func (p *openmetricEventGenerator) GenerateOpenMetricsEvents(mf *p.MetricFamily) if summary != nil { if !math.IsNaN(summary.GetSampleSum()) && !math.IsInf(summary.GetSampleSum(), 0) { events = append(events, OpenMetricEvent{ - Type: textparse.MetricTypeSummary, + Type: model.MetricTypeSummary, Help: help, Unit: unit, Data: mapstr.M{ @@ -218,11 +218,11 @@ func (p *openmetricEventGenerator) GenerateOpenMetricsEvents(mf *p.MetricFamily) var sum = "_sum" var count = "_count" _, _ = sum, count // skip noisy linter - var typ = textparse.MetricTypeHistogram + var typ = model.MetricTypeHistogram if histogram.IsGaugeHistogram { sum = "_gsum" count = "_gcount" - typ = textparse.MetricTypeGaugeHistogram + typ = model.MetricTypeGaugeHistogram } events = append(events, OpenMetricEvent{ @@ -275,7 +275,7 @@ func (p *openmetricEventGenerator) GenerateOpenMetricsEvents(mf *p.MetricFamily) if unknown != nil { if !math.IsNaN(unknown.GetValue()) && !math.IsInf(unknown.GetValue(), 0) { events = append(events, OpenMetricEvent{ - Type: textparse.MetricTypeUnknown, + Type: model.MetricTypeUnknown, Help: help, Unit: unit, Data: mapstr.M{ diff --git a/metricbeat/module/prometheus/collector/collector.go b/metricbeat/module/prometheus/collector/collector.go index 8d3456aca63..8c110ee19db 100644 --- a/metricbeat/module/prometheus/collector/collector.go +++ b/metricbeat/module/prometheus/collector/collector.go @@ -21,8 +21,8 @@ import ( "fmt" "regexp" - "github.com/prometheus/prometheus/pkg/labels" - "github.com/prometheus/prometheus/pkg/textparse" + "github.com/prometheus/common/model" + "github.com/prometheus/prometheus/model/labels" p "github.com/elastic/beats/v7/metricbeat/helper/prometheus" "github.com/elastic/beats/v7/metricbeat/mb" @@ -44,7 +44,7 @@ var ( }.Build() upMetricName = "up" - upMetricType = textparse.MetricTypeGauge + upMetricType = model.MetricTypeGauge upMetricInstanceLabel = "instance" upMetricJobLabel = "job" upMetricJobValue = "prometheus" diff --git a/metricbeat/module/prometheus/collector/collector_test.go b/metricbeat/module/prometheus/collector/collector_test.go index 2a0e04b777a..baec4511526 100644 --- a/metricbeat/module/prometheus/collector/collector_test.go +++ b/metricbeat/module/prometheus/collector/collector_test.go @@ -26,15 +26,15 @@ import ( "strings" "testing" - "github.com/elastic/beats/v7/metricbeat/mb" - "github.com/elastic/elastic-agent-libs/mapstr" - - pl "github.com/prometheus/prometheus/pkg/labels" - "github.com/prometheus/prometheus/pkg/textparse" + "github.com/prometheus/common/model" + pl "github.com/prometheus/prometheus/model/labels" "github.com/stretchr/testify/assert" "google.golang.org/protobuf/proto" + "github.com/elastic/elastic-agent-libs/mapstr" + p "github.com/elastic/beats/v7/metricbeat/helper/prometheus" + "github.com/elastic/beats/v7/metricbeat/mb" mbtest "github.com/elastic/beats/v7/metricbeat/mb/testing" _ "github.com/elastic/beats/v7/metricbeat/module/prometheus" @@ -52,7 +52,7 @@ func TestGetPromEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeCounter, + Type: model.MetricTypeCounter, Metric: []*p.OpenMetric{ { Label: []*pl.Label{ @@ -82,7 +82,7 @@ func TestGetPromEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeGauge, + Type: model.MetricTypeGauge, Metric: []*p.OpenMetric{ { Gauge: &p.Gauge{ @@ -106,7 +106,7 @@ func TestGetPromEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeSummary, + Type: model.MetricTypeSummary, Metric: []*p.OpenMetric{ { Summary: &p.Summary{ @@ -148,7 +148,7 @@ func TestGetPromEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeHistogram, + Type: model.MetricTypeHistogram, Metric: []*p.OpenMetric{ { Histogram: &p.Histogram{ @@ -188,7 +188,7 @@ func TestGetPromEventsFromMetricFamily(t *testing.T) { Family: &p.MetricFamily{ Name: proto.String("http_request_duration_microseconds"), Help: proto.String("foo"), - Type: textparse.MetricTypeUnknown, + Type: model.MetricTypeUnknown, Metric: []*p.OpenMetric{ { Label: []*pl.Label{ @@ -228,7 +228,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_a_a_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeCounter, + Type: model.MetricTypeCounter, Metric: []*p.OpenMetric{ { Label: []*pl.Label{ @@ -246,7 +246,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_a_b_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeCounter, + Type: model.MetricTypeCounter, Metric: []*p.OpenMetric{ { Label: []*pl.Label{ @@ -264,7 +264,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_b_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeGauge, + Type: model.MetricTypeGauge, Metric: []*p.OpenMetric{ { Gauge: &p.Gauge{ @@ -276,7 +276,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_c_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeSummary, + Type: model.MetricTypeSummary, Metric: []*p.OpenMetric{ { Summary: &p.Summary{ @@ -295,7 +295,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_d_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeHistogram, + Type: model.MetricTypeHistogram, Metric: []*p.OpenMetric{ { Histogram: &p.Histogram{ @@ -314,7 +314,7 @@ func TestSkipMetricFamily(t *testing.T) { { Name: proto.String("http_request_duration_microseconds_e_in"), Help: proto.String("foo"), - Type: textparse.MetricTypeUnknown, + Type: model.MetricTypeUnknown, Metric: []*p.OpenMetric{ { Label: []*pl.Label{ diff --git a/x-pack/libbeat/autodiscover/providers/nomad/nomad_test.go b/x-pack/libbeat/autodiscover/providers/nomad/nomad_test.go index 95d24f8bad8..4b4a04e4565 100644 --- a/x-pack/libbeat/autodiscover/providers/nomad/nomad_test.go +++ b/x-pack/libbeat/autodiscover/providers/nomad/nomad_test.go @@ -149,12 +149,10 @@ func TestEmitEvent(t *testing.T) { }, Services: []*api.Service{ { - Id: "service-a", Name: "web", Tags: []string{"tag-a", "tag-b"}, }, { - Id: "service-b", Name: "nginx", Tags: []string{"tag-c", "tag-d"}, }, @@ -257,12 +255,10 @@ func TestEmitEvent(t *testing.T) { }, Services: []*api.Service{ { - Id: "service-a", Name: "web", Tags: []string{"tag-a", "tag-b"}, }, { - Id: "service-b", Name: "nginx", Tags: []string{"tag-c", "tag-d"}, }, diff --git a/x-pack/libbeat/common/nomad/metadata_test.go b/x-pack/libbeat/common/nomad/metadata_test.go index 08616be9f83..24f00c151b6 100644 --- a/x-pack/libbeat/common/nomad/metadata_test.go +++ b/x-pack/libbeat/common/nomad/metadata_test.go @@ -44,12 +44,10 @@ func newJob(jobID string) *Job { }, Services: []*api.Service{ { - Id: "service-a", Name: "web", Tags: []string{"tag-a", "tag-b", "${NOMAD_JOB_NAME}"}, }, { - Id: "service-b", Name: "nginx", Tags: []string{"tag-c", "tag-d"}, }, From 5e989b8742fa37b89efc373d6466991b392835ad Mon Sep 17 00:00:00 2001 From: Dan Kortschak Date: Tue, 1 Oct 2024 06:47:26 +0930 Subject: [PATCH 6/6] x-pack/filebeat/input/{azureblobstorage,gcs,httpjson}: fix error logging verbs (#41042) --- x-pack/filebeat/input/azureblobstorage/job.go | 2 +- x-pack/filebeat/input/gcs/scheduler.go | 2 +- x-pack/filebeat/input/httpjson/request.go | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/x-pack/filebeat/input/azureblobstorage/job.go b/x-pack/filebeat/input/azureblobstorage/job.go index ae1c2c1e617..f886f330af6 100644 --- a/x-pack/filebeat/input/azureblobstorage/job.go +++ b/x-pack/filebeat/input/azureblobstorage/job.go @@ -28,7 +28,7 @@ import ( "github.com/elastic/elastic-agent-libs/mapstr" ) -const jobErrString = "job with jobId %s encountered an error: %w" +const jobErrString = "job with jobId %s encountered an error: %v" type job struct { // client is an azure blob handle diff --git a/x-pack/filebeat/input/gcs/scheduler.go b/x-pack/filebeat/input/gcs/scheduler.go index ea992b49924..686ad1394dd 100644 --- a/x-pack/filebeat/input/gcs/scheduler.go +++ b/x-pack/filebeat/input/gcs/scheduler.go @@ -232,7 +232,7 @@ func (s *scheduler) addFailedJobs(ctx context.Context, jobs []*job) []*job { if !jobMap[name] { obj, err := s.bucket.Object(name).Attrs(ctx) if err != nil { - s.log.Errorf("adding failed job %s to job list caused an error: %w", err) + s.log.Errorf("adding failed job %s to job list caused an error: %v", name, err) continue } diff --git a/x-pack/filebeat/input/httpjson/request.go b/x-pack/filebeat/input/httpjson/request.go index 6cc46b27f2f..160ac67fe9e 100644 --- a/x-pack/filebeat/input/httpjson/request.go +++ b/x-pack/filebeat/input/httpjson/request.go @@ -576,7 +576,7 @@ func (p *chainProcessor) handleEvent(ctx context.Context, msg mapstr.M) { // we construct a new response here from each of the pagination events err := json.NewEncoder(body).Encode(msg) if err != nil { - p.req.log.Errorf("error processing chain event: %w", err) + p.req.log.Errorf("error processing chain event: %v", err) return } response.Body = io.NopCloser(body) @@ -589,17 +589,17 @@ func (p *chainProcessor) handleEvent(ctx context.Context, msg mapstr.M) { n, err := p.req.processChainPaginationEvents(ctx, p.trCtx, p.pub, &response, p.idx, p.req.log) if err != nil { if errors.Is(err, notLogged{}) { - p.req.log.Debugf("ignored error processing chain event: %w", err) + p.req.log.Debugf("ignored error processing chain event: %v", err) return } - p.req.log.Errorf("error processing chain event: %w", err) + p.req.log.Errorf("error processing chain event: %v", err) return } p.n += n err = response.Body.Close() if err != nil { - p.req.log.Errorf("error closing http response body: %w", err) + p.req.log.Errorf("error closing http response body: %v", err) } }