Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Utilization (0.19 sec)

  1. cmd/erasure.go

    				if v.N > 0 {
    					di.Metrics.LastMinute[k] = v.asTimedAction()
    				}
    			}
    			for k, v := range info.Metrics.APICalls {
    				di.Metrics.APICalls[k] = v
    			}
    			if info.Total > 0 {
    				di.Utilization = float64(info.Used / info.Total * 100)
    			}
    			disksInfo[index] = di
    			return nil
    		}, index)
    	}
    
    	g.Wait()
    	return disksInfo
    }
    
    // Get an aggregated storage info across all disks.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 16K bytes
    - Viewed (1)
  2. cmd/notification.go

    	// in the 10 node shard would coordinate between other 9 shards to get the
    	// rest of the `99*9` requests.
    	//
    	// This essentially splits the workload properly and also allows for network
    	// utilization to be optimal, instead of blindly throttling the way we are
    	// doing below. However the changes that are needed here are a bit involved,
    	// further discussion advised. Remove this comment and remove the worker model
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 12 18:13:36 GMT 2024
    - 44.5K bytes
    - Viewed (0)
Back to top