Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 192 for cedric (0.15 sec)

  1. tests/integration/telemetry/api/customize_metrics_test.go

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: ns-default
    spec:
      metrics:
      - providers:
        - name: prometheus
        overrides:
        - match:
            metric: REQUEST_COUNT
          tagOverrides:
            response_code:
              value: "istio_responseClass"
            request_operation: 
              value: istio_operationId
            grpc_response_status: 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/minio-dashboard.json

              "format": "time_series",
              "instant": true,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "{{instance}}",
              "metric": "process_start_time_seconds",
              "refId": "A",
              "step": 60
            }
          ],
          "title": "Uptime",
          "type": "stat"
        },
        {
          "datasource": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// If the value is 0, no compaction will be issued.
    	CompactionInterval time.Duration
    	// CountMetricPollPeriod specifies how often should count metric be updated
    	CountMetricPollPeriod time.Duration
    	// DBMetricPollInterval specifies how often should storage backend metric be updated.
    	DBMetricPollInterval time.Duration
    	// HealthcheckTimeout specifies the timeout used when checking health
    	HealthcheckTimeout time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/trace/jsontrace_test.go

    	for _, e := range data.Events {
    		if e.Phase == "C" && e.Name == "Heap" {
    			j, _ := json.Marshal(e.Arg)
    			var metric format.HeapCountersArg
    			json.Unmarshal(j, &metric)
    			metrics = append(metrics, metric)
    		}
    	}
    	return
    }
    
    func recordJSONTraceHandlerResponse(t *testing.T, parsed *parsedTrace) format.Data {
    	h := JSONTraceHandler(parsed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    							Description: "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification.",
    							Ref:         ref("k8s.io/apimachinery/pkg/api/resource.Quantity"),
    						},
    					},
    					"container": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  8. RELEASE.md

        *   `model.add_loss(symbolic_tensor)` should work in ambient eager.
        *   Update metric name to always reflect what the user has given in compile.
            Affects following cases
        *   When name is given as 'accuracy'/'crossentropy'
        *   When an aliased function name is used eg. 'mse'
        *   Removing the `weighted` prefix from weighted metric names.
        *   Allow non-Tensors through v2 losses.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top