Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 175 for telemetry (0.63 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/validatingadmissionpolicy.yaml

        - name: isProxyConfig
          expression: "object.kind == 'ProxyConfig'"
        - name: isTelemetry
          expression: "object.kind == 'Telemetry'"
      validations:
        - expression: "!variables.isEnvoyFilter"
        - expression: "!variables.isWasmPlugin"
        - expression: "!variables.isProxyConfig"
        - expression: |
            !(
              variables.isTelemetry && (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 21:07:45 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/buildid/buildid.go

    	"strings"
    
    	"cmd/internal/buildid"
    	"cmd/internal/telemetry"
    )
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool buildid [-w] file\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    var wflag = flag.Bool("w", false, "write build ID")
    
    func main() {
    	log.SetPrefix("buildid: ")
    	log.SetFlags(0)
    	telemetry.Start()
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("buildid/invocations")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/vet/main.go

    	"golang.org/x/tools/go/analysis/passes/unreachable"
    	"golang.org/x/tools/go/analysis/passes/unsafeptr"
    	"golang.org/x/tools/go/analysis/passes/unusedresult"
    )
    
    func main() {
    	telemetry.Start()
    	objabi.AddVersionFlag()
    
    	telemetry.Inc("vet/invocations")
    	unitchecker.Main(
    		appends.Analyzer,
    		asmdecl.Analyzer,
    		assign.Analyzer,
    		atomic.Analyzer,
    		bools.Analyzer,
    		buildtag.Analyzer,
    		cgocall.Analyzer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/tool/tool.go

    				// that we're impersonating dist list if knowing that becomes important?
    				telemetry.Inc("go/subcommand:tool-dist")
    				return
    			}
    		}
    
    		telemetry.Inc("go/subcommand:tool-unknown")
    		// Emit the usual error for the missing tool.
    		_ = base.Tool(toolName)
    	} else {
    		// Increment a counter for the tool subcommand with the tool name.
    		telemetry.Inc("go/subcommand:tool-" + toolName)
    	}
    
    	if toolN {
    		cmd := toolPath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/nm/nm.go

    	return nil
    }
    
    func (nflag) String() string {
    	if *sortOrder == "address" {
    		return "true"
    	}
    	return "false"
    }
    
    func main() {
    	log.SetFlags(0)
    	telemetry.Start()
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("nm/invocations")
    	telemetry.CountFlags("nm/flag:", *flag.CommandLine)
    
    	switch *sortOrder {
    	case "address", "name", "none", "size":
    		// ok
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/telemetrystats/version_other.go

    // license that can be found in the LICENSE file.
    
    //go:build !cmd_go_bootstrap && !unix && !windows
    
    package telemetrystats
    
    import "cmd/internal/telemetry"
    
    func incrementVersionCounters() {
    	telemetry.Inc("go/platform:version-not-supported")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 356 bytes
    - Viewed (0)
  7. src/cmd/covdata/covdata.go

    	}
    
    	// Edit out command selector, then parse flags.
    	os.Args = append(os.Args[:1], os.Args[2:]...)
    	flag.Usage = func() {
    		op.Usage("")
    	}
    	flag.Parse()
    	telemetry.Inc("covdata/invocations")
    	telemetry.CountFlags("covdata/flag:", *flag.CommandLine)
    
    	// Mode-independent flag setup
    	dbgtrace(1, "starting mode-independent setup")
    	if flag.NArg() != 0 {
    		op.Usage("unknown extra arguments")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    			&telemetry.Telemetry{
    				Tracing: []*telemetry.Tracing{{
    					CustomTags: map[string]*telemetry.Tracing_CustomTag{
    						"clusterID": nil,
    					},
    				}},
    			},
    			"tag 'clusterID' may not have a nil value", "",
    		},
    		{
    			"bad metrics operation",
    			&telemetry.Telemetry{
    				Metrics: []*telemetry.Metrics{{
    					Overrides: []*telemetry.MetricsOverrides{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	// a race.
    	weekends := filepath.Join(telemetry.Default.LocalDir(), "weekends")
    	day := fmt.Sprintf("%d\n", rand.Intn(7))
    	if _, err := os.ReadFile(weekends); err != nil {
    		if err := os.MkdirAll(telemetry.Default.LocalDir(), 0777); err != nil {
    			debugPrintf("%v: could not create telemetry.LocalDir %s", err, telemetry.Default.LocalDir())
    			return 0, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/accesslog.go

    func (b *AccessLogBuilder) setTCPAccessLog(push *model.PushContext, proxy *model.Proxy, tcp *tcp.TcpProxy, class networking.ListenerClass, svc *model.Service) {
    	mesh := push.Mesh
    	cfgs := push.Telemetry.AccessLogging(push, proxy, class, svc)
    
    	if len(cfgs) == 0 {
    		// No Telemetry API configured, fall back to legacy mesh config setting
    		if mesh.AccessLogFile != "" {
    			tcp.AccessLog = append(tcp.AccessLog, b.buildFileAccessLog(mesh))
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top