/usr/share/grafana/public/app/features/explore/TraceView/components/CriticalPath/testCases
// Copyright (c) 2023 The Jaeger Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. /* ┌──────────────────────────────────────┐ | │ Span C │ | └──┬──────────▲─────────┬──────────▲───┘ | span C +++│ │+++++++++│ │++++ | / \ │ │ │ │ | / \ ▼──────────┤ ▼──────────┤ | span D span E │ Span D │ │ Span E │ | └──────────┘ └──────────┘ | (parent-child tree) +++++++++++ ++++++++++++ | Here +++++ are critical path sections */ import transformTraceData from '../../model/transform-trace-data'; import { Trace, TraceResponse } from '../../types/trace'; const testTrace: TraceResponse = { traceID: 'test1-trace', spans: [ { traceID: 'test1-trace', spanID: 'span-E', operationName: 'operation E', references: [ { refType: 'CHILD_OF', spanID: 'span-C', traceID: 'test1-trace', }, ], startTime: 50, duration: 10, processID: 'p1', logs: [], flags: 0, }, { traceID: 'test1-trace', spanID: 'span-C', operationName: 'operation C', references: [], startTime: 1, duration: 100, processID: 'p1', logs: [], flags: 0, }, { traceID: 'test1-trace', spanID: 'span-D', operationName: 'operation D', references: [ { refType: 'CHILD_OF', spanID: 'span-C', traceID: 'test1-trace', }, ], startTime: 20, duration: 20, processID: 'p1', logs: [], flags: 0, }, ], processes: { p1: { serviceName: 'customers-service', tags: [], }, }, }; const transformedTrace: Trace = transformTraceData(testTrace)!; const criticalPathSections = [ { spanId: 'span-C', section_start: 60, section_end: 101, }, { spanId: 'span-E', section_start: 50, section_end: 60, }, { spanId: 'span-C', section_start: 40, section_end: 50, }, { spanId: 'span-D', section_start: 20, section_end: 40, }, { spanId: 'span-C', section_start: 1, section_end: 20, }, ]; const test1 = { criticalPathSections, trace: transformedTrace, }; export default test1;
.
Edit
..
Edit
test1.ts
Edit
test2.ts
Edit
test3.ts
Edit
test4.ts
Edit
test5.ts
Edit
test6.ts
Edit
test7.ts
Edit
test8.ts
Edit
test9.ts
Edit