Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for active_requests (0.21 sec)

  1. cmd/metrics-v2.go

    					Namespace: minioNamespace,
    					Subsystem: lambdaSubsystem,
    					Name:      "active_requests",
    					Help:      "Number of in progress requests",
    				},
    				VariableLabels: map[string]string{"target_id": st.ID.ID, "target_name": st.ID.Name},
    				Value:          float64(st.ActiveRequests),
    			})
    			metrics = append(metrics, MetricV2{
    				Description: MetricDescription{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. internal/config/lambda/target/webhook.go

    		ID:             target.id,
    		ActiveRequests: atomic.LoadInt64(&target.activeRequests),
    		TotalRequests:  atomic.LoadInt64(&target.totalRequests),
    		FailedRequests: atomic.LoadInt64(&target.failedRequests),
    	}
    }
    
    // Send - sends an event to the webhook.
    func (target *WebhookTarget) Send(eventData event.Event) (resp *http.Response, err error) {
    	atomic.AddInt64(&target.activeRequests, 1)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 08 21:39:49 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top