Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 273 for Metric2 (1.39 sec)

  1. docs/metrics/prometheus/list.md

    # Cluster Metrics
    
    MinIO collects the following metrics at the cluster level.
    Metrics may include one or more labels, such as the server that calculated that metric.
    
    These metrics can be obtained from any MinIO server once per collection by using the following URL:
    
    ```shell
    https://HOSTNAME:PORT/minio/v2/metrics/cluster
    ```
    
    Replace ``HOSTNAME:PORT`` with the hostname of your MinIO deployment.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  2. cmd/metrics-v3-cluster-erasure-set.go

    		poolIDL, setIDL)
    )
    
    func b2f(v bool) float64 {
    	if v {
    		return 1
    	}
    	return 0
    }
    
    // loadClusterErasureSetMetrics - `MetricsLoaderFn` for cluster storage erasure
    // set metrics.
    func loadClusterErasureSetMetrics(ctx context.Context, m MetricValues, c *metricsCache) error {
    	result, _ := c.esetHealthResult.Get()
    
    	m.Set(erasureSetOverallWriteQuorum, float64(result.WriteQuorum))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        /* metric description */
        "Track success/failure of MLIR pass runs when fallback used",
        /* metric field */ "status");
    
    auto* mlir_graph_optimization_pass_fallback_count = monitoring::Counter<1>::New(
        /* metric name */
        "/tensorflow/core/mlir_graph_optimization_pass_fallback_count",
        /* metric description */
        "Track success/failure of MLIR graph optimization pass runs when fallback "
        "used",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. 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)
  5. cmd/metrics-v3-bucket-replication.go

    		"Number of failures in DELETE tagging requests proxied to replication target",
    		bucketL)
    )
    
    // loadBucketReplicationMetrics - `BucketMetricsLoaderFn` for bucket replication metrics
    // such as latency and sent bytes.
    func loadBucketReplicationMetrics(ctx context.Context, m MetricValues, c *metricsCache, buckets []string) error {
    	if globalSiteReplicationSys.isEnabled() {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/cmd/trace/jsontrace_test.go

    	}
    }
    
    func heapMetrics(data format.Data) (metrics []format.HeapCountersArg) {
    	for _, e := range data.Events {
    		if e.Phase == "C" && e.Name == "Heap" {
    			j, _ := json.Marshal(e.Arg)
    			var metric format.HeapCountersArg
    			json.Unmarshal(j, &metric)
    			metrics = append(metrics, metric)
    		}
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/runtime/metrics_test.go

    	"reflect"
    	"runtime"
    	"runtime/debug"
    	"runtime/metrics"
    	"runtime/pprof"
    	"runtime/trace"
    	"slices"
    	"sort"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    func prepareAllMetricsSamples() (map[string]metrics.Description, []metrics.Sample) {
    	all := metrics.All()
    	samples := make([]metrics.Sample, len(all))
    	descs := make(map[string]metrics.Description)
    	for i := range all {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. src/testing/benchmark.go

    // (such as "allocs/op"), ReportMetric will override that metric.
    // Setting "ns/op" to 0 will suppress that built-in metric.
    func (b *B) ReportMetric(n float64, unit string) {
    	if unit == "" {
    		panic("metric unit must not be empty")
    	}
    	if strings.IndexFunc(unit, unicode.IsSpace) >= 0 {
    		panic("metric unit must not contain whitespace")
    	}
    	b.extra[unit] = n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    			FilterPlugin: f.filterPlugins[i],
    			metric:       metrics.PluginEvaluationTotal.WithLabelValues(pl.Name(), metrics.Filter, f.profileName),
    		}
    	}
    
    	// Cache metric streams for prescore and score plugins.
    	for i, pl := range f.preScorePlugins {
    		f.preScorePlugins[i] = &instrumentedPreScorePlugin{
    			PreScorePlugin: f.preScorePlugins[i],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. cmd/peer-rest-server.go

    		return true
    	})
    	return aoMetricsGroup.NewWith(res), nil
    }
    
    // GetPeerMetrics gets the metrics to be federated across peers.
    func (s *peerRESTServer) GetPeerMetrics(_ *grid.MSS) (*grid.Array[*MetricV2], *grid.RemoteErr) {
    	res := make([]*MetricV2, 0, len(peerMetricsGroups))
    	populateAndPublish(peerMetricsGroups, func(m MetricV2) bool {
    		if m.VariableLabels == nil {
    			m.VariableLabels = make(map[string]string, 1)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top