Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for QueueLatency (1.97 sec)

  1. pkg/test/loadbalancersim/mesh/node.go

    	var out timeseries.Instance
    	for _, n := range nodes {
    		out.AddAll(n.Latency())
    	}
    	return &out
    }
    
    func (nodes Nodes) QueueLatency() *timeseries.Instance {
    	var out timeseries.Instance
    	for _, n := range nodes {
    		out.AddAll(n.QueueLatency())
    	}
    	return &out
    }
    
    func (nodes Nodes) TotalRequests() uint64 {
    	var out uint64
    	for _, n := range nodes {
    		out += n.TotalRequests()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. pkg/test/loadbalancersim/lb_test.go

    	nodesOtherRegion := s.mesh.Nodes().Select(locality.Not(locality.MatchRegion(clientLocality)))
    
    	// Store in the output.
    	qLatency := s.mesh.Nodes().QueueLatency().Data()
    	tm.qLatencyMin = qLatency.Min()
    	tm.qLatencyAvg = qLatency.Mean()
    	tm.qLatencyMax = qLatency.Max()
    	tm.latencyMin = clientLatency.Min()
    	tm.latencyAvg = clientLatency.Mean()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
Back to top