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>
20 lines
No EOL
750 B
Text
20 lines
No EOL
750 B
Text
import { AmqplibInstrumentation } from '@opentelemetry/instrumentation-amqplib';
|
|
export declare const instrumentAmqplib: ((options?: unknown) => AmqplibInstrumentation) & {
|
|
id: string;
|
|
};
|
|
/**
|
|
* Adds Sentry tracing instrumentation for the [amqplib](https://www.npmjs.com/package/amqplib) library.
|
|
*
|
|
* For more information, see the [`amqplibIntegration` documentation](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/amqplib/).
|
|
*
|
|
* @example
|
|
* ```javascript
|
|
* const Sentry = require('@sentry/node');
|
|
*
|
|
* Sentry.init({
|
|
* integrations: [Sentry.amqplibIntegration()],
|
|
* });
|
|
* ```
|
|
*/
|
|
export declare const amqplibIntegration: () => import("@sentry/core").Integration;
|
|
//# sourceMappingURL=amqplib.d.ts.map |