Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for cedric (0.18 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    		}
    		*status = autoscalingv2.MetricStatus{
    			Type: autoscalingv2.ObjectMetricSourceType,
    			Object: &autoscalingv2.ObjectMetricStatus{
    				Metric: autoscalingv2.MetricIdentifier{
    					Name:     metricSpec.Object.Metric.Name,
    					Selector: metricSpec.Object.Metric.Selector,
    				},
    				Current: autoscalingv2.MetricValueStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. pkg/apis/autoscaling/validation/validation_test.go

    					Pods: &autoscaling.PodsMetricSource{
    						Metric: autoscaling.MetricIdentifier{},
    						Target: autoscaling.MetricTarget{
    							Type:         autoscaling.ValueMetricType,
    							AverageValue: resource.NewMilliQuantity(100, resource.DecimalSI),
    						},
    					},
    				}},
    			},
    		},
    		msg: "must specify a metric name",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/minio-dashboard.json

              "format": "time_series",
              "instant": true,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "{{instance}}",
              "metric": "process_start_time_seconds",
              "refId": "A",
              "step": 60
            }
          ],
          "title": "Uptime",
          "type": "stat"
        },
        {
          "datasource": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    }
    
    // AddMetric will add an case to the metric.
    func (ps *PushContext) AddMetric(metric monitoring.Metric, key string, proxyID, msg string) {
    	if ps == nil {
    		log.Infof("Metric without context %s %v %s", key, proxyID, msg)
    		return
    	}
    	ps.proxyStatusMutex.Lock()
    	defer ps.proxyStatusMutex.Unlock()
    
    	metricMap, f := ps.ProxyStatus[metric.Name()]
    	if !f {
    		metricMap = map[string]ProxyPushStatus{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    			FilterPlugin: f.filterPlugins[i],
    			metric:       metrics.PluginEvaluationTotal.WithLabelValues(pl.Name(), metrics.Filter, f.profileName),
    		}
    	}
    
    	// Cache metric streams for prescore and score plugins.
    	for i, pl := range f.preScorePlugins {
    		f.preScorePlugins[i] = &instrumentedPreScorePlugin{
    			PreScorePlugin: f.preScorePlugins[i],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	verifyNewDetacherCallCount(t, false /* expectZeroNewDetacherCallCount */, fakePlugin)
    	waitForDetachCallCount(t, 1 /* expectedDetachCallCount */, fakePlugin)
    
    	// Force detach metric due to timeout
    	testForceDetachMetric(t, 1, metrics.ForceDetachReasonTimeout)
    }
    
    // Populates desiredStateOfWorld cache with one node/volume/pod tuple.
    // Has node update fail
    // Calls Run()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    	}
    }
    
    type outboundListenerConflict struct {
    	metric          monitoring.Metric
    	node            *model.Proxy
    	listenerName    string
    	currentProtocol protocol.Instance
    	newHostname     host.Name
    	newProtocol     protocol.Instance
    }
    
    func (c outboundListenerConflict) addMetric(metrics model.Metrics) {
    	metrics.AddMetric(c.metric,
    		c.listenerName,
    		c.node.ID,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Expose apiserver_watch_cache_resource_version metric to simplify debugging problems with watchcache. ([#125377](https://github.com/kubernetes/kubernetes/pull/125377), [@wojtek-t](https://github.com/wojtek-t)) [SIG API Machinery and Instrumentation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    	m.RLock()
    	defer m.RUnlock()
    
    	if jobID != "" {
    		if job, ok := m.metrics[jobID]; ok {
    			metrics.Jobs[jobID] = job.metric()
    		}
    		return metrics
    	}
    
    	for id, job := range m.metrics {
    		metrics.Jobs[id] = job.metric()
    	}
    	return metrics
    }
    
    // keep job metrics for some time after the job is completed
    // in-case some one wants to look at the older results.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	if finishedCond.Type == batch.JobComplete {
    		job.Status.CompletionTime = &finishedCond.LastTransitionTime
    	}
    	return true
    }
    
    // recordJobFinished records events and the job_finished_total metric for a finished job.
    func (jm *Controller) recordJobFinished(job *batch.Job, finishedCond *batch.JobCondition) bool {
    	completionMode := getCompletionMode(job)
    	if finishedCond.Type == batch.JobComplete {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top