semanticAttributes.js 1008 B

1234567891011121314151617181920212223242526272829
  1. Object.defineProperty(exports, '__esModule', { value: true });
  2. /**
  3. * Use this attribute to represent the source of a span.
  4. * Should be one of: custom, url, route, view, component, task, unknown
  5. *
  6. */
  7. const SEMANTIC_ATTRIBUTE_SENTRY_SOURCE = 'sentry.source';
  8. /**
  9. * Use this attribute to represent the sample rate used for a span.
  10. */
  11. const SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE = 'sentry.sample_rate';
  12. /**
  13. * Use this attribute to represent the operation of a span.
  14. */
  15. const SEMANTIC_ATTRIBUTE_SENTRY_OP = 'sentry.op';
  16. /**
  17. * Use this attribute to represent the origin of a span.
  18. */
  19. const SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN = 'sentry.origin';
  20. exports.SEMANTIC_ATTRIBUTE_SENTRY_OP = SEMANTIC_ATTRIBUTE_SENTRY_OP;
  21. exports.SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN = SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN;
  22. exports.SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE = SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE;
  23. exports.SEMANTIC_ATTRIBUTE_SENTRY_SOURCE = SEMANTIC_ATTRIBUTE_SENTRY_SOURCE;
  24. //# sourceMappingURL=semanticAttributes.js.map