Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for enable_tracing (0.22 sec)

  1. tests/integration/telemetry/tracing/zipkin/main_test.go

    		Setup(tracing.TestSetup).
    		Run()
    }
    
    func setupConfig(ctx resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfg.Values["meshConfig.enableTracing"] = "true"
    	cfg.Values["pilot.traceSampling"] = "100.0"
    	cfg.Values["global.proxy.tracer"] = "zipkin"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/types.go

    //	kind: IstioOperator
    //	spec:
    //	  profile: default
    //	  hub: gcr.io/istio-testing
    //	  tag: latest
    //	  revision: 1-8-0
    //	  meshConfig:
    //	    accessLogFile: /dev/stdout
    //	    enableTracing: true
    //	  components:
    //	    egressGateways:
    //	    - name: istio-egressgateway
    //	      enabled: true
    //
    // +kubetype-gen
    // +kubetype-gen:groupVersion=install.istio.io/v1alpha1
    // +k8s:deepcopy-gen=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 15 10:49:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/root.go

    	setFlagHelpStr = `Override an IstioOperator value, e.g. to choose a profile
    (--set profile=demo), enable or disable components (--set components.cni.enabled=true), or override Istio
    settings (--set meshConfig.enableTracing=true). See documentation for more info:` + url.IstioOperatorSpec
    	// ManifestsFlagHelpStr is the command line description for --manifests
    	ManifestsFlagHelpStr = `Specify a path to a directory of charts and profiles
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.global.localityLbSetting", "meshConfig.localityLbSetting", nil},
    		{"Values.global.policyCheckFailOpen", "meshConfig.policyCheckFailOpen", false},
    		{"Values.global.enableTracing", "meshConfig.enableTracing", false},
    		{"Values.global.proxy.accessLogFormat", "meshConfig.accessLogFormat", ""},
    		{"Values.global.proxy.accessLogFile", "meshConfig.accessLogFile", ""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    }
    
    // TODO: convert test to Telemetry API for both scenarios
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfg.ControlPlaneValues = `
    meshConfig:
      enableTracing: true
      extensionProviders:
      - name: test-otel
        opentelemetry:
          service: opentelemetry-collector.istio-system.svc.cluster.local
          port: 4317
      - name: test-otel-http
        opentelemetry:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate.go

    		// nolint: lll
    		Example: `  # Generate a default Istio installation
      istioctl manifest generate
    
      # Enable Tracing
      istioctl manifest generate --set meshConfig.enableTracing=true
    
      # Generate the demo profile
      istioctl manifest generate --set profile=demo
    
      # To override a setting that includes dots, escape them with a backslash (\).  Your shell may require enclosing quotes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. pkg/config/mesh/mesh.go

    func DefaultMeshConfig() *meshconfig.MeshConfig {
    	proxyConfig := DefaultProxyConfig()
    
    	// Defaults matching the standard install
    	// order matches the generated mesh config.
    	return &meshconfig.MeshConfig{
    		EnableTracing:               true,
    		AccessLogFile:               "",
    		AccessLogEncoding:           meshconfig.MeshConfig_TEXT,
    		AccessLogFormat:             "",
    		EnableEnvoyAccessLogService: false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. pkg/config/mesh/mesh_test.go

    	// Verify overrides
    	got, err = mesh.ApplyMeshConfigDefaults(`
    serviceSettings: 
      - settings:
          clusterLocal: true
        host:
          - "*.myns.svc.cluster.local"
    ingressClass: foo
    enableTracing: false
    trustDomainAliases: ["default", "both"]
    defaultServiceExportTo: 
    - "foo"
    outboundTrafficPolicy:
      mode: REGISTRY_ONLY
    clusterLocalNamespaces: 
    - "foons"
    defaultProviders:
      tracing: [foo]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. operator/cmd/mesh/install.go

    		Aliases: []string{"apply"},
    		// nolint: lll
    		Example: `  # Apply a default Istio installation
      istioctl install
    
      # Enable Tracing
      istioctl install --set meshConfig.enableTracing=true
    
      # Generate the demo profile and don't wait for confirmation
      istioctl install --set profile=demo --skip-confirmation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/tracing.go

    	proxyCfg := proxy.Metadata.ProxyConfigOrDefault(push.Mesh.DefaultConfig)
    	// If there is no telemetry config defined, fallback to legacy mesh config.
    	if tracing == nil {
    		meshCfg := push.Mesh
    		if !meshCfg.EnableTracing {
    			log.Debug("No valid tracing configuration found")
    			return nil
    		}
    		// use the prior configuration bits of sampling and custom tags
    		h.Tracing = &hcm.HttpConnectionManager_Tracing{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top