Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BandWidthLimitInBytesPerSecond (0.25 sec)

  1. cmd/bucket-stats_gen.go

    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "Latency")
    						return
    					}
    				}
    			}
    		case "BandWidthLimitInBytesPerSecond":
    			z.BandWidthLimitInBytesPerSecond, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "BandWidthLimitInBytesPerSecond")
    				return
    			}
    		case "CurrentBandwidthInBytesPerSecond":
    			z.CurrentBandwidthInBytesPerSecond, err = dc.ReadFloat64()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 57.5K bytes
    - Viewed (0)
  2. cmd/bucket-stats.go

    		s := BucketReplicationStat{
    			ReplicatedSize:                   st.ReplicatedSize,
    			ReplicaSize:                      st.ReplicaSize,
    			Latency:                          st.Latency,
    			BandWidthLimitInBytesPerSecond:   st.BandWidthLimitInBytesPerSecond,
    			CurrentBandwidthInBytesPerSecond: st.CurrentBandwidthInBytesPerSecond,
    			XferRateLrg:                      st.XferRateLrg.Clone(),
    			XferRateSml:                      st.XferRateSml.Clone(),
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  3. cmd/bucket-replication-handlers.go

    	bwMap := bwRpt.BucketStats
    	for arn, st := range stats.ReplicationStats.Stats {
    		for opts, bw := range bwMap {
    			if opts.ReplicationARN != "" && opts.ReplicationARN == arn {
    				st.BandWidthLimitInBytesPerSecond = bw.LimitInBytesPerSecond
    				st.CurrentBandwidthInBytesPerSecond = bw.CurrentBandwidthInBytesPerSecond
    				stats.ReplicationStats.Stats[arn] = st
    			}
    		}
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Oct 28 04:08:53 GMT 2023
    - 23.2K bytes
    - Viewed (0)
Back to top