Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sinceUptime (0.22 sec)

  1. cmd/site-replication-metrics.go

    		}
    		rt.ErrCounts["AccessDenied"]++
    	}
    }
    
    func (rt *RTimedMetrics) merge(o RTimedMetrics) (n RTimedMetrics) {
    	n.SinceUptime.Bytes = atomic.LoadInt64(&rt.SinceUptime.Bytes) + atomic.LoadInt64(&o.SinceUptime.Bytes)
    	n.SinceUptime.Count = atomic.LoadInt64(&rt.SinceUptime.Count) + atomic.LoadInt64(&o.SinceUptime.Count)
    
    	n.LastMinute = n.LastMinute.merge(rt.LastMinute)
    	n.LastMinute = n.LastMinute.merge(o.LastMinute)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/site-replication-metrics_gen.go

    					z.SinceUptime.Count, err = dc.ReadInt64()
    					if err != nil {
    						err = msgp.WrapError(err, "SinceUptime", "Count")
    						return
    					}
    				case "Bytes":
    					z.SinceUptime.Bytes, err = dc.ReadInt64()
    					if err != nil {
    						err = msgp.WrapError(err, "SinceUptime", "Bytes")
    						return
    					}
    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "SinceUptime")
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 40.6K bytes
    - Viewed (0)
  3. cmd/bucket-stats.go

    	// Total number of failed operations including metadata updates
    	FailedCount int64 `json:"failedReplicationCount"`
    }
    
    func (bs *BucketReplicationStat) hasReplicationUsage() bool {
    	return bs.FailStats.SinceUptime.Count > 0 ||
    		bs.ReplicatedSize > 0 ||
    		bs.ReplicaSize > 0
    }
    
    func (bs *BucketReplicationStat) updateXferRate(sz int64, duration time.Duration) {
    	if sz > minLargeObjSize {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
      optional int64 sinceSeconds = 4;
    
      // An RFC3339 timestamp from which to show logs. If this value
      // precedes the time a pod was started, only logs since the pod start will be returned.
      // If this value is in the future, no logs will be returned.
      // Only one of sinceSeconds or sinceTime may be specified.
      // +optional
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top