Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for speak (0.18 sec)

  1. cmd/metrics-v2.go

    			if len(qs.XferStats) > 0 {
    				tots := qs.XferStats[Total]
    				currTransferRate.Value = tots.Curr
    				avgTransferRate.Value = tots.Avg
    				maxTransferRate.Value = tots.Peak
    			}
    			ml = []MetricV2{
    				activeWorkersCount,
    				avgActiveWorkersCount,
    				maxActiveWorkersCount,
    				currInQueueCount,
    				currInQueueBytes,
    				avgQueueCount,
    				avgQueueBytes,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    				x2, ok := v2.XferStats[replication.MetricName(rm)]
    				if !ok {
    					x2 = replication.XferStats{}
    				}
    				x2.AvgRate += x.Avg
    				x2.CurrRate += x.Curr
    				if x.Peak > x2.PeakRate {
    					x2.PeakRate = x.Peak
    				}
    				v2.XferStats[replication.MetricName(rm)] = x2
    			}
    			sm.Metrics[dID] = v2
    		}
    	}
    	sm.Uptime = UTCNow().Unix() - globalBootTime.Unix()
    	return sm, nil
    }
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
Back to top