Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 119 for traceme (0.18 sec)

  1. releasenotes/notes/51078.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 50808
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 145 bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input/pilot_disable_tracing.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: empty
      values:
        global:
          proxy:
            tracer: none
      components:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 23 21:06:56 UTC 2021
    - 182 bytes
    - Viewed (0)
  3. pkg/config/validation/agent/validation_test.go

    					c.Tracing = &meshconfig.Tracing{
    						Tracer: &meshconfig.Tracing_Zipkin_{
    							Zipkin: &meshconfig.Tracing_Zipkin{
    								Address: "$(HOST_IP):9411",
    							},
    						},
    					}
    				},
    			),
    			isValid: true,
    		},
    		{
    			name: "zipkin config invalid",
    			in: modify(valid,
    				func(c *meshconfig.ProxyConfig) {
    					c.Tracing = &meshconfig.Tracing{
    						Tracer: &meshconfig.Tracing_Zipkin_{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation.go

    	}
    
    	if tracer := config.GetTracing().GetLightstep(); tracer != nil {
    		if err := ValidateLightstepCollector(tracer); err != nil {
    			errs = multierror.Append(errs, multierror.Prefix(err, "invalid lightstep config:"))
    		}
    	}
    
    	if tracer := config.GetTracing().GetZipkin(); tracer != nil {
    		if err := ValidateZipkinCollector(tracer); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. cmd/bucket-lifecycle.go

    			case jentry:
    				transitionLogIf(es.ctx, deleteObjectFromRemoteTier(es.ctx, v.ObjName, v.VersionID, v.TierName))
    			case freeVersionTask:
    				oi := v.ObjectInfo
    				traceFn := globalLifecycleSys.trace(oi)
    				if !oi.TransitionedObject.FreeVersion {
    					// nothing to be done
    					return
    				}
    
    				ignoreNotFoundErr := func(err error) error {
    					switch {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/tracing_opencensusagent_golden.json

                  }
                ]
              }
            ]
          }
        ]
      }
      ,
      "tracing": {
        "http": {
          "name": "envoy.tracers.opencensus",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.OpenCensusConfig",
            "ocagent_exporter_enabled": true,
            "ocagent_address": "dns://my-oca/endpoint",
            "incoming_trace_context": ["TRACE_CONTEXT"],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. releasenotes/notes/drop-legacy-istio-trace-tags.yaml

    John Howard <******@****.***> 1682564684 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 03:04:44 UTC 2023
    - 143 bytes
    - Viewed (0)
  8. src/cmd/go/internal/fsys/fsys.go

    func Trace(op, path string) {
    	if !doTrace {
    		return
    	}
    	traceMu.Lock()
    	defer traceMu.Unlock()
    	fmt.Fprintf(traceFile, "%d gofsystrace %s %s\n", os.Getpid(), op, path)
    	if pattern := gofsystracestack.Value(); pattern != "" {
    		if match, _ := pathpkg.Match(pattern, path); match {
    			traceFile.Write(debug.Stack())
    		}
    	}
    }
    
    var (
    	doTrace   bool
    	traceFile *os.File
    	traceMu   sync.Mutex
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. cmd/peer-rest-client.go

    				time.Sleep(5 * time.Second)
    			}
    		}
    	}()
    }
    
    // Trace - send http trace request to peer nodes
    func (client *peerRESTClient) Trace(ctx context.Context, traceCh chan<- []byte, traceOpts madmin.ServiceTraceOpts) {
    	go func() {
    		for {
    			// Blocks until context is canceled or an error occurs.
    			client.doTrace(ctx, traceCh, traceOpts)
    			select {
    			case <-ctx.Done():
    				return
    			default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/testprog/cpu-profile.go

    	func() {
    		// Create a region in the execution trace. Set and clear goroutine
    		// labels fully within that region, so we know that any CPU profile
    		// sample with the label must also be eligible for inclusion in the
    		// execution trace.
    		ctx := context.Background()
    		defer trace.StartRegion(ctx, "cpuHogger").End()
    		pprof.Do(ctx, pprof.Labels("tracing", "on"), func(ctx context.Context) {
    			cpuHogger(cpuHog1, &salt1, dur)
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top