Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for totalNodeCount (0.07 sec)

  1. cmd/utils.go

    	if obj := encodeDirObject(object); obj != object {
    		object = obj
    	}
    	return HasSuffix(object, globalDirSuffix)
    }
    
    // Helper method to return total number of nodes in cluster
    func totalNodeCount() int {
    	totalNodesCount := len(globalEndpoints.Hostnames())
    	if totalNodesCount == 0 {
    		totalNodesCount = 1 // For standalone erasure coding
    	}
    	return totalNodesCount
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    	go func() {
    		defer xioutil.SafeClose(resultCh)
    
    		ci := madmin.ClusterRegistrationInfo{}
    		ci.Info.NoOfServerPools = len(globalEndpoints)
    		ci.Info.NoOfServers = totalNodeCount()
    		ci.Info.MinioVersion = Version
    
    		si := objectAPI.StorageInfo(ctx, false)
    
    		ci.Info.NoOfDrives = len(si.Disks)
    		for _, disk := range si.Disks {
    			ci.Info.TotalDriveSpace += disk.TotalSpace
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 99.6K bytes
    - Viewed (0)
Back to top