Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for latencies (0.26 sec)

  1. cmd/last-minute.go

    // Add  a new duration data
    func (l *lastMinuteLatency) addAll(sec int64, a AccElem) {
    	l.forwardTo(sec)
    	winIdx := sec % 60
    	l.Totals[winIdx].merge(a)
    	l.LastSec = sec
    }
    
    // Merge all recorded latencies of last minute into one
    func (l *lastMinuteLatency) getTotal() AccElem {
    	var res AccElem
    	sec := time.Now().Unix()
    	l.forwardTo(sec)
    	for _, elem := range l.Totals[:] {
    		res.merge(elem)
    	}
    	return res
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 05 17:40:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. src/runtime/metrics/doc.go

    		in a runnable state before actually running. Bucket counts
    		increase monotonically.
    
    	/sched/pauses/stopping/gc:seconds
    		Distribution of individual GC-related stop-the-world stopping
    		latencies. This is the time it takes from deciding to stop the
    		world until all Ps are stopped. This is a subset of the total
    		GC-related stop-the-world time (/sched/pauses/total/gc:seconds).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. src/runtime/metrics/description.go

    		Kind:        KindFloat64Histogram,
    		Cumulative:  true,
    	},
    	{
    		Name:        "/sched/pauses/stopping/gc:seconds",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/metrics_test.go

    			elapsed:            time.Duration(10) * time.Second,
    			metrics: []string{
    				"apiserver_storage_transformation_duration_seconds",
    			},
    			want: `
    			# HELP apiserver_storage_transformation_duration_seconds [ALPHA] Latencies in seconds of value transformation operations.
    			# TYPE apiserver_storage_transformation_duration_seconds histogram
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  5. internal/logger/logonce.go

    		uerr = errors.Unwrap(leafErr)
    		depth++
    		if depth == unwrapErrsDepth {
    			// If we have reached enough depth we
    			// do not further recurse down, this
    			// is done to avoid any unnecessary
    			// latencies this might bring.
    			break
    		}
    	}
    	if uerr == nil {
    		leafErr = err
    	}
    	return leafErr
    }
    
    // One log message per error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. cmd/metrics-v3-system-drive.go

    	m.Set(driveAvailabilityErrorsTotal, float64(disk.Metrics.TotalErrorsAvailability), labels...)
    	m.Set(driveWaitingIO, float64(disk.Metrics.TotalWaiting), labels...)
    
    	// Append the api label for the drive API latencies.
    	labels = append(labels, "api", "")
    	lastIdx := len(labels) - 1
    	for apiName, latency := range disk.Metrics.LastMinute {
    		labels[lastIdx] = "storage." + apiName
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 12 17:23:50 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // heuristic, they may be put into the same cluster and it can introduce
    // artificial dependencies and incur great performance loss.  In this example,
    // Node_Y becomes dependent on IteratorGetNext and the latencies add up if
    // Node_X and Node_Y are in the same cluster.
    //
    // IteratorGetNext -> Node_X -> Stage
    //
    // Unstage -> Node_Y
    //
    Status ClusterScopingPassImpl::ScopingForPipelineStages() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. cmd/data-scanner-metric.go

    	currentPaths sync.Map
    
    	cycleInfoMu sync.Mutex
    	cycleInfo   *currentScannerCycle
    }
    
    var globalScannerMetrics scannerMetrics
    
    const (
    	// START Realtime metrics, that only to records
    	// last minute latencies and total operation count.
    	scannerMetricReadMetadata scannerMetric = iota
    	scannerMetricCheckMissing
    	scannerMetricSaveUsage
    	scannerMetricApplyAll
    	scannerMetricApplyVersion
    	scannerMetricTierObjSweep
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    			Help: "Etcd request latency in seconds for each operation and object type.",
    			// Etcd request latency in seconds for each operation and object type.
    			// This metric is used for verifying etcd api call latencies SLO
    			// keep consistent with apiserver metric 'requestLatencies' in
    			// staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go
    			Buckets: []float64{0.005, 0.025, 0.05, 0.1, 0.2, 0.4, 0.6, 0.8, 1.0, 1.25, 1.5, 2, 3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    							"grpc_type": true,
    							"grpc_code": true,
    						})
    						return mf, nil
    					},
    				},
    			},
    
    			// etcd 3.0 metric format for grpc request latencies,
    			// rewritten to the etcd 3.1+ format.
    			"etcd_grpc_unary_requests_duration_seconds": {
    				rewriters: []rewriteFunc{
    					func(mf *dto.MetricFamily) (*dto.MetricFamily, error) {
    						mf = deepCopyMetricFamily(mf)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top