Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for Lightstep (0.25 sec)

  1. pkg/config/analysis/analyzers/telemetry/lightstep.go

    // Metadata implements Analyzer
    func (a *LightstepAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "telemetry.LightstepAnalyzer",
    		Description: "Validates that lightstep provider is still used",
    		Inputs: []config.GroupVersionKind{
    			gvk.Telemetry,
    			gvk.MeshConfig,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (a *LightstepAnalyzer) Analyze(c analysis.Context) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 27 17:23:16 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/telemetry-lightstep.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      tracing:
        - providers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 20 14:36:43 UTC 2023
    - 173 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/telemetry-lightstep-meshconfig.yaml

    extensionProviders:
      - name: lightstep
        lightstep:
          service: lightstep.monitoring.svc.cluster.local
          port: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 20 14:36:43 UTC 2023
    - 157 bytes
    - Viewed (0)
  4. pkg/bootstrap/testdata/tracing_lightstep.proxycfg

    service_cluster:           "istio-proxy"
    drain_duration:            {seconds: 2}
    discovery_address:         "istio-pilot:15010"
    proxy_admin_port:          15000
    control_plane_auth_policy: NONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 403 bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/tracing_lightstep_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. pkg/bootstrap/option/instances_test.go

    		},
    
    		{
    			testName: "lightstep address empty",
    			key:      "lightstep",
    			option:   option.LightstepAddress(""),
    			expected: nil,
    		},
    		{
    			testName: "lightstep address ipv4",
    			key:      "lightstep",
    			option:   option.LightstepAddress("127.0.0.1:80"),
    			expected: "{\"address\": \"127.0.0.1\", \"port_value\": 80}",
    		},
    		{
    			testName: "lightstep address ipv6",
    			key:      "lightstep",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/validation_test.go

    					c.Tracing = &meshconfig.Tracing{
    						Tracer: &meshconfig.Tracing_Lightstep_{
    							Lightstep: &meshconfig.Tracing_Lightstep{
    								Address:     "collector.lightstep:8080",
    								AccessToken: "",
    							},
    						},
    					}
    				},
    			),
    			isValid: false,
    		},
    		{
    			name: "lightstep access token empty but lightstep address is not",
    			in: modify(valid,
    				func(c *meshconfig.ProxyConfig) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

          tracing:
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            lightstep:
              # Address of the LightStep Satellite pool
              address: {{ .Values.global.tracer.lightstep.address }}
              # Access Token used to communicate with the Satellite pool
              accessToken: {{ .Values.global.tracer.lightstep.accessToken }}
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            zipkin:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/configmap.yaml

          tracing:
          {{- if eq .Values.global.proxy.tracer "lightstep" }}
            lightstep:
              # Address of the LightStep Satellite pool
              address: {{ .Values.global.tracer.lightstep.address }}
              # Access Token used to communicate with the Satellite pool
              accessToken: {{ .Values.global.tracer.lightstep.accessToken }}
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            zipkin:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. operator/pkg/util/testdata/overlay-iop.yaml

            path: /dev/stdout
        - name: envoyExtAuthzHttp
          envoyExtAuthzHttp:
        - name: envoyExtAuthzGrpc
          envoyExtAuthzGrpc:
        - name: zipkin
          zipkin:
        - name: lightstep
          lightstep:
        - name: datadog
          datadog:
        - name: opencensus
          opencensus:
        - name: skywalking
          skywalking:
        - name: envoyHttpAls
          envoyHttpAls:
        - name: envoyTcpAls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top