Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for metric (0.18 sec)

  1. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // target specifies the target value for the given metric
      optional MetricTarget target = 2;
    
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 3;
    }
    
    // ObjectMetricStatus indicates the current value of a metric describing a
    // kubernetes object (for example, hits-per-second on an Ingress object).
    message ObjectMetricStatus {
      // metric identifies the target metric by name and selector
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      optional k8s.io.apimachinery.pkg.api.resource.Quantity targetValue = 3;
    
      // selector is the string-encoded form of a standard kubernetes label selector for the given metric
      // When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
      // When unset, just the metricName will be used to gather metrics.
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // target specifies the target value for the given metric
      optional MetricTarget target = 2;
    
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 3;
    }
    
    // ObjectMetricStatus indicates the current value of a metric describing a
    // kubernetes object (for example, hits-per-second on an Ingress object).
    message ObjectMetricStatus {
      // metric identifies the target metric by name and selector
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v1/generated.proto

      optional k8s.io.apimachinery.pkg.api.resource.Quantity targetValue = 3;
    
      // selector is the string-encoded form of a standard kubernetes label selector for the given metric.
      // When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
      // When unset, just the metricName will be used to gather metrics.
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22K bytes
    - Viewed (0)
  5. istioctl/pkg/metrics/metrics.go

    `,
    		Example: `  # Retrieve workload metrics for productpage-v1 workload
      istioctl experimental metrics productpage-v1
    
      # Retrieve workload metrics for various services with custom duration
      istioctl experimental metrics productpage-v1 -d 2m
    
      # Retrieve workload metrics for various services in the different namespaces
      istioctl experimental metrics productpage-v1.foo reviews-v1.bar ratings-v1.baz`,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  6. istioctl/pkg/validate/validate_test.go

    			valid: true,
    		},
    		{
    			name:  "appProtocol=fake",
    			in:    inValidPortNamingSvcWithAppProtocol,
    			valid: false,
    		},
    		{
    			name:  "metric labels k8s recommended",
    			in:    validK8sRecommendedLabels,
    			valid: true,
    		},
    		{
    			name:  "metric labels istio canonical",
    			in:    validIstioCanonical,
    			valid: true,
    		},
    	}
    
    	for i, c := range cases {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    minLength: 1
                                    type: string
                                  metric:
                                    description: |-
                                      One of the well-known [Istio Standard Metrics](https://istio.io/latest/docs/reference/config/metrics/).
    
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  8. istioctl/pkg/metrics/metrics_test.go

    func (client mockPromAPI) TargetsMetadata(ctx context.Context, matchTarget string, metric string, limit string) ([]promv1.MetricMetadata, error) {
    	return nil, nil
    }
    
    func (client mockPromAPI) Runtimeinfo(ctx context.Context) (promv1.RuntimeinfoResult, error) {
    	return promv1.RuntimeinfoResult{}, nil
    }
    
    func (client mockPromAPI) Metadata(ctx context.Context, metric string, limit string) (map[string][]promv1.Metadata, error) {
    	return nil, nil
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Oct 25 02:07:44 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  9. manifests/charts/istio-operator/templates/service.yaml

    kind: Service
    metadata:
      namespace: {{.Release.Namespace}}
      labels:
        name: istio-operator
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    spec:
      ports:
      - name: http-metrics
        port: 8383
        targetPort: 8383
        protocol: TCP
      selector:
        name: istio-operator
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jul 28 18:55:36 GMT 2021
    - 337 bytes
    - Viewed (0)
  10. manifests/charts/gateway/templates/hpa.yaml

        apiVersion: apps/v1
        kind: {{ .Values.kind | default "Deployment" }}
        name: {{ include "gateway.name" . }}
      minReplicas: {{ .Values.autoscaling.minReplicas }}
      maxReplicas: {{ .Values.autoscaling.maxReplicas }}
      metrics:
        {{- if .Values.autoscaling.targetCPUUtilizationPercentage }}
        - type: Resource
          resource:
            name: cpu
            target:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Feb 18 05:44:12 GMT 2024
    - 1.3K bytes
    - Viewed (0)
Back to top