diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 11:08:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 11:08:07 +0000 |
commit | c69cb8cc094cc916adbc516b09e944cd3d137c01 (patch) | |
tree | f2878ec41fb6d0e3613906c6722fc02b934eeb80 /.github/ISSUE_TEMPLATE | |
parent | Initial commit. (diff) | |
download | netdata-upstream.tar.xz netdata-upstream.zip |
Adding upstream version 1.29.3.upstream/1.29.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | .github/ISSUE_TEMPLATE.md | 15 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 57 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 14 |
3 files changed, 86 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..bd939ba --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,15 @@ +--- +about: General issue template +labels: "needs triage", "no changelog" +--- + +<!--- +This is a generic issue template. We usually prefer contributors to use one +of 3 other specific issue templates (bug report, feature request, question) +to allow our automation classify those so you can get response faster. +However if your issue doesn't fall into either one of those 3 categories +use this generic template. +---> + +#### Summary + diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..ecfd9fc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,57 @@ +--- +name: "Bug report: Netdata Agent" +about: Submit a report and help us improve our free and open-source Netdata Agent +labels: bug, needs triage +--- + +<!-- +When creating a bug report please: +- Verify first that your issue is not already reported on GitHub. +- Test if the latest release and master branch are affected too. +--> + +##### Bug report summary +<!-- Provide a clear and concise description of the bug you're experiencing. --> + +##### OS / Environment +<!-- +Provide as much information about your environment (which operating system and distribution you're using, if Netdata is running in a container, etc.) +as possible to allow us reproduce this bug faster. + +To get this information, execute the following commands based on your operating system: +- uname -a; grep -Hv "^#" /etc/*release # Linux +- uname -a; uname -K # BSD +- uname -a; sw_vers # macOS + +Place the output from the command in the code section below. + --> +``` + +``` + +##### Netdata version +<!-- +Provide output of `netdata -V`. + +If Netdata is running, execute: $(ps aux | grep -E -o "[a-zA-Z/]+netdata ") -V + --> + + +##### Component Name +<!-- +Let us know which component is affected by the bug. Our code is structured according to its component, +so the component name is the same as the top level directory of the repository. +For example, a bug in the dashboard would be under the web component. +--> + +##### Steps To Reproduce +<!-- +Describe how you found this bug and how we can reproduce it, preferably with a minimal test-case scenario. +If you'd like to attach larger files, use gist.github.com and paste in links. +--> + +1. ... +2. ... + +##### Expected behavior +<!-- Provide a clear and concise description of what you expected to happen. --> diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..e6ea7d3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,14 @@ +blank_issues_enabled: false +contact_links: + - name: "Bug report: Netdata Cloud" + url: https://github.com/netdata/netdata-cloud/issues/new/choose + about: Create a report to help us improve our web application + - name: Help + url: https://community.netdata.cloud/c/support/13 + about: We offer community-driven support on our community forums + - name: Feature request + url: https://community.netdata.cloud/c/feature-requests/7 + about: Make a feature request for Netdata Cloud or the Netdata Agent + - name: Community + url: https://netdata.cloud/community + about: If you don't know where to start, visit our community page! |