From 973df2bd820b5878654b190d1596d6bf5edee28b Mon Sep 17 00:00:00 2001 From: johnnyhou327 <31071594+johnnyhou327@users.noreply.github.com> Date: Sat, 24 Aug 2019 15:12:20 +0800 Subject: [PATCH] Update issue templates --- .github/ISSUE_TEMPLATE/custom.md | 10 ++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ----------- .github/ISSUE_TEMPLATE/general-questions.md | 18 ++++++++++ .../performance-related-questions.md | 34 +++++++++++++++++++ 4 files changed, 62 insertions(+), 20 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/custom.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/general-questions.md create mode 100644 .github/ISSUE_TEMPLATE/performance-related-questions.md diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 0000000000..48d5f81fa4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 93760f85e9..0000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the circumstance is and what the associated problem is. Ex. I'm using TDengine for this use case: [...]. But I'm always frustrated when [...] - -**Describe your desired behavior** -A clear and concise description of what you want to happen. Ex. I want TDengine to be able to do [...] when I try to do [...] with it. - -**Describe your solutions/suggestions if you've any** -A clear and concise description of any solutions/suggestions to this problem or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/general-questions.md b/.github/ISSUE_TEMPLATE/general-questions.md new file mode 100644 index 0000000000..9992883c4b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/general-questions.md @@ -0,0 +1,18 @@ +--- +name: General Questions +about: General questions about TDengine's usage, user experiences, milestones etc. +title: '' +labels: '' +assignees: '' + +--- + +**General Questions** +A general question should be related to TDengine's user's manual, user experience, milestones, business cooperations etc. +Before you ask a question, please: +1. Try searching for answers in the official documentation +2. Try searching in the existing issues on GitHub +3. Try searching on tech forums such as Stack Overflow, Quora, CSDN, v2ex etc. +4. Try using online searching engines such as Google, Bing, Baidu + +If all the ways above couldn't help, please clearly and concisely describe what the question is. diff --git a/.github/ISSUE_TEMPLATE/performance-related-questions.md b/.github/ISSUE_TEMPLATE/performance-related-questions.md new file mode 100644 index 0000000000..ed100d4ea0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/performance-related-questions.md @@ -0,0 +1,34 @@ +--- +name: Performance-related Questions +about: Any questions related to TDengine's performance. +title: '' +labels: '' +assignees: '' + +--- + +**Performance Issue** +Any questions related to TDengine's performance can be discussed here. + +**Problem Description** +A clear and concise description of what the problem is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Database parameters used: + ```show databases``` +2. Verbs used: Insert/Import/Select? +3. Describe the total amount of data +4. Observed performance vs. expected performance + +**Screenshots** + If applicable, add screenshots to help explain your problem. + +**Environment (please complete the following information):** + +* OS: [e.g. CentOS 7.0] +* Memory, CPU, current Disk Space +* TDengine Version [e.g. 1.6.1.7] + +**Additional Context** +Add any other context about the problem here. -- GitLab