Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for replicatedSize (0.08 sec)

  1. cmd/site-replication-metrics.go

    			t = &m
    		}
    		if v.XferRateSml != nil {
    			mx[Small] = *v.XferRateSml.Clone()
    			m := t.merge(*v.XferRateSml)
    			t = &m
    		}
    
    		mx[Total] = *t
    		metric := SRMetric{
    			ReplicatedSize:  v.ReplicatedSize,
    			ReplicatedCount: v.ReplicatedCount,
    			DeploymentID:    dID,
    			Failed:          v.Failed.toMetric(),
    			XferStats:       mx,
    		}
    		epHealth, ok := epMap[v.Endpoint]
    		if ok {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/site-replication-utils.go

    		StartTime:       rs.StartTime,
    		LastUpdate:      rs.LastUpdate,
    		ResyncStatus:    rs.Status.String(),
    		ResyncID:        rst.resyncID,
    		DeplID:          rs.DeplID,
    		ReplicatedSize:  rs.ReplicatedSize,
    		ReplicatedCount: rs.ReplicatedCount,
    		FailedSize:      rs.FailedSize,
    		FailedCount:     rs.FailedCount,
    		Bucket:          rs.Bucket,
    		Object:          rs.Object,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. cmd/data-usage.go

    				}
    				dataUsageInfo.ReplicationInfo[cfg.RoleArn] = BucketTargetUsageInfo{
    					ReplicationFailedSize:   bui.ReplicationFailedSizeV1,
    					ReplicationFailedCount:  bui.ReplicationFailedCountV1,
    					ReplicatedSize:          bui.ReplicatedSizeV1,
    					ReplicationPendingCount: bui.ReplicationPendingCountV1,
    					ReplicationPendingSize:  bui.ReplicationPendingSizeV1,
    				}
    			}
    		}
    	}
    	return dataUsageInfo, nil
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. cmd/data-usage-utils.go

    // - replica failed count
    type BucketTargetUsageInfo struct {
    	ReplicationPendingSize  uint64 `json:"objectsPendingReplicationTotalSize"`
    	ReplicationFailedSize   uint64 `json:"objectsFailedReplicationTotalSize"`
    	ReplicatedSize          uint64 `json:"objectsReplicatedTotalSize"`
    	ReplicaSize             uint64 `json:"objectReplicaTotalSize"`
    	ReplicationPendingCount uint64 `json:"objectsPendingReplicationCount"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. cmd/metrics-v3-bucket-replication.go

    					m.Set(bucketReplProxiedDeleteTaggingRequestsFailures, float64(s.ProxyStats.RmvTagFailedTotal), labels...)
    					m.Set(bucketReplSentBytes, float64(stat.ReplicatedSize), labels...)
    
    					SetHistogramValues(m, bucketReplLatencyMs, stat.Latency.getUploadLatency(), bucketL, bucket, operationL, "upload", targetArnL, arn)
    				}
    			}
    		}
    	}
    
    	return nil
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top