constants.tsx 530 B

12345678910111213141516171819202122232425262728293031
  1. export const HOST = 'http://localhost:8080';
  2. // Span ops from Sentry Docs, but with 'cache' added:
  3. // https://develop.sentry.dev/sdk/performance/span-operations/#currently-used-categories
  4. export const ACCEPTED_SPAN_OPS = [
  5. 'mark',
  6. 'pageload',
  7. 'navigation',
  8. 'resource',
  9. 'browser',
  10. 'measure',
  11. 'ui',
  12. 'app',
  13. 'http',
  14. 'websocket',
  15. 'rpc',
  16. 'grpc',
  17. 'graphql',
  18. 'subprocess',
  19. 'middleware',
  20. 'view',
  21. 'template',
  22. 'serialize',
  23. 'console',
  24. 'db',
  25. 'file',
  26. 'function',
  27. 'topic',
  28. 'queue',
  29. 'cache',
  30. ];