Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Sysinfo (0.11 sec)

  1. cmd/admin-handlers.go

    		return
    	}
    
    	// Get capacity info when asked.
    	if r.Form.Get("capacity") == "true" {
    		sinfo := objectAPI.StorageInfo(ctx, false)
    		dataUsageInfo.TotalCapacity = GetTotalUsableCapacity(sinfo.Disks, sinfo)
    		dataUsageInfo.TotalFreeCapacity = GetTotalUsableCapacityFree(sinfo.Disks, sinfo)
    		if dataUsageInfo.TotalCapacity > dataUsageInfo.TotalFreeCapacity {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/revision.go

    	Name     string `json:"name"`
    	Revision string `json:"revision"`
    	Tag      string `json:"tag,omitempty"`
    }
    
    // NsInfo represents namespace related information like pods running there.
    // It is used to display data and is exposed for integration tests.
    type NsInfo struct {
    	Name string             `json:"name,omitempty"`
    	Pods []*PodFilteredInfo `json:"pods,omitempty"`
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/lib/jline-native/README.txt

    follow JLine's directory and filename conventions.
    
    [1] https://github.com/jline/jline3/tree/master/native
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 428 bytes
    - Viewed (0)
  4. cmd/metrics.go

    		float64(GetTotalUsableCapacity(server.Disks, sinfo)),
    	)
    
    	// Report total usable capacity free
    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(minioNamespace, "capacity_usable_free", "total"),
    			"Total free usable capacity online in the cluster",
    			nil, nil),
    		prometheus.GaugeValue,
    		float64(GetTotalUsableCapacityFree(server.Disks, sinfo)),
    	)
    
    	// MinIO Offline Disks per node
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. cmd/notification.go

    		}
    	}
    	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))
    	for index, client := range sys.peerClients {
    		if client == nil {
    			continue
    		}
    		index := index
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 09 16:58:30 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    	sinfo, err := c.siteReplicationStatus(ctx, objAPI, opts)
    	if err != nil {
    		return info, err
    	}
    	info = madmin.SRStatusInfo{
    		Enabled:           sinfo.Enabled,
    		MaxBuckets:        sinfo.MaxBuckets,
    		MaxUsers:          sinfo.MaxUsers,
    		MaxGroups:         sinfo.MaxGroups,
    		MaxPolicies:       sinfo.MaxPolicies,
    		MaxILMExpiryRules: sinfo.MaxILMExpiryRules,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
  7. cmd/peer-rest-server.go

    	madminCPUs             = grid.NewJSONPool[madmin.CPUs]()
    	madminMemInfo          = grid.NewJSONPool[madmin.MemInfo]()
    	madminNetInfo          = grid.NewJSONPool[madmin.NetInfo]()
    	madminOSInfo           = grid.NewJSONPool[madmin.OSInfo]()
    	madminPartitions       = grid.NewJSONPool[madmin.Partitions]()
    	madminProcInfo         = grid.NewJSONPool[madmin.ProcInfo]()
    	madminRealtimeMetrics  = grid.NewJSONPool[madmin.RealtimeMetrics]()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. cmd/peer-rest-client.go

    	return resp.ValueOrZero(), err
    }
    
    // GetOSInfo - fetch OS information for a remote node.
    func (client *peerRESTClient) GetOSInfo(ctx context.Context) (info madmin.OSInfo, err error) {
    	resp, err := getOSInfoRPC.Call(ctx, client.gridConn(), grid.NewMSS())
    	return resp.ValueOrZero(), err
    }
    
    // GetSELinuxInfo - fetch SELinux information for a remote node.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 09 16:58:30 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top