Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for telemetry (0.2 sec)

  1. pkg/config/schema/kubeclient/resources.gen.go

    	case gvr.TCPRoute:
    		return &sigsk8siogatewayapiapisv1alpha2.TCPRoute{}
    	case gvr.TLSRoute:
    		return &sigsk8siogatewayapiapisv1alpha2.TLSRoute{}
    	case gvr.Telemetry:
    		return &apiistioioapitelemetryv1alpha1.Telemetry{}
    	case gvr.UDPRoute:
    		return &sigsk8siogatewayapiapisv1alpha2.UDPRoute{}
    	case gvr.ValidatingWebhookConfiguration:
    		return &k8sioapiadmissionregistrationv1.ValidatingWebhookConfiguration{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    			},
    		}
    	}
    
    	// Add compressed telemetry metadata. Note this is a short term solution to make server workload metadata
    	// available at client sidecar, so that telemetry filter could use for metric labels. This is useful for two cases:
    	// server does not have sidecar injected, and request fails to reach server and thus metadata exchange does not happen.
    	// Due to performance concern, telemetry metadata is compressed into a semicolon separated string:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. tests/integration/helm/util.go

                idle_timeout: 30s
    `
    
    	extendedTelemetry = `
    apiVersion: telemetry.istio.io/v1
    kind: Telemetry
    metadata:
      name: sample
    spec:
      metrics:
        - providers:
          - name: prometheus
          reportingInterval: 10s
    `
    
    	revisionedExtendedTelemetry = `
    apiVersion: telemetry.istio.io/v1
    kind: Telemetry
    metadata:
      name: sample
      labels:
        istio.io/rev: %s
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/tls.go

    package core
    
    import (
    	"sort"
    	"strings"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/tunnelingconfig"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/service.go

    	// TLSMode endpoint is injected with istio sidecar and ready to configure Istio mTLS
    	TLSMode string
    
    	// Namespace that this endpoint belongs to. This is for telemetry purpose.
    	Namespace string
    
    	// Name of the workload that this endpoint belongs to. This is for telemetry purpose.
    	WorkloadName string
    
    	// Specifies the hostname of the Pod, empty for vm workload.
    	HostName string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. tests/integration/telemetry/policy/helper_test.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/components/prometheus"
    	"istio.io/istio/pkg/test/util/tmpl"
    	util "istio.io/istio/tests/integration/telemetry"
    )
    
    const (
    	// ServiceEntry is used to create conflicts on various ports
    	// As defined below, the tcp-conflict and https-conflict ports are 9443 and 9091
    	ServiceEntry = `
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/stats_test.go

    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/pkg/test/util/retry"
    	util "istio.io/istio/tests/integration/telemetry"
    )
    
    var PeerAuthenticationConfig = `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      mtls:
        mode: STRICT
    `
    
    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. operator/pkg/util/merge_iop.go

    	Global                 *v1alpha12.GlobalConfig          `json:"global" patchStrategy:"merge"`
    	Pilot                  *v1alpha12.PilotConfig           `json:"pilot" patchStrategy:"merge"`
    	Telemetry              *telemetryConfig                 `json:"telemetry" patchStrategy:"merge"`
    	SidecarInjectorWebhook *v1alpha12.SidecarInjectorConfig `json:"sidecarInjectorWebhook" patchStrategy:"merge"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    			c.releaseLock(state)
    			return
    		}
    	}
    }
    
    // Read reads the given counter.
    // This is the implementation of x/telemetry/counter/countertest.ReadCounter.
    func Read(c *Counter) (uint64, error) {
    	if c.file.current.Load() == nil {
    		return c.state.load().extra(), nil
    	}
    	pf, err := readFile(c.file)
    	if err != nil {
    		return 0, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOVCS", Value: cfg.GOVCS},
    		{Name: "GOVERSION", Value: runtime.Version()},
    		{Name: "GODEBUG", Value: os.Getenv("GODEBUG")},
    		{Name: "GOTELEMETRY", Value: telemetry.Mode()},
    		{Name: "GOTELEMETRYDIR", Value: telemetry.Dir()},
    	}
    
    	for i := range env {
    		switch env[i].Name {
    		case "GO111MODULE":
    			if env[i].Value != "on" && env[i].Value != "" {
    				env[i].Changed = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top