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