Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,223 for Metric2 (0.62 sec)

  1. pkg/controller/volume/persistentvolume/metrics/metrics.go

    	totalPVCountDesc = metrics.NewDesc(
    		metrics.BuildFQName("", pvControllerSubsystem, totalPVKey),
    		"Gauge measuring total number of persistent volumes",
    		[]string{pluginNameLabel, volumeModeLabel}, nil,
    		metrics.ALPHA, "")
    	boundPVCountDesc = metrics.NewDesc(
    		metrics.BuildFQName("", pvControllerSubsystem, boundPVKey),
    		"Gauge measuring number of persistent volume currently bound",
    		[]string{storageClassLabel}, nil,
    		metrics.ALPHA, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics.go

    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    )
    
    var registerMetrics sync.Once
    
    // Register all metrics.
    func Register() {
    	registerMetrics.Do(func() {
    		for _, metric := range metrics {
    			legacyregistry.MustRegister(metric)
    		}
    	})
    }
    
    type resettable interface {
    	Reset()
    }
    
    // Reset all resettable metrics to zero
    func Reset() {
    	for _, metric := range metrics {
    		if rm, ok := metric.(resettable); ok {
    			rm.Reset()
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	NodeStartupDuration = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           NodeStartupKey,
    			Help:           "Duration in seconds of node startup in total.",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	ImageGarbageCollectedTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/metrics.h

    limitations under the License.
    ==============================================================================*/
    // APIs for accessing SavedModel and checkpoint metric objects.
    //
    // In order to collect the data from these metrics, please add the metrics to
    // the provided monitoring platform. Unless configured with a user-specified
    // monitoring platform, the data is not collected in OSS.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    var registerMetrics sync.Once
    
    // Register all metrics.
    func Register() {
    	registerMetrics.Do(func() {
    		for _, metric := range metrics {
    			legacyregistry.MustRegister(metric)
    		}
    	})
    }
    
    // Reset all metrics.
    func Reset() {
    	for _, metric := range metrics {
    		metric.Reset()
    	}
    }
    
    // UpdateInflightRequestMetrics reports concurrency metrics classified by
    // mutating vs Readonly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  8. pkg/test/echo/common/metrics.go

    package common
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    type EchoMetrics struct {
    	HTTPRequests monitoring.Metric
    	GrpcRequests monitoring.Metric
    	TCPRequests  monitoring.Metric
    }
    
    var (
    	PortLabel = monitoring.CreateLabel("port")
    	Metrics   = &EchoMetrics{
    		HTTPRequests: monitoring.NewSum(
    			"istio_echo_http_requests_total",
    			"The number of http requests total",
    		),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. prow/config/metrics/metrics.yaml

    # With a startup probe and `--kubelet-insecure-tls` added.
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      labels:
        k8s-app: metrics-server
      name: metrics-server
      namespace: kube-system
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        k8s-app: metrics-server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/kubelet/server/metrics/metrics.go

    limitations under the License.
    */
    
    package metrics
    
    import (
    	"sync"
    	"time"
    
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    const (
    	kubeletSubsystem = "kubelet"
    )
    
    var (
    	// HTTPRequests tracks the number of the http requests received since the server started.
    	HTTPRequests = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      kubeletSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top