Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 273 for Metric2 (0.42 sec)

  1. cmd/metrics-router.go

    )
    
    const (
    	prometheusMetricsPathLegacy     = "/prometheus/metrics"
    	prometheusMetricsV2ClusterPath  = "/v2/metrics/cluster"
    	prometheusMetricsV2BucketPath   = "/v2/metrics/bucket"
    	prometheusMetricsV2NodePath     = "/v2/metrics/node"
    	prometheusMetricsV2ResourcePath = "/v2/metrics/resource"
    
    	// Metrics v3 endpoints
    	metricsV3Path = "/metrics/v3"
    )
    
    // Standard env prometheus auth type
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. cmd/metrics-realtime.go

    			aggr.Merge(&disk)
    		}
    		m.Aggregated.Disk = &aggr
    	}
    
    	if types.Contains(madmin.MetricsScanner) {
    		metrics := globalScannerMetrics.report()
    		m.Aggregated.Scanner = &metrics
    	}
    	if types.Contains(madmin.MetricsOS) {
    		metrics := globalOSMetrics.report()
    		m.Aggregated.OS = &metrics
    	}
    	if types.Contains(madmin.MetricsBatchJobs) {
    		m.Aggregated.BatchJobs = globalBatchJobsMetrics.report(opts.jobID)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:16:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// target specifies the target value for the given metric
    	Target MetricTarget `json:"target" protobuf:"bytes,2,name=target"`
    
    	// metric identifies the target metric by name and selector
    	Metric MetricIdentifier `json:"metric" protobuf:"bytes,3,name=metric"`
    }
    
    // PodsMetricSource indicates how to scale on a metric describing each pod in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v1/types.go

    	TargetValue resource.Quantity `json:"targetValue" protobuf:"bytes,3,name=targetValue"`
    
    	// 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/runtime/metrics/doc.go

    metric sets may not intersect.
    
    # Interface
    
    Metrics are designated by a string key, rather than, for example, a field name in
    a struct. The full list of supported metrics is always available in the slice of
    Descriptions returned by [All]. Each [Description] also includes useful information
    about the metric.
    
    Thus, users of this API are encouraged to sample supported metrics defined by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. cmd/metrics-v3-ilm.go

    	ilmVersionsScannedMD                = NewCounterMD(versionsScanned, "Total number of object versions checked for ILM actions since server start")
    )
    
    // loadILMMetrics - `MetricsLoaderFn` for ILM metrics.
    func loadILMMetrics(_ context.Context, m MetricValues, _ *metricsCache) error {
    	if globalExpiryState != nil {
    		m.Set(expiryPendingTasks, float64(globalExpiryState.PendingTasks()))
    	}
    	if globalTransitionState != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. cmd/metrics-v3-replication.go

    		"Maximum replication data transfer rate in bytes/sec seen since server start")
    )
    
    // loadClusterReplicationMetrics - `MetricsLoaderFn` for cluster replication metrics
    // such as transfer rate and objects queued.
    func loadClusterReplicationMetrics(ctx context.Context, m MetricValues, c *metricsCache) error {
    	if globalReplicationStats == nil {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry.go

    		return other.Metrics[i].Providers[0].Name < other.Metrics[j].Providers[0].Name
    	})
    	for i := range ct.Metrics {
    		if ct.Metrics[i].ReportingInterval != nil && other.Metrics[i].ReportingInterval != nil {
    			if ct.Metrics[i].ReportingInterval.AsDuration() != other.Metrics[i].ReportingInterval.AsDuration() {
    				return false
    			}
    		}
    		if ct.Metrics[i].Providers != nil && other.Metrics[i].Providers != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. pkg/kubelet/metrics/collectors/volume_stats.go

    		metrics.ALPHA, "",
    	)
    	volumeStatsAvailableBytesDesc = metrics.NewDesc(
    		metrics.BuildFQName("", kubeletmetrics.KubeletSubsystem, kubeletmetrics.VolumeStatsAvailableBytesKey),
    		"Number of available bytes in the volume",
    		[]string{"namespace", "persistentvolumeclaim"}, nil,
    		metrics.ALPHA, "",
    	)
    	volumeStatsUsedBytesDesc = metrics.NewDesc(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/telemetry_test.go

    	}
    	emptyPrometheus := &tpb.Telemetry{
    		Metrics: []*tpb.Metrics{
    			{
    				Providers: []*tpb.ProviderRef{{Name: "prometheus"}},
    			},
    		},
    	}
    	overridesPrometheus := &tpb.Telemetry{
    		Metrics: []*tpb.Metrics{
    			{
    				Providers: []*tpb.ProviderRef{{Name: "prometheus"}},
    				Overrides: overrides,
    			},
    		},
    	}
    	reportingInterval := &tpb.Telemetry{
    		Metrics: []*tpb.Metrics{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top