Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 532 for Cedric (0.19 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.yaml

      - containerResource:
          container: containerValue
          name: nameValue
          target:
            averageUtilization: 4
            averageValue: "0"
            type: typeValue
            value: "0"
        external:
          metric:
            name: nameValue
            selector:
              matchExpressions:
              - key: keyValue
                operator: operatorValue
                values:
                - valuesValue
              matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v1/generated.proto

    }
    
    // ExternalMetricStatus indicates the current value of a global metric
    // not associated with any Kubernetes object.
    message ExternalMetricStatus {
      // metricName is the name of a metric used for autoscaling in
      // metric system.
      optional string metricName = 1;
    
      // metricSelector is used to identify a specific time series
      // within a given metric.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v1/generated.proto

    }
    
    // ExternalMetricStatus indicates the current value of a global metric
    // not associated with any Kubernetes object.
    message ExternalMetricStatus {
      // metricName is the name of a metric used for autoscaling in
      // metric system.
      optional string metricName = 1;
    
      // metricSelector is used to identify a specific time series
      // within a given metric.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. tests/integration/telemetry/util.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // PromDiff compares a query with labels to a query of the same metric without labels, and notes the closest matching
    // metric.
    func PromDiff(t test.Failer, prom prometheus.Instance, cluster cluster.Cluster, query prometheus.Query) {
    	t.Helper()
    	unlabelled := prometheus.Query{Metric: query.Metric}
    	v, _ := prom.Query(cluster, unlabelled)
    	if v == nil {
    		t.Logf("no metrics found for %v", unlabelled)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

        matchLabels:
          app: productpage # Maps to an existing workload without conflicts in the same ns, no error
      metrics:
        - providers:
            - name: prometheus
          overrides:
            - match:
                metric: ALL_METRICS
              disabled: false
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: maps-to-nonexistent
      namespace: default
    spec:
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    	return vMetrics
    }
    
    func expectedFSStats() kubestats.FsStats {
    	metric := expectedMetrics()
    	available := uint64(metric.Available.Value())
    	capacity := uint64(metric.Capacity.Value())
    	used := uint64(metric.Used.Value())
    	inodes := uint64(metric.Inodes.Value())
    	inodesFree := uint64(metric.InodesFree.Value())
    	inodesUsed := uint64(metric.InodesUsed.Value())
    	return kubestats.FsStats{
    		AvailableBytes: &available,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/metrics/interfaces.go

    package metrics
    
    import (
    	"context"
    	"time"
    
    	autoscaling "k8s.io/api/autoscaling/v2"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/labels"
    )
    
    // PodMetric contains pod metric value (the metric values are expected to be the metric as a milli-value)
    type PodMetric struct {
    	Timestamp time.Time
    	Window    time.Duration
    	Value     int64
    }
    
    // PodMetricsInfo contains pod metrics as a map from pod names to PodMetricsInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/replica_calculator_test.go

    			t.Fatal("Metric specified as objectMetric but metric.singleObject is nil.")
    		}
    		outReplicas, outUsage, outTimestamp, err = replicaCalc.GetObjectPerPodMetricReplicas(tc.currentReplicas, tc.metric.perPodTargetUsage, tc.metric.name, testNamespace, tc.metric.singleObject, nil)
    	case externalMetric:
    		if tc.metric.selector == nil {
    			t.Fatal("Metric specified as externalMetric but metric.selector is nil.")
    		}
    		if tc.metric.targetUsage <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v1/types.go

    // ExternalMetricStatus indicates the current value of a global metric
    // not associated with any Kubernetes object.
    type ExternalMetricStatus struct {
    	// metricName is the name of a metric used for autoscaling in
    	// metric system.
    	MetricName string `json:"metricName" protobuf:"bytes,1,name=metricName"`
    
    	// metricSelector is used to identify a specific time series
    	// within a given metric.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/externalmetricstatus.go

    package v2
    
    // ExternalMetricStatusApplyConfiguration represents an declarative configuration of the ExternalMetricStatus type for use
    // with apply.
    type ExternalMetricStatusApplyConfiguration 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
    - 2.1K bytes
    - Viewed (0)
Back to top