Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getInternodeOutputBytes (0.19 sec)

  1. cmd/http-stats.go

    }
    
    // Return internode total input bytes
    func (s *connStats) getInternodeInputBytes() uint64 {
    	return atomic.LoadUint64(&s.internodeInputBytes)
    }
    
    // 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))
    }
    
    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)
Back to top