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>
100 lines
4.3 KiB
Text
100 lines
4.3 KiB
Text
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
/**
|
|
* Use this attribute to represent the source of a span.
|
|
* Should be one of: custom, url, route, view, component, task, unknown
|
|
*
|
|
*/
|
|
const SEMANTIC_ATTRIBUTE_SENTRY_SOURCE = 'sentry.source';
|
|
|
|
/**
|
|
* Attributes that holds the sample rate that was locally applied to a span.
|
|
* If this attribute is not defined, it means that the span inherited a sampling decision.
|
|
*
|
|
* NOTE: Is only defined on root spans.
|
|
*/
|
|
const SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE = 'sentry.sample_rate';
|
|
|
|
/**
|
|
* Attribute holding the sample rate of the previous trace.
|
|
* This is used to sample consistently across subsequent traces in the browser SDK.
|
|
*
|
|
* Note: Only defined on root spans, if opted into consistent sampling
|
|
*/
|
|
const SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE = 'sentry.previous_trace_sample_rate';
|
|
|
|
/**
|
|
* Use this attribute to represent the operation of a span.
|
|
*/
|
|
const SEMANTIC_ATTRIBUTE_SENTRY_OP = 'sentry.op';
|
|
|
|
/**
|
|
* Use this attribute to represent the origin of a span.
|
|
*/
|
|
const SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN = 'sentry.origin';
|
|
|
|
/** The reason why an idle span finished. */
|
|
const SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON = 'sentry.idle_span_finish_reason';
|
|
|
|
/** The unit of a measurement, which may be stored as a TimedEvent. */
|
|
const SEMANTIC_ATTRIBUTE_SENTRY_MEASUREMENT_UNIT = 'sentry.measurement_unit';
|
|
|
|
/** The value of a measurement, which may be stored as a TimedEvent. */
|
|
const SEMANTIC_ATTRIBUTE_SENTRY_MEASUREMENT_VALUE = 'sentry.measurement_value';
|
|
|
|
/**
|
|
* A custom span name set by users guaranteed to be taken over any automatically
|
|
* inferred name. This attribute is removed before the span is sent.
|
|
*
|
|
* @internal only meant for internal SDK usage
|
|
* @hidden
|
|
*/
|
|
const SEMANTIC_ATTRIBUTE_SENTRY_CUSTOM_SPAN_NAME = 'sentry.custom_span_name';
|
|
|
|
/**
|
|
* The id of the profile that this span occurred in.
|
|
*/
|
|
const SEMANTIC_ATTRIBUTE_PROFILE_ID = 'sentry.profile_id';
|
|
|
|
const SEMANTIC_ATTRIBUTE_EXCLUSIVE_TIME = 'sentry.exclusive_time';
|
|
|
|
const SEMANTIC_ATTRIBUTE_CACHE_HIT = 'cache.hit';
|
|
|
|
const SEMANTIC_ATTRIBUTE_CACHE_KEY = 'cache.key';
|
|
|
|
const SEMANTIC_ATTRIBUTE_CACHE_ITEM_SIZE = 'cache.item_size';
|
|
|
|
/** TODO: Remove these once we update to latest semantic conventions */
|
|
const SEMANTIC_ATTRIBUTE_HTTP_REQUEST_METHOD = 'http.request.method';
|
|
const SEMANTIC_ATTRIBUTE_URL_FULL = 'url.full';
|
|
|
|
/**
|
|
* A span link attribute to mark the link as a special span link.
|
|
*
|
|
* Known values:
|
|
* - `previous_trace`: The span links to the frontend root span of the previous trace.
|
|
* - `next_trace`: The span links to the frontend root span of the next trace. (Not set by the SDK)
|
|
*
|
|
* Other values may be set as appropriate.
|
|
* @see https://develop.sentry.dev/sdk/telemetry/traces/span-links/#link-types
|
|
*/
|
|
const SEMANTIC_LINK_ATTRIBUTE_LINK_TYPE = 'sentry.link.type';
|
|
|
|
exports.SEMANTIC_ATTRIBUTE_CACHE_HIT = SEMANTIC_ATTRIBUTE_CACHE_HIT;
|
|
exports.SEMANTIC_ATTRIBUTE_CACHE_ITEM_SIZE = SEMANTIC_ATTRIBUTE_CACHE_ITEM_SIZE;
|
|
exports.SEMANTIC_ATTRIBUTE_CACHE_KEY = SEMANTIC_ATTRIBUTE_CACHE_KEY;
|
|
exports.SEMANTIC_ATTRIBUTE_EXCLUSIVE_TIME = SEMANTIC_ATTRIBUTE_EXCLUSIVE_TIME;
|
|
exports.SEMANTIC_ATTRIBUTE_HTTP_REQUEST_METHOD = SEMANTIC_ATTRIBUTE_HTTP_REQUEST_METHOD;
|
|
exports.SEMANTIC_ATTRIBUTE_PROFILE_ID = SEMANTIC_ATTRIBUTE_PROFILE_ID;
|
|
exports.SEMANTIC_ATTRIBUTE_SENTRY_CUSTOM_SPAN_NAME = SEMANTIC_ATTRIBUTE_SENTRY_CUSTOM_SPAN_NAME;
|
|
exports.SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON = SEMANTIC_ATTRIBUTE_SENTRY_IDLE_SPAN_FINISH_REASON;
|
|
exports.SEMANTIC_ATTRIBUTE_SENTRY_MEASUREMENT_UNIT = SEMANTIC_ATTRIBUTE_SENTRY_MEASUREMENT_UNIT;
|
|
exports.SEMANTIC_ATTRIBUTE_SENTRY_MEASUREMENT_VALUE = SEMANTIC_ATTRIBUTE_SENTRY_MEASUREMENT_VALUE;
|
|
exports.SEMANTIC_ATTRIBUTE_SENTRY_OP = SEMANTIC_ATTRIBUTE_SENTRY_OP;
|
|
exports.SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN = SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN;
|
|
exports.SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE = SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE;
|
|
exports.SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE = SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE;
|
|
exports.SEMANTIC_ATTRIBUTE_SENTRY_SOURCE = SEMANTIC_ATTRIBUTE_SENTRY_SOURCE;
|
|
exports.SEMANTIC_ATTRIBUTE_URL_FULL = SEMANTIC_ATTRIBUTE_URL_FULL;
|
|
exports.SEMANTIC_LINK_ATTRIBUTE_LINK_TYPE = SEMANTIC_LINK_ATTRIBUTE_LINK_TYPE;
|
|
//# sourceMappingURL=semanticAttributes.js.map
|