Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for incS3InputBytes (0.16 sec)

  1. cmd/http-stats.go

    }
    
    // Return total output bytes
    func (s *connStats) getInternodeOutputBytes() uint64 {
    	return atomic.LoadUint64(&s.internodeOutputBytes)
    }
    
    // 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))
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 17:13:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top