Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 158 for cedric (0.17 sec)

  1. src/testing/benchmark.go

    // (such as "allocs/op"), ReportMetric will override that metric.
    // Setting "ns/op" to 0 will suppress that built-in metric.
    func (b *B) ReportMetric(n float64, unit string) {
    	if unit == "" {
    		panic("metric unit must not be empty")
    	}
    	if strings.IndexFunc(unit, unicode.IsSpace) >= 0 {
    		panic("metric unit must not contain whitespace")
    	}
    	b.extra[unit] = n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. pkg/collateral/control.go

    <table class="metrics">
    <thead>
    <tr><th>Metric Name</th><th>Type</th><th>Description</th></tr>
    </thead>
    <tbody>`)
    
    	for _, metric := range metrics.ExportedMetrics() {
    		if !selectFn(metric) {
    			continue
    		}
    		g.emit("<tr><td><code>", metric.Name, "</code></td><td><code>", metric.Type, "</code></td><td>", metric.Description, "</td></tr>")
    	}
    
    	g.emit(`</tbody>
    </table>`)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

          </record>
        </filter>
      output.conf: |-
        # This match is placed before the all-matching output to provide metric
        # exporter with a process start timestamp for correct exporting of
        # cumulative metrics to Stackdriver.
        <match process_start>
          @type prometheus
    
          <metric>
            type gauge
            name process_start_time_seconds
            desc Timestamp of the process start in seconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  4. pkg/kubelet/metrics/metrics.go

    	orphanPodCleanedVolumesKey       = "orphan_pod_cleaned_volumes"
    	orphanPodCleanedVolumesErrorsKey = "orphan_pod_cleaned_volumes_errors"
    
    	// Metric for tracking garbage collected images
    	ImageGarbageCollectedTotalKey = "image_garbage_collected_total"
    
    	// Values used in metric labels
    	Container          = "container"
    	InitContainer      = "init_container"
    	EphemeralContainer = "ephemeral_container"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    const noInternetConnection = `Iface	Destination	Gateway 	Flags	RefCnt	Use	Metric	Mask		MTU	Window	IRTT                                                       
    docker0	000011AC	00000000	0001	0	0	0	0000FFFF	0	0	0                                                                            
    virbr0	007AA8C0	00000000	0001	0	0	0	00FFFFFF	0	0	0            
    `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go

    			if err != nil {
    				t.Fatalf("failed to get metric value, error: %v", err)
    			}
    			// apiserver_envelope_encryption_kms_operations_latency_seconds_sum{grpc_status_code="OK",method_name="/v2alpha1.KeyManagementService/Encrypt",provider_name="providerName"} 0.000881432
    			if sampleSum == 0 {
    				t.Fatalf("expected metric value to be greater than 0, got %v", sampleSum)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

          </record>
        </filter>
      output.conf: |-
        # This match is placed before the all-matching output to provide metric
        # exporter with a process start timestamp for correct exporting of
        # cumulative metrics to Stackdriver.
        <match process_start>
          @type prometheus
    
          <metric>
            type gauge
            name process_start_time_seconds
            desc Timestamp of the process start in seconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"Frequency of polling etcd for number of resources per type. 0 disables the metric collection.")
    
    	fs.DurationVar(&s.StorageConfig.DBMetricPollInterval, "etcd-db-metric-poll-interval", s.StorageConfig.DBMetricPollInterval,
    		"The interval of requests to poll etcd and update metric. 0 disables the metric collection")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. pkg/scheduler/metrics/metrics.go

    // This function is exported because it is intended to be used by out-of-tree plugins to register their custom metrics.
    func RegisterMetrics(extraMetrics ...metrics.Registerable) {
    	for _, metric := range extraMetrics {
    		legacyregistry.MustRegister(metric)
    	}
    }
    
    // GetGather returns the gatherer. It used by test case outside current package.
    func GetGather() metrics.Gatherer {
    	return legacyregistry.DefaultGatherer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/dashboard_test.go

    	case *model.Scalar:
    		numSamples = 1
    	default:
    		return fmt.Errorf("unknown metric value type: %T", v)
    	}
    	if includeQuery(query, excluded) {
    		if numSamples == 0 {
    			return fmt.Errorf("expected a metric value for '%s', found no samples: %#v", query, value)
    		}
    	} else {
    		if numSamples != 0 {
    			scopes.Framework.Infof("Filtered out metric '%v', but got samples: %v", query, numSamples)
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top