Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddSeatConcurrencyInUse (0.35 sec)

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

    	apiserverNextDiscountedSBounds.WithLabelValues(priorityLevel, "max").Set(discountedSMax)
    }
    
    // AddSeatConcurrencyInUse adds the given delta to the gauge of seats in use by
    // the currently executing requests of the given flowSchema and priorityLevel
    func AddSeatConcurrencyInUse(priorityLevel, flowSchema string, delta int) {
    	apiserverCurrentExecutingSeats.WithLabelValues(priorityLevel, flowSchema).Add(float64(delta))
    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.totRequestsExecuting++
    	qs.totSeatsInUse += req.MaxSeats()
    	qs.requestsExecutingSet = qs.requestsExecutingSet.Insert(req)
    	metrics.AddRequestsExecuting(ctx, qs.qCfg.Name, fsName, 1)
    	metrics.AddSeatConcurrencyInUse(qs.qCfg.Name, fsName, req.MaxSeats())
    	qs.reqsGaugePair.RequestsExecuting.Add(1)
    	qs.execSeatsGauge.Add(float64(req.MaxSeats()))
    	qs.seatDemandIntegrator.Set(float64(qs.totSeatsInUse + qs.totSeatsWaiting))
    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