Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for metric_computation_total (0.33 sec)

  1. pkg/controller/podautoscaler/monitor/metrics.go

    			Buckets:        metrics.ExponentialBuckets(0.001, 2, 15),
    			StabilityLevel: metrics.ALPHA,
    		}, []string{"action", "error"})
    	metricComputationTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      hpaControllerSubsystem,
    			Name:           "metric_computation_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:47:24 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/monitor/monitor.go

    func (r *monitor) ObserveMetricComputationResult(action ActionLabel, err ErrorLabel, duration time.Duration, metricType v2.MetricSourceType) {
    	metricComputationTotal.WithLabelValues(string(action), string(err), string(metricType)).Inc()
    	metricComputationDuration.WithLabelValues(string(action), string(err), string(metricType)).Observe(duration.Seconds())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:47:24 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    - HPA controller exposes the following metrics from the kube-controller-manager. 
      - `metric_computation_duration_seconds`: The time(seconds) that the HPA controller takes to calculate one metric.
      - `metric_computation_total`: Number of metric computations. ([#116326](https://github.com/kubernetes/kubernetes/pull/116326), [@sanposhiho](https://github.com/sanposhiho)) [SIG Apps, Autoscaling and Instrumentation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top