Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for telemetry (0.19 sec)

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

    		},
    		{
    			name:            "no telemetry api and nil custom tag",
    			opts:            fakeOptsNoTelemetryAPIWithNilCustomTag(),
    			want:            fakeTracingConfigNoProvider(55.55, 13, defaultTracingTags()),
    			wantReqIDExtCtx: nil,
    		},
    		{
    			name:            "only telemetry api (no provider)",
    			inSpec:          fakeTracingSpecNoProvider(99.999, false, true),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

      // CanonicalName for the workload. Used for telemetry.
      string canonical_name = 10;
      // CanonicalRevision for the workload. Used for telemetry.
      string canonical_revision = 11;
      // WorkloadType represents the type of the workload. Used for telemetry.
      WorkloadType workload_type = 12;
      // WorkloadName represents the name for the workload (of type WorkloadType). Used for telemetry.
      string workload_name = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter.go

    	istioroute "istio.io/istio/pilot/pkg/networking/core/route"
    	"istio.io/istio/pilot/pkg/networking/core/tunnelingconfig"
    	"istio.io/istio/pilot/pkg/networking/plugin/authz"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/protocol"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/doc/main.go

    	flagSet.BoolVar(&showSrc, "src", false, "show source code for symbol")
    	flagSet.BoolVar(&short, "short", false, "one-line representation for each symbol")
    	flagSet.Parse(args)
    	telemetry.Inc("doc/invocations")
    	telemetry.CountFlags("doc/flag:", *flag.CommandLine)
    	if chdir != "" {
    		if err := os.Chdir(chdir); err != nil {
    			return err
    		}
    	}
    	var paths []string
    	var symbol, method string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	"istio.io/istio/pilot/pkg/networking/util"
    	networkutil "istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

          type: string
        - name: minimumVersion
          type: string
    
      - name: "InvalidTelemetryProvider"
        code: IST0157
        level: Warning
        description: "The Telemetry with empty providers will be ignored"
        template: "The Telemetry %v in namespace %q with empty providers will be ignored."
        args:
        - name: name
          type: string
        - name: namespace
          type: string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/main.go

    // Main is the main entry point for the linker code.
    func Main(arch *sys.Arch, theArch Arch) {
    	log.SetPrefix("link: ")
    	log.SetFlags(0)
    	telemetry.Start()
    	telemetry.Inc("link/invocations")
    
    	thearch = theArch
    	ctxt := linknew(arch)
    	ctxt.Bso = bufio.NewWriter(os.Stdout)
    
    	// For testing behavior of go command when tools crash silently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt.go

    	// so that it can use defer and have them
    	// run before the exit.
    	gofmtMain(s)
    	os.Exit(s.GetExitCode())
    }
    
    func gofmtMain(s *sequencer) {
    	telemetry.Start()
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("gofmt/invocations")
    	telemetry.CountFlags("gofmt/flag:", *flag.CommandLine)
    
    	if *cpuprofile != "" {
    		fdSem <- true
    		f, err := os.Create(*cpuprofile)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tracing.go

    	xdstype "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    	"google.golang.org/protobuf/types/known/anypb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	telemetrypb "istio.io/api/telemetry/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking"
    	authz_model "istio.io/istio/pilot/pkg/security/authz/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pkg/config/schema/kubeclient/resources.gen.go

    	case gvr.TCPRoute:
    		return &sigsk8siogatewayapiapisv1alpha2.TCPRoute{}
    	case gvr.TLSRoute:
    		return &sigsk8siogatewayapiapisv1alpha2.TLSRoute{}
    	case gvr.Telemetry:
    		return &apiistioioapitelemetryv1alpha1.Telemetry{}
    	case gvr.UDPRoute:
    		return &sigsk8siogatewayapiapisv1alpha2.UDPRoute{}
    	case gvr.ValidatingWebhookConfiguration:
    		return &k8sioapiadmissionregistrationv1.ValidatingWebhookConfiguration{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top