bug-report.yaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. name: Bug Report
  2. description: Report a bug encountered while running EMQX
  3. labels: BUG
  4. body:
  5. - type: textarea
  6. id: problem
  7. attributes:
  8. label: What happened?
  9. description: |
  10. Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
  11. Our github issue handling flow can be found [issue-handling](https://github.com/emqx/emqx/blob/master/.github/ISSUE_TEMPLATE/assets/issue-handling.png)
  12. validations:
  13. required: true
  14. - type: textarea
  15. id: expected
  16. attributes:
  17. label: What did you expect to happen?
  18. validations:
  19. required: true
  20. - type: textarea
  21. id: repro
  22. attributes:
  23. label: How can we reproduce it (as minimally and precisely as possible)?
  24. validations:
  25. required: false
  26. - type: textarea
  27. id: additional
  28. attributes:
  29. label: Anything else we need to know?
  30. - type: textarea
  31. id: emqxVersion
  32. attributes:
  33. label: EMQX version
  34. value: |
  35. <details>
  36. ```console
  37. $ ./bin/emqx_ctl broker
  38. # paste output here
  39. ```
  40. </details>
  41. validations:
  42. required: true
  43. - type: textarea
  44. id: osVersion
  45. attributes:
  46. label: OS version
  47. value: |
  48. <details>
  49. ```console
  50. # On Linux:
  51. $ cat /etc/os-release
  52. # paste output here
  53. $ uname -a
  54. # paste output here
  55. ```
  56. </details>
  57. - type: textarea
  58. id: attachments
  59. attributes:
  60. label: Log files
  61. description: |
  62. For EMQX 4.3 or newer, the log and config files archive can be generated by running `node_dump` (The `node_dump` script can be found in `/<path-to-installation-of-emqx>/bin` if you installed emqx from source or zip ball).
  63. Before uploading, please make sure that no sensitive information is disclosed in them.
  64. value: |
  65. <details>
  66. </details>