Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for s3RequestsInQueue (0.19 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K 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 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