Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for testMetric (0.28 sec)

  1. pkg/kubelet/pleg/evented_test.go

    	expectedMetric = `
    # HELP kubelet_running_pods [ALPHA] Number of pods that have a running pod sandbox
    # TYPE kubelet_running_pods gauge
    kubelet_running_pods 3
    `
    	testMetric(t, expectedMetric, metrics.RunningPodCount.FQName())
    }
    
    func testMetric(t *testing.T, expectedMetric string, metricName string) {
    	err := testutil.GatherAndCompare(metrics.GetGather(), strings.NewReader(expectedMetric), metricName)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 01 07:45:05 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    				}
    				drainAllWorkers(podWorkers)
    				tt.wantWorkerAfterRetry(t, podWorkers, processed)
    
    				for k, v := range tt.expectMetricsAfterRetry {
    					testMetric(t, k, v)
    				}
    			}
    		})
    	}
    }
    
    func testMetric(t *testing.T, metricName string, expectedMetric string) {
    	t.Helper()
    	err := testutil.GatherAndCompare(metrics.GetGather(), strings.NewReader(expectedMetric), metricName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/bitmap_test.go

    	clusterIPAvailable.Reset()
    	clusterIPAllocations.Reset()
    	clusterIPAllocationErrors.Reset()
    }
    
    type testMetrics struct {
    	free      float64
    	used      float64
    	allocated float64
    	errors    float64
    }
    
    func expectMetrics(t *testing.T, label string, em testMetrics) {
    	var m testMetrics
    	var err error
    	m.free, err = testutil.GetGaugeMetricValue(clusterIPAvailable.WithLabelValues(label))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

    	Reset() []metrics.Registerable
    }
    
    func TestMetrics(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, apiextensionsfeatures.CRDValidationRatcheting, true)
    
    	// Wrap metric to keep time constant
    	testMetrics := &fakeMetrics{original: validation.Metrics}
    	validation.Metrics = testMetrics
    	defer func() {
    		validation.Metrics = testMetrics.original
    	}()
    
    	metricNames := []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. pkg/registry/core/service/portallocator/allocator_test.go

    	nodePortAvailable.Set(0)
    	nodePortAllocations.Reset()
    	nodePortAllocationErrors.Reset()
    }
    
    type testMetrics struct {
    	free      float64
    	used      float64
    	allocated float64
    	errors    float64
    }
    
    func expectMetrics(t *testing.T, em testMetrics) {
    	var m testMetrics
    	var err error
    	m.free, err = testutil.GetGaugeMetricValue(nodePortAvailable)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/cmd/go/internal/auth/netrc_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package auth
    
    import (
    	"reflect"
    	"testing"
    )
    
    var testNetrc = `
    machine incomplete
    password none
    
    machine api.github.com
      login user
      password pwd
    
    machine incomlete.host
      login justlogin
    
    machine test.host
    login user2
    password pwd2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 21:11:28 UTC 2019
    - 1K bytes
    - Viewed (0)
  7. pkg/test/loadbalancersim/lb_test.go

    	requestsSameRegion  uint64
    	requestsOtherRegion uint64
    }
    
    func (tm testMetrics) totalRequests() uint64 {
    	return tm.requestsSameZone + tm.requestsSameRegion + tm.requestsOtherRegion
    }
    
    func (tm testMetrics) sameZonePercent() float64 {
    	return (float64(tm.requestsSameZone) / float64(tm.totalRequests())) * 100
    }
    
    func (tm testMetrics) sameRegionPercent() float64 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/ipam/cidrset/cidr_set_test.go

    	cidrSetAllocationTriesPerRequest.Delete(labels)
    	cidrSetMaxCidrs.Delete(labels)
    }
    
    type testMetrics struct {
    	usage      float64
    	allocs     float64
    	releases   float64
    	allocTries float64
    	max        float64
    }
    
    func expectMetrics(t *testing.T, label string, em testMetrics) {
    	var m testMetrics
    	var err error
    	m.usage, err = testutil.GetGaugeMetricValue(cidrSetUsage.WithLabelValues(label))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  9. pkg/registry/core/service/portallocator/controller/repair_test.go

    	nodePortRepairPortErrors.Reset()
    	nodePortRepairReconcileErrors.Reset()
    }
    
    type testMetrics struct {
    	leak       float64
    	repair     float64
    	outOfRange float64
    	duplicate  float64
    	unknown    float64
    	full       float64
    }
    
    func expectMetrics(t *testing.T, em testMetrics) {
    	var m testMetrics
    	var err error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repair_test.go

    	}
    	em := testMetrics{
    		leak:       0,
    		repair:     5,
    		outOfRange: 6,
    		duplicate:  3,
    		unknown:    0,
    		invalid:    0,
    		full:       0,
    	}
    	expectMetrics(t, em)
    }
    
    // Metrics helpers
    func clearMetrics() {
    	clusterIPRepairIPErrors.Reset()
    	clusterIPRepairReconcileErrors.Reset()
    }
    
    type testMetrics struct {
    	leak       float64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top