Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 389 for telemetrypb (0.17 sec)

  1. pilot/pkg/networking/core/tracing.go

    func buildCustomTagsFromProvider(providerTags map[string]*telemetrypb.Tracing_CustomTag) []*tracing.CustomTag {
    	var tags []*tracing.CustomTag
    	for tagName, tagInfo := range providerTags {
    		if tagInfo == nil {
    			log.Warnf("while building custom tags from provider, encountered nil custom tag: %s, skipping", tagName)
    			continue
    		}
    		switch tag := tagInfo.Type.(type) {
    		case *telemetrypb.Tracing_CustomTag_Environment:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. pkg/test/datasets/validation/dataset/telemetry-v1-Telemetry.yaml

    apiVersion: telemetry.istio.io/v1
    kind: Telemetry
    metadata:
      name: valid
    spec:
      tracing:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 19:16:23 UTC 2024
    - 127 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/telemetry.txt

    [GOOS:plan9] env userconfig=$home/lib
    
    go telemetry
    stdout 'local'
    
    go telemetry off
    go telemetry
    stdout 'off'
    go env GOTELEMETRY
    stdout 'off'
    
    go telemetry local
    go telemetry
    stdout 'local'
    go env GOTELEMETRY
    stdout 'local'
    
    go telemetry on
    go telemetry
    stdout 'on'
    go env GOTELEMETRY
    stdout 'on'
    
    go env
    stdout 'GOTELEMETRY=''?on''?'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. pkg/test/datasets/validation/dataset/telemetry-v1alpha1-Telemetry.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: valid
    spec:
      tracing:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 133 bytes
    - Viewed (0)
  5. src/cmd/internal/telemetry/telemetry.go

    //go:build !cmd_go_bootstrap && !compiler_bootstrap
    
    // Package telemetry is a shim package around the golang.org/x/telemetry
    // and golang.org/x/telemetry/counter packages that has code build tagged
    // out for cmd_go_bootstrap so that the bootstrap Go command does not
    // depend on net (which is a dependency of golang.org/x/telemetry/counter
    // on Windows).
    package telemetry
    
    import (
    	"flag"
    	"os"
    
    	"golang.org/x/telemetry"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/benchmarks/telemetry-api.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: telemetry
      namespace: istio-system
    spec:
      metrics:
      - providers:
        - name: prometheus
      accessLogging:
      - providers:
          - name: envoy-json
    ---
    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 15:27:21 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/telemetrycmd/telemetry.go

    // Package telemetrycmd implements the "go telemetry" command.
    package telemetrycmd
    
    import (
    	"context"
    	"fmt"
    	"os"
    
    	"cmd/go/internal/base"
    	"cmd/internal/telemetry"
    )
    
    var CmdTelemetry = &base.Command{
    	UsageLine: "go telemetry [off|local|on]",
    	Short:     "manage telemetry data and settings",
    	Long: `Telemetry is used to manage Go telemetry data and settings.
    
    Telemetry can be in one of three modes: off, local, or on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. pkg/test/framework/telemetry.go

    	UseRealStackdriver bool
    )
    
    func init() {
    	flag.DurationVar(&TelemetryRetryDelay, "istio.test.telemetry.retryDelay", time.Second*2, "Default retry delay used in tests")
    	flag.DurationVar(&TelemetryRetryTimeout, "istio.test.telemetry.retryTimeout", time.Second*80, "Default retry timeout used in tests")
    	flag.BoolVar(&UseRealStackdriver, "istio.test.telemetry.useRealStackdriver", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 07 19:57:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. pilot/pkg/features/telemetry.go

    		"If true, pilot will add telemetry related metadata to cluster and endpoint resources, which will be consumed by telemetry filter.",
    	).Get()
    
    	EndpointTelemetryLabel = env.Register("PILOT_ENDPOINT_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to Endpoint resource, which will be consumed by telemetry filter.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/telemetry.go

    					},
    					Logging: telemetry.Spec.GetAccessLogging(),
    				})
    			}
    			ts = append(ts, telemetry.Spec.GetTracing()...)
    		}
    	}
    
    	if namespace != t.RootNamespace {
    		telemetry := t.namespaceWideTelemetryConfig(namespace)
    		if telemetry != (Telemetry{}) {
    			key.Namespace = types.NamespacedName{Name: telemetry.Name, Namespace: telemetry.Namespace}
    			ms = append(ms, telemetry.Spec.GetMetrics()...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top