Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for totalS3Canceled (0.09 sec)

  1. cmd/http-stats.go

    		APIStats: st.totalS34xxErrors.Load(toLowerKeys),
    	}
    	serverStats.TotalS35xxErrors = ServerHTTPAPIStats{
    		APIStats: st.totalS35xxErrors.Load(toLowerKeys),
    	}
    	serverStats.TotalS3Canceled = ServerHTTPAPIStats{
    		APIStats: st.totalS3Canceled.Load(toLowerKeys),
    	}
    	return serverStats
    }
    
    // Update statistics from http request and response data
    func (st *HTTPStats) updateStats(api string, w *xhttp.ResponseRecorder) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 17:13:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/metrics-v3-api.go

    	}
    	for name, value := range httpStats.TotalS34xxErrors.APIStats {
    		m.Set(apiRequests4xxErrorsTotal, float64(value), "name", name, "type", "s3")
    	}
    	for name, value := range httpStats.TotalS3Canceled.APIStats {
    		m.Set(apiRequestsCanceledTotal, float64(value), "name", name, "type", "s3")
    	}
    	return nil
    }
    
    // loadAPIRequestsTTFBMetrics - loads S3 TTFB metrics.
    //
    // This is a `MetricsLoaderFn`.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 17:13:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. cmd/metrics.go

    				"Total number of s3 errors in current MinIO server instance",
    				[]string{"api"}, nil),
    			prometheus.CounterValue,
    			float64(value),
    			api,
    		)
    	}
    
    	for api, value := range httpStats.TotalS3Canceled.APIStats {
    		ch <- prometheus.MustNewConstMetric(
    			prometheus.NewDesc(
    				prometheus.BuildFQName(s3Namespace, "canceled", "total"),
    				"Total number of client canceled s3 request in current MinIO server instance",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	TotalS35xxErrors       ServerHTTPAPIStats `json:"totalS35xxErrors"`
    	TotalS34xxErrors       ServerHTTPAPIStats `json:"totalS34xxErrors"`
    	TotalS3Canceled        ServerHTTPAPIStats `json:"totalS3Canceled"`
    	TotalS3RejectedAuth    uint64             `json:"totalS3RejectedAuth"`
    	TotalS3RejectedTime    uint64             `json:"totalS3RejectedTime"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    					Description:    getS3Requests4xxErrorsMD(),
    					Value:          float64(value),
    					VariableLabels: map[string]string{"api": api},
    				})
    			}
    			for api, value := range httpStats.TotalS3Canceled.APIStats {
    				metrics = append(metrics, MetricV2{
    					Description:    getS3RequestsCanceledMD(),
    					Value:          float64(value),
    					VariableLabels: map[string]string{"api": api},
    				})
    			}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top