summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Brandl <abrandl@gitlab.com>2019-09-04 20:53:05 +0200
committerAndreas Brandl <abrandl@gitlab.com>2019-09-04 20:56:11 +0200
commit20b470a2e98ede359a81979a8a7a0cc92d7989b2 (patch)
tree89d0baa374bcd8ec421b09820de5d3c20b557d3c
parentf4e40c532b5582f47a0dd9bf7054112fc9ec6085 (diff)
downloadgitlab-ce-docs-ab/database-query-performance-issue-template.tar.gz
Add issue template for query performancedocs-ab/database-query-performance-issue-template
Relates to https://gitlab.com/gitlab-com/gl-infra/infrastructure/issues/7743#note_212379866
-rw-r--r--.gitlab/issue_templates/Database Query Performance Review.md41
1 files changed, 41 insertions, 0 deletions
diff --git a/.gitlab/issue_templates/Database Query Performance Review.md b/.gitlab/issue_templates/Database Query Performance Review.md
new file mode 100644
index 00000000000..a34ee687619
--- /dev/null
+++ b/.gitlab/issue_templates/Database Query Performance Review.md
@@ -0,0 +1,41 @@
+### Query
+
+<!--
+Ideally format the query, e.g. with http://sqlformat.darold.net
+
+Please obtain a query plan through ChatOps or otherwise from production.
+Please use representative query parameter values.
+Please post a link to https://explain.depesz.com below if the plan is
+large.
+-->
+
+```sql
+SELECT 1
+```
+
+Plan: <!-- link to https://explain.depesz.com/ -->
+
+### Statistics
+
+| | |
+| --- | ------ |
+| Observation range | <!-- time or date range --> |
+| Frequency (calls per minute) | |
+| Average execution time (ms) | |
+| Total database time during range (s) | |
+
+
+### Analysis
+
+<!--
+Suggestion, proposed change, analysis of query plan and similar
+-->
+
+### Code
+
+<!--
+Where is this query used? Link to code base. This can be added later upon investigation, too.
+-->
+
+/label ~Database ~"Database Engineering" ~performance ~"needs investigation"
+cc @gl-database