Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for loadBucketAPIHTTPMetrics (0.2 sec)

  1. cmd/metrics-v3-api.go

    		"Distribution of time to first byte across API calls for a bucket",
    		"bucket", "name", "le", "type")
    )
    
    // loadBucketAPIHTTPMetrics - loads bucket level S3 HTTP metrics.
    //
    // This is a `MetricsLoaderFn`.
    //
    // This includes bucket level S3 HTTP metrics and S3 network in/out metrics.
    func loadBucketAPIHTTPMetrics(ctx context.Context, m MetricValues, _ *metricsCache, buckets []string) error {
    	if len(buckets) == 0 {
    		return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. cmd/metrics-v3.go

    			bucketAPIRequestsTotalMD,
    			bucketAPIRequestsCanceledMD,
    			bucketAPIRequests4xxErrorsMD,
    			bucketAPIRequests5xxErrorsMD,
    
    			bucketAPIRequestsTTFBSecondsDistributionMD,
    		},
    		JoinBucketLoaders(loadBucketAPIHTTPMetrics, loadBucketAPITTFBMetrics),
    	)
    
    	bucketReplicationMG := NewBucketMetricsGroup(bucketReplicationCollectorPath,
    		[]MetricDescriptor{
    			bucketReplLastHrFailedBytesMD,
    			bucketReplLastHrFailedCountMD,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top