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>
85 lines
1.6 KiB
Text
85 lines
1.6 KiB
Text
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
const propagationContext = require('../utils/propagationContext.js');
|
|
const spanUtils = require('../utils/spanUtils.js');
|
|
|
|
/**
|
|
* A Sentry Span that is non-recording, meaning it will not be sent to Sentry.
|
|
*/
|
|
class SentryNonRecordingSpan {
|
|
|
|
constructor(spanContext = {}) {
|
|
this._traceId = spanContext.traceId || propagationContext.generateTraceId();
|
|
this._spanId = spanContext.spanId || propagationContext.generateSpanId();
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
spanContext() {
|
|
return {
|
|
spanId: this._spanId,
|
|
traceId: this._traceId,
|
|
traceFlags: spanUtils.TRACE_FLAG_NONE,
|
|
};
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
end(_timestamp) {}
|
|
|
|
/** @inheritdoc */
|
|
setAttribute(_key, _value) {
|
|
return this;
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
setAttributes(_values) {
|
|
return this;
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
setStatus(_status) {
|
|
return this;
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
updateName(_name) {
|
|
return this;
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
isRecording() {
|
|
return false;
|
|
}
|
|
|
|
/** @inheritdoc */
|
|
addEvent(
|
|
_name,
|
|
_attributesOrStartTime,
|
|
_startTime,
|
|
) {
|
|
return this;
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
addLink(_link) {
|
|
return this;
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
addLinks(_links) {
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* This should generally not be used,
|
|
* but we need it for being compliant with the OTEL Span interface.
|
|
*
|
|
* @hidden
|
|
* @internal
|
|
*/
|
|
recordException(_exception, _time) {
|
|
// noop
|
|
}
|
|
}
|
|
|
|
exports.SentryNonRecordingSpan = SentryNonRecordingSpan;
|
|
//# sourceMappingURL=sentryNonRecordingSpan.js.map
|