Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
10 lines
475 B
Plaintext
10 lines
475 B
Plaintext
import { InstrumentationConfig } from '@opentelemetry/instrumentation';
|
|
export interface TediousInstrumentationConfig extends InstrumentationConfig {
|
|
/**
|
|
* If true, injects the current DB span's W3C traceparent into SQL Server
|
|
* session state via `SET CONTEXT_INFO @opentelemetry_traceparent` (varbinary).
|
|
* Off by default to avoid the extra round-trip per request.
|
|
*/
|
|
enableTraceContextPropagation?: boolean;
|
|
}
|
|
//# sourceMappingURL=types.d.ts.map |