Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for s3RequestsInQueue (0.06 sec)

  1. cmd/admin-handlers.go

    }
    
    // ServerHTTPStats holds all type of http operations performed to/from the server
    // including their average execution time.
    type ServerHTTPStats struct {
    	S3RequestsInQueue      int32              `json:"s3RequestsInQueue"`
    	S3RequestsIncoming     uint64             `json:"s3RequestsIncoming"`
    	CurrentS3Requests      ServerHTTPAPIStats `json:"currentS3Requests"`
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 99.6K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    				Value:       float64(httpStats.TotalS3RejectedInvalid),
    			})
    			metrics = append(metrics, MetricV2{
    				Description: getS3RequestsInQueueMD(),
    				Value:       float64(httpStats.S3RequestsInQueue),
    			})
    			metrics = append(metrics, MetricV2{
    				Description: getIncomingS3RequestsMD(),
    				Value:       float64(httpStats.S3RequestsIncoming),
    			})
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 133.4K bytes
    - Viewed (0)
Back to top