Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for totalS3Errors (0.04 sec)

  1. cmd/http-tracer_test.go

    				switch j % 4 {
    				case 0:
    					httpStats.updateStats("GetObject", &xhttp.ResponseRecorder{})
    				case 1:
    					httpStats.totalS3Requests.Inc("PutObject")
    				case 2:
    					httpStats.totalS3Errors.Inc("DeleteObject")
    				case 3:
    					httpStats.currentS3Requests.Inc("ListObjects")
    				}
    			}
    		}(i)
    	}
    
    	for i := range numReaders {
    		wg.Add(1)
    		go func(readerID int) {
    			defer wg.Done()
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. cmd/metrics-v3-api.go

    	}
    	for name, value := range httpStats.TotalS3Requests.APIStats {
    		m.Set(apiRequestsTotal, float64(value), "name", name, "type", "s3")
    	}
    	for name, value := range httpStats.TotalS3Errors.APIStats {
    		m.Set(apiRequestsErrorsTotal, float64(value), "name", name, "type", "s3")
    	}
    	for name, value := range httpStats.TotalS35xxErrors.APIStats {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Sep 24 17:13:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top