Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
No EOL
408 B
Text
8 lines
No EOL
408 B
Text
import { InstrumentationConfig } from '@opentelemetry/instrumentation';
|
|
export interface KnexInstrumentationConfig extends InstrumentationConfig {
|
|
/** max query length in db.statement attribute ".." is added to the end when query is truncated */
|
|
maxQueryLength?: number;
|
|
/** only create spans if part of an existing trace */
|
|
requireParentSpan?: boolean;
|
|
}
|
|
//# sourceMappingURL=types.d.ts.map |