Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddRequestsInQueues (0.37 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    var GetExecutingMutatingConcurrency = executingMutating.getGauge
    
    // AddRequestsInQueues adds the given delta to the gauge of the # of requests in the queues of the specified flowSchema and priorityLevel
    func AddRequestsInQueues(ctx context.Context, priorityLevel, flowSchema string, delta int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    		qs.totRequestsWaiting--
    		qs.totSeatsWaiting -= req.MaxSeats()
    		qs.totRequestsRejected++
    		qs.totRequestsCancelled++
    		metrics.AddReject(req.ctx, qs.qCfg.Name, req.fsName, "time-out")
    		metrics.AddRequestsInQueues(req.ctx, qs.qCfg.Name, req.fsName, -1)
    		metrics.AddSeatsInQueues(req.ctx, qs.qCfg.Name, req.fsName, -req.MaxSeats())
    		req.NoteQueued(false)
    		qs.reqsGaugePair.RequestsWaiting.Add(-1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
Back to top