master
yml 103 lines 3.55 KB
Raw
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
71 | OS | Command |
72 |------------------|-----------------------------------------------|
73 | Linux | `uname -a; grep -HvE "^#\|URL" /etc/*release` |
74 | Windows (prompt) | `systeminfo \| findstr /B /C:"OS"` |
75 | BSD | `uname -a; uname -K` |
76 | macOS | ` uname -a; sw_vers` |
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