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