Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 690 for traces (0.13 sec)

  1. releasenotes/notes/drop-default-tracing.yaml

    upgradeNotes:
      - title: Default tracing to `zipkin.istio-system.svc` removed
        content: |
          In previous versions of Istio, tracing was automatically configured to send traces to `zipkin.istio-system.svc`.
          This default setting has been removed; users will need to explicitly configure where to send traces moving forward.
    
          `istioctl x precheck --from-version=1.21` can automatically detect if you may be impacted by this change.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
  2. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    						if err != nil {
    							return fmt.Errorf("cannot get traces from zipkin: %v", err)
    						}
    						if !tracing.VerifyEchoTraces(ctx, appNsInst.Name(), cluster.Name(), traces) {
    							return errors.New("cannot find expected traces")
    						}
    						return nil
    					}, retry.Delay(3*time.Second), retry.Timeout(80*time.Second))
    				})
    
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. samples/open-telemetry/tracing/README.md

    ```yaml
    spec:
      ports:
        - name: grpc-otlp
          port: 4317
          protocol: TCP
          targetPort: 4317
    ```
    
    Otherwise the traces may not be reported.
    
    ## Update mesh config
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	Admission                  *AdmissionOptions
    	// API Server Egress Selector is used to control outbound traffic from the API Server
    	EgressSelector *EgressSelectorOptions
    	// Traces contains options to control distributed request tracing.
    	Traces *TracingOptions
    }
    
    func NewRecommendedOptions(prefix string, codec runtime.Codec) *RecommendedOptions {
    	sso := NewSecureServingOptions()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/internal/trace/version/version.go

    const headerFmt = "go 1.%d trace\x00\x00\x00"
    
    // ReadHeader reads the version of the trace out of the trace file's
    // header, whose prefix must be present in v.
    func ReadHeader(r io.Reader) (Version, error) {
    	var v Version
    	_, err := fmt.Fscanf(r, headerFmt, &v)
    	if err != nil {
    		return v, fmt.Errorf("bad file format: not a Go execution trace?")
    	}
    	if !v.Valid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/runtime/runtime.cc

      // Initialize concrete function traces.
      const RepeatedPtrField<FunctionDef> function_defs =
          tf_package->GetFunctionDefs();
      absl::flat_hash_map<std::string, AbstractFunctionPtr> traces;
      for (auto& fdef : function_defs) {
        AbstractFunctionPtr trace(new GraphFunction(fdef), /*add_ref=*/false);
        traces[fdef.signature().name()] = trace;
      }
    
      // Setup polymorphic functions and wrap in Callables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. pkg/tracing/tracing.go

    const (
    	// instrumentationScope is the name of OpenTelemetry instrumentation scope
    	instrumentationScope = "istio.io/istio"
    )
    
    func tracer() traceapi.Tracer {
    	return otel.Tracer(instrumentationScope)
    }
    
    // Initialize starts the tracing provider. This must be called before any traces are created or traces will be discarded.
    // Returned is a shutdown function that should be called to ensure graceful shutdown.
    func Initialize() (func(), error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/internal/trace/raw/doc.go

    It can interpret and emit execution traces in its wire format as well as a
    bespoke but simple text format.
    
    The readers and writers in this package perform no validation on or ordering of
    the input, and so are generally unsuitable for analysis. However, they're very
    useful for testing and debugging the tracer in the runtime and more sophisticated
    trace parsers.
    
    # Text format specification
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/trace/main.go

    	"cmd/internal/telemetry"
    	"flag"
    	"fmt"
    	"internal/trace"
    	"internal/trace/raw"
    	"internal/trace/traceviewer"
    	"io"
    	"log"
    	"net"
    	"net/http"
    	_ "net/http/pprof" // Required to use pprof
    	"os"
    	"sync/atomic"
    	"time"
    )
    
    const usageMessage = "" +
    	`Usage of 'go tool trace':
    Given a trace file produced by 'go test':
    	go test -trace=trace.out pkg
    
    Open a web browser displaying trace:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/internal/trace/internal/testgen/go122/trace.go

    	"os"
    	"regexp"
    	"strings"
    
    	"internal/trace"
    	"internal/trace/event"
    	"internal/trace/event/go122"
    	"internal/trace/raw"
    	"internal/trace/version"
    	"internal/txtar"
    )
    
    func Main(f func(*Trace)) {
    	// Create an output file.
    	out, err := os.Create(os.Args[1])
    	if err != nil {
    		panic(err.Error())
    	}
    	defer out.Close()
    
    	// Create a new trace.
    	trace := NewTrace()
    
    	// Call the generator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top