next.js/test/e2e/app-dir/otel-parent-span-propagation/constants.ts
constants.ts15 lines272 B
import { SpanKind } from '@opentelemetry/api'

export type SavedSpan = {
  runtime?: string
  traceId?: string
  parentId?: string
  name?: string
  id?: string
  kind?: SpanKind
  timestamp?: number
  duration?: number
  attributes?: Record<string, any>
  status?: any
}
Quest for Codev2.0.0
/
SIGN IN