Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 532 for Cedric (0.16 sec)

  1. releasenotes/notes/update-grafana-memory-compute.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    
    releaseNotes:
    - |
      **Updated** the "Control Plane Dashboard" and the "Performance Dashboard" to use the `container_memory_working_set_bytes` metric
      to display memory. This metric only counts memory that *cannot be reclaimed* by the kernel even under memory pressure,
      and therefore more relevant for tracking. It is also consistent with `kubectl top`. The reported values are lower than
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 474 bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/metrics.h

    // Returns "/tensorflow/core/saved_model/write/count" cell. This metric
    // has 1 field "write_version", which is equal to the
    // `tensorflow::libexport::GetWriteVersion` of the protobuf and should be
    // incremented when a SavedModel has been successfully written.
    monitoring::CounterCell& SavedModelWriteCount(absl::string_view write_version);
    
    // Returns "/tensorflow/core/saved_model/read/count" cell. This metric
    // has 1 field "write_version", which is equal to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pkg/volume/util/metrics.go

     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
     * involves explicitly acknowledging support for the metric across multiple releases, in accordance with
     * the metric stability policy.
     */
    
    var StorageOperationMetric = metrics.NewHistogramVec(
    	&metrics.HistogramOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 23 23:05:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  4. src/runtime/metrics/doc.go

    Each metric key also has a "kind" (see [ValueKind]) that describes the format of the
    metric's value.
    In the interest of not breaking users of this package, the "kind" for a given metric
    is guaranteed not to change. If it must change, then a new metric will be introduced
    with a new key and a new "kind."
    
    # Metric key format
    
    As mentioned earlier, metric keys are strings. Their format is simple and well-defined,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/replica_calculator.go

    					// Ignore sample if pod is unready or one window of metric wasn't collected since last state transition.
    					unready = condition.Status == v1.ConditionFalse || metric.Timestamp.Before(condition.LastTransitionTime.Time.Add(metric.Window))
    				} else {
    					// Ignore metric if pod is unready and it has never been ready.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. pkg/proxy/util/nfacct/nfacct_linux_test.go

    		err          error
    		netlinkCalls int
    	}{
    		{
    			name:        "valid",
    			counterName: "metric-1",
    			handler:     &fakeHandler{},
    			// expected calls: NFNL_MSG_ACCT_NEW
    			netlinkCalls: 1,
    		},
    		{
    			name:        "add duplicate counter",
    			counterName: "metric-2",
    			handler: &fakeHandler{
    				errs: []error{syscall.EBUSY},
    			},
    			err: ErrObjectAlreadyExists,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    		})
    		return metrics
    	})
    	return mg
    }
    
    func collectMetric(metric MetricV2, labels []string, values []string, metricName string, out chan<- prometheus.Metric) {
    	if metric.Description.Type == histogramMetric {
    		if metric.Histogram == nil {
    			return
    		}
    		for k, v := range metric.Histogram {
    			pmetric, err := prometheus.NewConstMetric(
    				prometheus.NewDesc(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/monitor/metrics.go

    	register.Do(func() {
    		registerMetrics(metricsList...)
    	})
    }
    
    // RegisterMetrics registers a list of metrics.
    func registerMetrics(extraMetrics ...metrics.Registerable) {
    	for _, metric := range extraMetrics {
    		legacyregistry.MustRegister(metric)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:47:24 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. cmd/site-replication-metrics.go

    			t = &m
    		}
    
    		mx[Total] = *t
    		metric := SRMetric{
    			ReplicatedSize:  v.ReplicatedSize,
    			ReplicatedCount: v.ReplicatedCount,
    			DeploymentID:    dID,
    			Failed:          v.Failed.toMetric(),
    			XferStats:       mx,
    		}
    		epHealth, ok := epMap[v.Endpoint]
    		if ok {
    			metric.Endpoint = epHealth.Endpoint
    			metric.TotalDowntime = epHealth.offlineDuration
    			metric.LastOnline = epHealth.lastOnline
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pilot/pkg/features/telemetry.go

    	MetricRotationInterval = env.Register("METRIC_ROTATION_INTERVAL", 0*time.Second,
    		"Metric scope rotation interval, set to 0 to disable the metric scope rotation").Get()
    	MetricGracefulDeletionInterval = env.Register("METRIC_GRACEFUL_DELETION_INTERVAL", 5*time.Minute,
    		"Metric expiry graceful deletion interval. No-op if METRIC_ROTATION_INTERVAL is disabled.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top