Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 273 for Metric2 (0.33 sec)

  1. cmd/erasure.go

    					di.HealInfo = &hd
    				}
    			}
    			di.Metrics = &madmin.DiskMetrics{
    				LastMinute:              make(map[string]madmin.TimedAction, len(info.Metrics.LastMinute)),
    				APICalls:                make(map[string]uint64, len(info.Metrics.APICalls)),
    				TotalErrorsAvailability: info.Metrics.TotalErrorsAvailability,
    				TotalErrorsTimeout:      info.Metrics.TotalErrorsTimeout,
    				TotalWaiting:            info.Metrics.TotalWaiting,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/server.go

    		metrics.AgentScrapeErrors.Increment()
    	}
    
    	if envoy != nil {
    		_, err = io.Copy(w, envoy)
    		if err != nil {
    			log.Errorf("failed to scraping and writing envoy metrics: %v", err)
    			metrics.EnvoyScrapeErrors.Increment()
    		}
    	}
    
    	// App metrics must go last because if they are FmtOpenMetrics,
    	// they will have a trailing "# EOF" which terminates the full exposition
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  3. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/metrics/pkg/apis/metrics/v1alpha1.ContainerMetrics":                                             schema_pkg_apis_metrics_v1alpha1_ContainerMetrics(ref),
    		"k8s.io/metrics/pkg/apis/metrics/v1alpha1.NodeMetrics":                                                  schema_pkg_apis_metrics_v1alpha1_NodeMetrics(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  4. src/internal/godebug/godebug_test.go

    	var m [1]metrics.Sample
    	m[0].Name = "/godebug/non-default-behavior/" + name + ":events"
    	metrics.Read(m[:])
    	if kind := m[0].Value.Kind(); kind != metrics.KindUint64 {
    		t.Fatalf("NonDefault kind = %v, want uint64", kind)
    	}
    
    	s := New(name)
    	s.Value()
    	s.IncNonDefault()
    	s.IncNonDefault()
    	s.IncNonDefault()
    	metrics.Read(m[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. internal/config/identity/plugin/config.go

    			return
    		}
    	}
    }
    
    // Metrics contains metrics about the authentication plugin service.
    type Metrics struct {
    	LastReachableSecs, LastUnreachableSecs float64
    
    	// Last whole minute stats
    	TotalRequests, FailedRequests int64
    	AvgSuccRTTMs                  float64
    	MaxSuccRTTMs                  float64
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - A new kubelet metric `image_pull_duration_seconds` was added. The metric tracks the duration (in seconds) it takes for an image to be pulled, including the time spent in the waiting queue of image puller. The metric is broken down by bucketed image size. ([#121719](https://github.com/kubernetes/kubernetes/pull/121719), [@ruiwen-zhao](https://github.com/ruiwen-zhao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy.go

    	if istiogrpc.IsExpectedGRPCError(err) {
    		proxyLog.WithLabels("id", con.conID).Debugf("upstream terminated with status %v", err)
    		metrics.IstiodConnectionCancellations.Increment()
    	} else {
    		proxyLog.WithLabels("id", con.conID).Warnf("upstream terminated with unexpected error %v", err)
    		metrics.IstiodConnectionErrors.Increment()
    	}
    	select {
    	case con.upstreamError <- err:
    	case <-con.stopChan:
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			// clear the metrics for testing
    			metrics.Register()
    			for _, metric := range []interface{ Reset() }{
    				metrics.DesiredPodCount,
    				metrics.ActivePodCount,
    				metrics.RestartedPodTotal,
    				metrics.OrphanedRuntimePodTotal,
    				metrics.WorkingPodCount,
    			} {
    				metric.Reset()
    			}
    			metrics.MirrorPodCount.Set(0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. src/internal/godebugs/table.go

    	Opaque  bool   // setting does not export information to runtime/metrics using [internal/godebug.Setting.IncNonDefault]
    }
    
    // All is the table of known settings, sorted by Name.
    //
    // Note: After adding entries to this table, run 'go generate runtime/metrics'
    // to update the runtime/metrics doc comment.
    // (Otherwise the runtime/metrics test will fail.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    		o.preEnqueuePluginMap = m
    	}
    }
    
    // WithMetricsRecorder sets metrics recorder.
    func WithMetricsRecorder(recorder metrics.MetricAsyncRecorder) Option {
    	return func(o *priorityQueueOptions) {
    		o.metricsRecorder = recorder
    	}
    }
    
    // WithPluginMetricsSamplePercent sets the percentage of plugin metrics to be sampled.
    func WithPluginMetricsSamplePercent(percent int) Option {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top