Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 301 for span1 (0.18 sec)

  1. pkg/test/framework/components/zipkin/kube.go

    			scopes.Framework.Debugf("cannot parse or cannot find spans in trace object %+v", t)
    			continue
    		}
    		var spans []Span
    		for _, obj := range spanObjs {
    			newSpan := buildSpan(obj)
    			spans = append(spans, newSpan)
    		}
    		for p := range spans {
    			for c := range spans {
    				if spans[c].ParentSpanID == spans[p].SpanID {
    					spans[p].ChildSpans = append(spans[p].ChildSpans, &spans[c])
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/zipkin/zipkin.go

    // TODO(bianpengyuan) consider using zipkin proto api https://github.com/istio/istio/issues/13926
    type Span struct {
    	SpanID       string
    	ParentSpanID string
    	ServiceName  string
    	Name         string
    	ChildSpans   []*Span
    }
    
    // Trace represents a trace by a collection of spans which all belong to that trace
    type Trace struct {
    	Spans []Span
    }
    
    // New returns a new instance of zipkin.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 23 01:09:12 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. releasenotes/notes/tracing-canonical-service.yaml

    issue:
      - 28801
    
    releaseNotes:
    - |
      **Added** canonical service tags to Envoy-generated trace spans.
    upgradeNotes:
      - title: Service Tags added to trace spans
        content: |
          Istio now configures Envoy to include tags identifying the canonical service for a workload in generated trace spans.
    
          This will lead to a small increase in storage per span for tracing backends.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 582 bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/StyledTextOutputEventSerializer.java

            OperationIdentifier buildOperationId = decoder.readBoolean() ? new OperationIdentifier(decoder.readSmallLong()) : null;
            List<StyledTextOutputEvent.Span> spans = spanSerializer.read(decoder);
            return new StyledTextOutputEvent(timestamp, category, logLevel, buildOperationId, spans);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/StyledLabel.java

    import java.util.List;
    
    /**
     * A label where its text can be styled.
     */
    public interface StyledLabel extends Label {
        void setText(List<StyledTextOutputEvent.Span> spans);
        void setText(StyledTextOutputEvent.Span span);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 958 bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ProgressLogEventGenerator.java

            }
    
            private StyledTextOutputEvent styledTextEvent(long timestamp, StyledTextOutputEvent.Span... spans) {
                return new StyledTextOutputEvent(timestamp, category, LogLevel.LIFECYCLE, buildOperationIdentifier, Arrays.asList(spans));
            }
    
            private void doOutput(RenderableOutputEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/runtime/traceallocfree.go

    		throw("traceSnapshotMemory: tracing is not enabled")
    	}
    
    	// Write out all the heap spans and heap objects.
    	for _, s := range mheap_.allspans {
    		if s.state.get() == mSpanDead {
    			continue
    		}
    		// It's some kind of span, so trace that it exists.
    		trace.SpanExists(s)
    
    		// Write out allocated objects if it's a heap span.
    		if s.state.get() != mSpanInUse {
    			continue
    		}
    
    		// Find all allocated objects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/MultiInputStreamTest.java

        assertEquals(150, result.length);
      }
    
      private void joinHelper(Integer... spans) throws Exception {
        List<ByteSource> sources = Lists.newArrayList();
        int start = 0;
        for (Integer span : spans) {
          sources.add(newByteSource(start, span));
          start += span;
        }
        ByteSource joined = ByteSource.concat(sources);
        assertTrue(newByteSource(0, start).contentEquals(joined));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/resources/org/gradle/reporting/report.js

        }
    
        function findCodeBlocks() {
            var spans = document.getElementById("tabs").getElementsByTagName("span");
            var codeBlocks = [];
            for (var i = 0; i < spans.length; ++i) {
                if (spans[i].className.indexOf("code") >= 0) {
                    codeBlocks.push(spans[i]);
                }
            }
            return codeBlocks;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 24 16:08:08 UTC 2014
    - 5.1K bytes
    - Viewed (0)
  10. tests/integration/telemetry/tracing/zipkin/server_tracing_test.go

    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    // TestServerTracing exercises the trace generation features of Istio, based on the Envoy Trace driver for zipkin.
    // The test verifies that all expected spans (a client span and a server span for each service call in the sample bookinfo app)
    // are generated and that they are all a part of the same distributed trace with correct hierarchy and name.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top