Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 373 for metric (0.04 sec)

  1. cmd/data-scanner-metric.go

    	scannerMetricCleanAbandoned
    	scannerMetricApplyNonCurrent
    	scannerMetricHealAbandonedVersion
    
    	// START Trace metrics:
    	scannerMetricStartTrace
    	scannerMetricScanObject // Scan object. All operations included.
    	scannerMetricHealAbandonedObject
    
    	// END realtime metrics:
    	scannerMetricLastRealtime
    
    	// Trace only metrics:
    	scannerMetricScanFolder      // Scan a folder on disk, recursively.
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-03 06:45
    - 9.5K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    		metricsGroupOpts: opts,
    	}
    	mg.RegisterRead(func(_ context.Context) (metrics []MetricV2) {
    		metrics = make([]MetricV2, 0, 16)
    		nodesUp, nodesDown := globalNotificationSys.GetPeerOnlineCount()
    		metrics = append(metrics, MetricV2{
    			Description: getNodeOnlineTotalMD(),
    			Value:       float64(nodesUp),
    		})
    		metrics = append(metrics, MetricV2{
    			Description: getNodeOfflineTotalMD(),
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-23 20:56
    - 133.5K bytes
    - Viewed (0)
  3. cmd/metrics-resource.go

    	}
    
    	key := getResourceKey(name, labels)
    	metric, found := subsysMetrics[key]
    	if !found {
    		metric = ResourceMetric{
    			Name:   name,
    			Labels: labels,
    		}
    	}
    
    	if isCumulative {
    		metric.Current = val - metric.Cumulative
    		metric.Cumulative = val
    	} else {
    		metric.Current = val
    	}
    
    	if metric.Current > metric.Max {
    		metric.Max = val
    	}
    
    	metric.Sum += metric.Current
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-30 00:56
    - 17.2K bytes
    - Viewed (0)
  4. cmd/metrics-v3-types.go

    }
    
    // MetricsGroup - represents a group of metrics. It includes a `MetricsLoaderFn`
    // function that provides a way to load the metrics from the system. The metrics
    // are cached and refreshed after a given timeout.
    //
    // For metrics with a `bucket` dimension, a list of buckets argument is required
    // to collect the metrics.
    //
    // It implements the prometheus.Collector interface for metric groups without a
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-28 19:33
    - 15.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // target specifies the target value for the given metric
      optional MetricTarget target = 2;
    
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 3;
    }
    
    // ObjectMetricStatus indicates the current value of a metric describing a
    // kubernetes object (for example, hits-per-second on an Ingress object).
    message ObjectMetricStatus {
      // metric identifies the target metric by name and selector
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 21K bytes
    - Viewed (0)
  6. cmd/metrics-v2_test.go

    	}
    
    	// Accumulate regular-cased API label metrics for 'PutObject' for deeper verification
    	metrics := getHistogramMetrics(ttfbHist, getBucketTTFBDistributionMD(), false, false)
    	capitalPutObjects := make([]MetricV2, 0, len(histBuckets)+1)
    	for _, metric := range metrics {
    		if value := metric.VariableLabels["api"]; value == "PutObject" {
    			capitalPutObjects = append(capitalPutObjects, metric)
    		}
    	}
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-03-30 00:56
    - 6.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // target specifies the target value for the given metric
      optional MetricTarget target = 2;
    
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 3;
    }
    
    // ObjectMetricStatus indicates the current value of a metric describing a
    // kubernetes object (for example, hits-per-second on an Ingress object).
    message ObjectMetricStatus {
      // metric identifies the target metric by name and selector
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 21.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      optional k8s.io.apimachinery.pkg.api.resource.Quantity targetValue = 3;
    
      // selector is the string-encoded form of a standard kubernetes label selector for the given metric
      // When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
      // When unset, just the metricName will be used to gather metrics.
      // +optional
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 21.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      optional k8s.io.apimachinery.pkg.api.resource.Quantity targetValue = 3;
    
      // selector is the string-encoded form of a standard kubernetes label selector for the given metric.
      // When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
      // When unset, just the metricName will be used to gather metrics.
      // +optional
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 22K bytes
    - Viewed (0)
  10. 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: 2025-05-25 19:28
    - Last Modified: 2024-02-06 06:00
    - 8.2K bytes
    - Viewed (0)
Back to top