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>
26 lines
944 B
Text
26 lines
944 B
Text
import { InstrumentationBase } from '@opentelemetry/instrumentation';
|
|
import { InstrumentationConfig } from '@opentelemetry/instrumentation';
|
|
import { InstrumentationNodeModuleDefinition } from '@opentelemetry/instrumentation';
|
|
import { registerInstrumentations } from '@opentelemetry/instrumentation';
|
|
import { TracerProvider } from '@opentelemetry/api';
|
|
|
|
declare 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;
|
|
}
|
|
|
|
declare interface PrismaInstrumentationConfig {
|
|
middleware?: boolean;
|
|
ignoreSpanTypes?: (string | RegExp)[];
|
|
}
|
|
|
|
export { registerInstrumentations }
|
|
|
|
export { }
|