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>
17 lines
695 B
Text
17 lines
695 B
Text
import { TracerProvider } from '@opentelemetry/api';
|
|
import { InstrumentationBase, InstrumentationConfig, InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
|
|
export interface PrismaInstrumentationConfig {
|
|
middleware?: boolean;
|
|
ignoreSpanTypes?: (string | RegExp)[];
|
|
}
|
|
type Config = PrismaInstrumentationConfig & InstrumentationConfig;
|
|
export declare class PrismaInstrumentation extends InstrumentationBase {
|
|
private tracerProvider;
|
|
constructor(config?: Config);
|
|
setTracerProvider(tracerProvider: TracerProvider): void;
|
|
init(): InstrumentationNodeModuleDefinition[];
|
|
enable(): void;
|
|
disable(): void;
|
|
isEnabled(): boolean;
|
|
}
|
|
export {};
|