Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 532 for Cedric (0.2 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/externalmetricsource.go

    package v2beta2
    
    // ExternalMetricSourceApplyConfiguration represents an declarative configuration of the ExternalMetricSource type for use
    // with apply.
    type ExternalMetricSourceApplyConfiguration struct {
    	Metric *MetricIdentifierApplyConfiguration `json:"metric,omitempty"`
    	Target *MetricTargetApplyConfiguration     `json:"target,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/podsmetricstatus.go

    package v2
    
    // PodsMetricStatusApplyConfiguration represents an declarative configuration of the PodsMetricStatus type for use
    // with apply.
    type PodsMetricStatusApplyConfiguration struct {
    	Metric  *MetricIdentifierApplyConfiguration  `json:"metric,omitempty"`
    	Current *MetricValueStatusApplyConfiguration `json:"current,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/podsmetricsource.go

    package v2beta2
    
    // PodsMetricSourceApplyConfiguration represents an declarative configuration of the PodsMetricSource type for use
    // with apply.
    type PodsMetricSourceApplyConfiguration struct {
    	Metric *MetricIdentifierApplyConfiguration `json:"metric,omitempty"`
    	Target *MetricTargetApplyConfiguration     `json:"target,omitempty"`
    }
    
    // PodsMetricSourceApplyConfiguration constructs an declarative configuration of the PodsMetricSource type for use with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/metrics/utilization.go

    	metricsTotal := int64(0)
    	requestsTotal := int64(0)
    	numEntries := 0
    
    	for podName, metric := range metrics {
    		request, hasRequest := requests[podName]
    		if !hasRequest {
    			// we check for missing requests elsewhere, so assuming missing requests == extraneous metrics
    			continue
    		}
    
    		metricsTotal += metric.Value
    		requestsTotal += request
    		numEntries++
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 22 08:59:02 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. pkg/test/echo/common/metrics.go

    // limitations under the License.
    
    package common
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    type EchoMetrics struct {
    	HTTPRequests monitoring.Metric
    	GrpcRequests monitoring.Metric
    	TCPRequests  monitoring.Metric
    }
    
    var (
    	PortLabel = monitoring.CreateLabel("port")
    	Metrics   = &EchoMetrics{
    		HTTPRequests: monitoring.NewSum(
    			"istio_echo_http_requests_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_metric_test.go

    						Metric: tpb.MetricSelector_ALL_METRICS,
    					},
    					Mode: tpb.WorkloadMode_SERVER,
    				},
    				Disabled: &wrappers.BoolValue{Value: true},
    			},
    			{
    				Match: &tpb.MetricSelector{
    					MetricMatch: &tpb.MetricSelector_Metric{
    						Metric: tpb.MetricSelector_REQUEST_COUNT,
    					},
    					Mode: tpb.WorkloadMode_CLIENT,
    				},
    				TagOverrides: map[string]*tpb.MetricsOverrides_TagOverride{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 03:24:36 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/stats_test.go

    			for _, metric := range metrics {
    				t.NewSubTestf(metric).Run(func(t framework.TestContext) {
    					t.Cleanup(func() {
    						if t.Failed() {
    							util.PromDump(t.Clusters().Default(), promInst, prometheus.Query{Metric: metric})
    						}
    						grpcSourceQuery := buildGRPCQuery(metric)
    						cluster := t.Clusters().Default()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/runtime/metrics/sample.go

    	_ "runtime" // depends on the runtime via a linkname'd function
    	"unsafe"
    )
    
    // Sample captures a single metric sample.
    type Sample struct {
    	// Name is the name of the metric sampled.
    	//
    	// It must correspond to a name in one of the metric descriptions
    	// returned by All.
    	Name string
    
    	// Value is the value of the metric sample.
    	Value Value
    }
    
    // Implemented in the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pkg/monitoring/gauge.go

    	// If a metric really requires `metric{} 0`, they can explicitly call .Record(0).
    	if f.currentGaugeSet == nil {
    		f.currentGaugeSet = &gaugeValues{}
    		f.attributeSets[attribute.NewSet()] = f.currentGaugeSet
    	}
    	f.currentGaugeSet.val = value
    	f.attributeSetsMutex.Unlock()
    }
    
    func (f *gauge) With(labelValues ...LabelValue) Metric {
    	attrs, set := rebuildAttributes(f.baseMetric, labelValues)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. pkg/queue/metrics.go

    		"Time taken to process an item", []float64{.01, .1, .2, .5, 1, 3, 5}, enableMetric)
    )
    
    type queueMetrics struct {
    	depth        monitoring.Metric
    	latency      monitoring.Metric
    	workDuration monitoring.Metric
    	id           string
    	clock        clock.WithTicker
    }
    
    // Gets the time since the specified start in seconds.
    func (m *queueMetrics) sinceInSeconds(start time.Time) float64 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top