Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for objectsCount (0.12 sec)

  1. cmd/data-usage-utils.go

    	// Total number of objects that failed replication
    	ReplicationFailedCountV1 uint64 `json:"objectsFailedReplicationCount"`
    
    	ObjectsCount            uint64                           `json:"objectsCount"`
    	ObjectSizesHistogram    map[string]uint64                `json:"objectsSizesHistogram"`
    	ObjectVersionsHistogram map[string]uint64                `json:"objectsVersionsHistogram"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. cmd/metrics-v3-cluster-usage.go

    	clusterVersionsHistogram := map[string]uint64{}
    	for _, usage := range dataUsageInfo.BucketsUsage {
    		clusterBuckets++
    		clusterSize += usage.Size
    		clusterObjectsCount += usage.ObjectsCount
    		clusterVersionsCount += usage.VersionsCount
    		clusterDeleteMarkersCount += usage.DeleteMarkersCount
    		for k, v := range usage.ObjectSizesHistogram {
    			clusterObjectSizesHistogram[k] += v
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. test/heapsampling.go

    		}
    	}
    	for _, frame := range frames {
    		var objectCount int64
    		a := allocObjects(records, frame)
    		for s := range size {
    			// Allocations of size size[s] should be on line firstLine + s.
    			ln := firstLine + s
    			objectsPerLine[ln] = append(objectsPerLine[ln], a[ln].objects)
    			bytesPerLine[ln] = append(bytesPerLine[ln], a[ln].bytes)
    			objectCount += a[ln].objects
    		}
    		totalCount = append(totalCount, objectCount)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 27 21:36:06 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top