trace.data.ts 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import { BasicColumn } from '/@/components/Table';
  2. import dayjs from 'dayjs';
  3. import lodash from 'lodash';
  4. import { h } from 'vue';
  5. import { Tag } from 'ant-design-vue';
  6. export const columns: BasicColumn[] = [
  7. {
  8. title: '请求时间',
  9. dataIndex: 'timestamp',
  10. width: 50,
  11. customRender({ text }) {
  12. return dayjs(text).format('YYYY-MM-DD HH:mm:ss');
  13. },
  14. },
  15. {
  16. title: '请求方法',
  17. dataIndex: 'request.method',
  18. width: 20,
  19. customRender({ record, column }) {
  20. let value = lodash.get(record, column.dataIndex!);
  21. let color = '';
  22. if (value === 'GET') {
  23. color = '#87d068';
  24. }
  25. if (value === 'POST') {
  26. color = '#2db7f5';
  27. }
  28. if (value === 'PUT') {
  29. color = '#ffba5a';
  30. }
  31. if (value === 'DELETE') {
  32. color = '#ff5500';
  33. }
  34. return h(Tag, { color }, () => value);
  35. },
  36. },
  37. {
  38. title: '请求URL',
  39. dataIndex: 'request.uri',
  40. width: 200,
  41. customRender({ record, column }) {
  42. return lodash.get(record, column.dataIndex!);
  43. },
  44. },
  45. {
  46. title: '响应状态',
  47. dataIndex: 'response.status',
  48. width: 50,
  49. customRender({ record, column }) {
  50. let value = lodash.get(record, column.dataIndex!);
  51. let color = '';
  52. if (value < 200) {
  53. color = 'pink';
  54. } else if (value < 201) {
  55. color = 'green';
  56. } else if (value < 399) {
  57. color = 'cyan';
  58. } else if (value < 403) {
  59. color = 'orange';
  60. } else if (value < 501) {
  61. color = 'red';
  62. }
  63. return h(Tag, { color }, () => value);
  64. },
  65. },
  66. {
  67. title: '请求耗时',
  68. dataIndex: 'timeTaken',
  69. width: 50,
  70. customRender({ record, column }) {
  71. let value = lodash.get(record, column.dataIndex!);
  72. let color = 'red';
  73. if (value < 500) {
  74. color = 'green';
  75. } else if (value < 1000) {
  76. color = 'cyan';
  77. } else if (value < 1500) {
  78. color = 'orange';
  79. }
  80. return h(Tag, { color }, () => `${value} ms`);
  81. },
  82. },
  83. ];