Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getFsInfo (0.09 sec)

  1. cmd/notification.go

    	}
    
    	for index, err := range g.Wait() {
    		if err != nil {
    			sys.addNodeErr(&reply[index], sys.peerClients[index], err)
    		}
    	}
    	return reply
    }
    
    // GetOSInfo - Get operating system's information
    func (sys *NotificationSys) GetOSInfo(ctx context.Context) []madmin.OSInfo {
    	reply := make([]madmin.OSInfo, len(sys.peerClients))
    
    	g := errgroup.WithNErrs(len(sys.peerClients))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    		}
    	}
    
    	getAndWriteOSInfo := func() {
    		if query.Get("sysosinfo") == "true" {
    			localOSInfo := madmin.GetOSInfo(healthCtx, globalLocalNodeName)
    			anonymizeAddr(&localOSInfo)
    			healthInfo.Sys.OSInfo = append(healthInfo.Sys.OSInfo, localOSInfo)
    
    			peerOSInfos := globalNotificationSys.GetOSInfo(healthCtx)
    			for _, o := range peerOSInfos {
    				anonymizeAddr(&o)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. cmd/peer-rest-server.go

    }
    
    // GetOSInfoHandler - returns operating system's information.
    func (s *peerRESTServer) GetOSInfoHandler(_ *grid.MSS) (*grid.JSON[madmin.OSInfo], *grid.RemoteErr) {
    	info := madmin.GetOSInfo(context.Background(), globalLocalNodeName)
    	return madminOSInfo.NewJSONWith(&info), nil
    }
    
    // GetProcInfoHandler - returns this MinIO process information.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top