Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for incS3OutputBytes (8.46 sec)

  1. cmd/http-stats.go

    }
    
    // Increase S3 total input bytes
    func (s *connStats) incS3InputBytes(n int64) {
    	atomic.AddUint64(&s.s3InputBytes, uint64(n))
    }
    
    // Increase S3 total output bytes
    func (s *connStats) incS3OutputBytes(n int64) {
    	atomic.AddUint64(&s.s3OutputBytes, uint64(n))
    }
    
    // Return S3 total input bytes
    func (s *connStats) getS3InputBytes() uint64 {
    	return atomic.LoadUint64(&s.s3InputBytes)
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/handler-utils.go

    			globalConnStats.incS3InputBytes(int64(tc.RequestRecorder.Size()))
    			globalConnStats.incS3OutputBytes(int64(tc.ResponseRecorder.Size()))
    
    			if countBktStat {
    				globalBucketConnStats.incS3InputBytes(bucket, int64(tc.RequestRecorder.Size()))
    				globalBucketConnStats.incS3OutputBytes(bucket, int64(tc.ResponseRecorder.Size()))
    				globalBucketHTTPStats.updateHTTPStats(bucket, api, tc.ResponseRecorder)
    			}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 15.5K bytes
    - Viewed (3)
Back to top