Rocky_Mountain_Vending/.pnpm-store/v10/files/cd/ba3136a85a40a6a8e14f07033bc9897c177e84acecb666e29c6293250e0de7b9c8b88467e17a1d5df231ef1a7bdcf26f217203ee082e56c8c523f2e89d0abd
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

51 lines
No EOL
1.7 KiB
Text

import { InstrumentationConfig } from '@opentelemetry/instrumentation';
import { Span } from '@opentelemetry/api';
export interface MongoDBInstrumentationExecutionResponseHook {
(span: Span, responseInfo: MongoResponseHookInformation): void;
}
/**
* Function that can be used to serialize db.statement tag
* @param cmd - MongoDB command object
*
* @returns serialized string that will be used as the db.statement attribute.
*/
export declare type DbStatementSerializer = (cmd: Record<string, unknown>) => string;
export interface MongoDBInstrumentationConfig extends InstrumentationConfig {
/**
* If true, additional information about query parameters and
* results will be attached (as `attributes`) to spans representing
* database operations.
*/
enhancedDatabaseReporting?: boolean;
/**
* Hook that allows adding custom span attributes based on the data
* returned from MongoDB actions.
*
* @default undefined
*/
responseHook?: MongoDBInstrumentationExecutionResponseHook;
/**
* Custom serializer function for the db.statement tag
*/
dbStatementSerializer?: DbStatementSerializer;
/**
* Require parent to create mongodb span, default when unset is true
*/
requireParentSpan?: boolean;
}
export interface MongoResponseHookInformation {
data: CommandResult;
}
export declare type CommandResult = {
result?: unknown;
connection?: unknown;
message?: unknown;
};
export declare enum MongodbCommandType {
CREATE_INDEXES = "createIndexes",
FIND_AND_MODIFY = "findAndModify",
IS_MASTER = "isMaster",
COUNT = "count",
UNKNOWN = "unknown"
}
//# sourceMappingURL=types.d.ts.map