Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 389 for telemetry (0.15 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    	"os"
    	"os/exec"
    	"path/filepath"
    
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    const (
    	ModulePath     = "golang.org/x/telemetry/config"
    	configFileName = "config.json"
    )
    
    // needNoConsole is used on windows to set the windows.CREATE_NO_WINDOW
    // creation flag.
    var needNoConsole = func(cmd *exec.Cmd) {}
    
    // Download fetches the requested telemetry UploadConfig using "go mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/telemetry/selector.go

    	return analysis.Metadata{
    		Name: "telemetry.SelectorAnalyzer",
    		Description: "Validates that telemetries that define a selector " +
    			"match at least one pod, and that there aren't multiple telemetry resources that select overlapping pods",
    		Inputs: []config.GroupVersionKind{
    			gvk.Telemetry,
    			gvk.Pod,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (a *SelectorAnalyzer) Analyze(c analysis.Context) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_test.go

    	}{
    		{
    			name: "empty telemetry configuration",
    			args: args{
    				ct:   &computedTelemetries{},
    				tel:  Telemetry{},
    				spec: &tpb.Telemetry{},
    			},
    			want: &computedTelemetries{},
    		},
    		{
    			name: "targetRef is defined, telemetry configurations are added to empty computed telemetries",
    			args: args{
    				ct: &computedTelemetries{},
    				tel: Telemetry{
    					Name:      "my-telemetry",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/telemetrystats/version_unix.go

    	if runtime.GOOS == "aix" {
    		major, minor, ok = convert(v.Version[:]), convert(v.Release[:]), true
    	}
    	if !ok {
    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-bad-format", runtime.GOOS))
    		return
    	}
    	telemetry.Inc(fmt.Sprintf("go/platform/host/%s/major-version:%s", runtime.GOOS, major))
    	telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:%s-%s", runtime.GOOS, major, minor))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:44:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/k8sgateway-selector.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: telemetry-ineffective
      namespace: default
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: bookinfo-gateway
    ---
    # has targetRef set, should be effective
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: telemetry-effective
      namespace: default
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 01:19:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/accesslog_test.go

    					},
    				},
    			},
    		},
    		{
    			name: "without-telemetry",
    			push: env.PushContext(),
    			proxy: &model.Proxy{
    				ConfigNamespace: "default",
    				Labels:          map[string]string{"app": "without-telemetry"},
    				Metadata:        &model.NodeMetadata{Labels: map[string]string{"app": "without-telemetry"}},
    			},
    			tcp:   &tcp.TcpProxy{},
    			class: networking.ListenerClassSidecarInbound,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/counter/countertest/countertest.go

    package countertest
    
    import (
    	"sync"
    
    	"golang.org/x/telemetry/counter"
    	ic "golang.org/x/telemetry/internal/counter"
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    var (
    	openedMu sync.Mutex
    	opened   bool
    )
    
    // SupportedPlatform reports if this platform supports Open()
    const SupportedPlatform = !telemetry.DisabledOnPlatform
    
    func isOpen() bool {
    	openedMu.Lock()
    	defer openedMu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.txt

    ECDS NAME                                                     TYPE
    istio.io/telemetry/stats/prometheus/sidecar/Inbound/HTTP      
    istio.io/telemetry/stats/prometheus/sidecar/Inbound/TCP       
    istio.io/telemetry/stats/prometheus/sidecar/Outbound/HTTP     
    istio.io/telemetry/stats/prometheus/sidecar/Outbound/TCP      
    default.display-metadata                                      envoy.extensions.filters.http.wasm.v3.Wasm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 528 bytes
    - Viewed (0)
  9. pkg/config/schema/collections/collections.agent.gen.go

    		ValidateProto: validation.ValidateSidecar,
    	}.MustBuild()
    
    	Telemetry = resource.Builder{
    		Identifier: "Telemetry",
    		Group:      "telemetry.istio.io",
    		Kind:       "Telemetry",
    		Plural:     "telemetries",
    		Version:    "v1alpha1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.telemetry.v1alpha1.Telemetry", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. releasenotes/notes/drop-default-tracing.yaml

          If you previously had tracing enabled implicitly, you can enable it by doing one of:
          * Installing with `--set compatibilityVersion=1.21`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
Back to top