semanticAttributes.js 782 B

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