bug-report.yaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. # On Windows:
  56. C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
  57. # paste output here
  58. ```
  59. </details>
  60. - type: textarea
  61. id: attachments
  62. attributes:
  63. label: Log files
  64. description: |
  65. 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).
  66. Before uploading, please make sure that no sensitive information is disclosed in them.
  67. value: |
  68. <details>
  69. </details>