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>
32 lines
No EOL
1.5 KiB
Text
32 lines
No EOL
1.5 KiB
Text
/// <reference types="node" />
|
|
import { Context, HrTime, Span, Attributes } from '@opentelemetry/api';
|
|
import type * as amqp from 'amqplib';
|
|
export declare const MESSAGE_STORED_SPAN: unique symbol;
|
|
export declare const CHANNEL_SPANS_NOT_ENDED: unique symbol;
|
|
export declare const CHANNEL_CONSUME_TIMEOUT_TIMER: unique symbol;
|
|
export declare const CONNECTION_ATTRIBUTES: unique symbol;
|
|
export declare type InstrumentationPublishChannel = (amqp.Channel | amqp.ConfirmChannel) & {
|
|
connection: {
|
|
[CONNECTION_ATTRIBUTES]: Attributes;
|
|
};
|
|
};
|
|
export declare type InstrumentationConsumeChannel = amqp.Channel & {
|
|
connection: {
|
|
[CONNECTION_ATTRIBUTES]: Attributes;
|
|
};
|
|
[CHANNEL_SPANS_NOT_ENDED]?: {
|
|
msg: amqp.ConsumeMessage;
|
|
timeOfConsume: HrTime;
|
|
}[];
|
|
[CHANNEL_CONSUME_TIMEOUT_TIMER]?: NodeJS.Timeout;
|
|
};
|
|
export declare type InstrumentationMessage = amqp.Message & {
|
|
[MESSAGE_STORED_SPAN]?: Span;
|
|
};
|
|
export declare const normalizeExchange: (exchangeName: string) => string;
|
|
export declare const getConnectionAttributesFromServer: (conn: amqp.Connection['connection']) => Attributes;
|
|
export declare const getConnectionAttributesFromUrl: (url: string | amqp.Options.Connect) => Attributes;
|
|
export declare const markConfirmChannelTracing: (context: Context) => Context;
|
|
export declare const unmarkConfirmChannelTracing: (context: Context) => Context;
|
|
export declare const isConfirmChannelTracing: (context: Context) => boolean;
|
|
//# sourceMappingURL=utils.d.ts.map |