BUG_REPORT.yml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. name: "Netdata Agent: Bug report"
  2. description: "Submit a report and help us improve our free and open-source Netdata Agent"
  3. title: "[Bug]: "
  4. labels: ["bug", "needs triage"]
  5. type: "bug"
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: "### Thank you for contributing to our project!"
  10. - type: markdown
  11. attributes:
  12. value: |
  13. <img src="https://img.shields.io/github/v/release/netdata/netdata.svg?label=latest%20stable"> <img src="https://img.shields.io/github/v/release/netdata/netdata-nightlies.svg?label=latest%20nightly">
  14. - type: markdown
  15. attributes:
  16. value: |
  17. Before submitting, we'd appreciate it if you:
  18. - Verify that your issue is not already reported on GitHub.
  19. - Check if your Netdata Agent is up to date. If not, we recommend that you [update](https://learn.netdata.cloud/docs/agent/packaging/installer/update) first.
  20. - type: textarea
  21. id: bug-description
  22. attributes:
  23. label: Bug description
  24. description: Provide a description of the bug you're experiencing.
  25. validations:
  26. required: true
  27. - type: textarea
  28. id: expected-behavior
  29. attributes:
  30. label: Expected behavior
  31. description: Describe what you expected to happen.
  32. validations:
  33. required: true
  34. - type: textarea
  35. id: reproduce
  36. attributes:
  37. label: Steps to reproduce
  38. description: Describe the steps to reproduce the bug.
  39. value: |
  40. 1.
  41. 2.
  42. 3.
  43. ...
  44. validations:
  45. required: true
  46. - type: dropdown
  47. id: install-method
  48. attributes:
  49. label: Installation method
  50. description: |
  51. Select [installation method](https://learn.netdata.cloud/docs/agent/packaging/installer#alternative-methods) you used.
  52. Describe the method in the "Additional info" section if you chose "other".
  53. options:
  54. - "kickstart.sh"
  55. - "windows MSI"
  56. - "docker"
  57. - "helmchart (kubernetes)"
  58. - "manual setup of official DEB/RPM packages"
  59. - "from git"
  60. - "from source"
  61. - "other"
  62. validations:
  63. required: true
  64. - type: textarea
  65. id: system-info
  66. attributes:
  67. label: System info
  68. description: |
  69. Provide information about your system:
  70. | OS | Command |
  71. |------------------|-----------------------------------------------|
  72. | Linux | `uname -a; grep -HvE "^#\|URL" /etc/*release` |
  73. | Windows (prompt) | `systeminfo \| findstr /B /C:"OS"` |
  74. | BSD | `uname -a; uname -K` |
  75. | macOS | ` uname -a; sw_vers` |
  76. > NOTE: This will be automatically formatted into code, so no need for backticks.
  77. render: shell
  78. validations:
  79. required: true
  80. - type: textarea
  81. id: netdata-buildfinfo
  82. attributes:
  83. label: Netdata build info
  84. description: |
  85. Provide Netdata Agent version and build info. To get this information, execute:
  86. ```shell
  87. netdata -W buildinfo
  88. # If get "netdata: command not found", try (required running Netdata)
  89. $(ps aux | grep -m1 -E -o "[a-zA-Z/]+netdata ") -W buildinfo
  90. ```
  91. > NOTE: This will be automatically formatted into code, so no need for backticks.
  92. render: shell
  93. validations:
  94. required: true
  95. - type: textarea
  96. id: additional-info
  97. attributes:
  98. label: Additional info
  99. description: Any additional information related to the issue (ex. logs).
  100. validations:
  101. required: false