exceptionWithMeta.js 649 B

123456789101112131415161718192021222324252627282930313233
  1. export function ExceptionWithMeta(params = {}) {
  2. return {
  3. level: 'error',
  4. platform: 'python',
  5. exception: {
  6. values: [
  7. {
  8. type: 'ValueError',
  9. value: 'python err A949AE01EBB07300D62AE0178F0944DD21F8C98C err',
  10. module: 'exceptions',
  11. stacktrace: {
  12. frames: [],
  13. },
  14. },
  15. ],
  16. },
  17. _meta: {
  18. exception: {
  19. values: {
  20. 0: {
  21. value: {
  22. '': {
  23. len: 29,
  24. rem: [['device_id', 'p', 11, 51]],
  25. },
  26. },
  27. },
  28. },
  29. },
  30. },
  31. ...params,
  32. };
  33. }