(a, b *tempopb.Trace)
| 774 | } |
| 775 | |
| 776 | func equalTraces(a, b *tempopb.Trace) bool { |
| 777 | trace.SortTraceAndAttributes(a) |
| 778 | trace.SortTraceAndAttributes(b) |
| 779 | |
| 780 | return reflect.DeepEqual(a, b) |
| 781 | } |
| 782 | |
| 783 | func hasMissingSpans(t *tempopb.Trace) bool { |
| 784 | // check that all parent spans exist in the trace |