Skip to content

Commit

Permalink
IssueTriage: Needs more info automation and messages (#28137)
Browse files Browse the repository at this point in the history
* IssueTriage: Needs more info automation and messages

* Updated

* Updated

* Updated wording
  • Loading branch information
torkelo committed Oct 16, 2020
1 parent 2a08f4b commit 9f5bdce
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 22 deletions.
15 changes: 15 additions & 0 deletions .github/commands.json
Expand Up @@ -17,6 +17,21 @@
"name": "type/duplicate",
"action": "close",
"comment": "Thanks for creating this issue! It looks like this has already been reported by another user. We’ve closed this in favor of the existing one. Please consider adding any details you think is missing to that issue.\n\nTo avoid having your issue closed in the future, please read our [CONTRIBUTING](https://github.com/grafana/grafana/blob/master/CONTRIBUTING.md) guidelines.\n\nHappy graphing!"
},
{
"type": "comment",
"name": "needsMoreInfo",
"allowUsers": [],
"action": "updateLabels",
"addLabel": "~needs more info"
},
{
"type": "label",
"name": "~needs more info",
"action": "updateLabels",
"addLabel": "needs more info",
"removeLabel": "~needs more info",
"comment": "Thanks for creating this issue! We figured it's missing some basic information. \r\n\r\nFor data visualization issues: \r\n- Query results from the inspect drawer (data tab & query inspector)\r\n- Panel settings can be extracted in the panel inspect drawer JSON tab\r\n\r\nFor a dashboard related issues: \r\n- Dashboard JSON can be found in the dashboard settings JSON model view\r\n\r\nFor authentication and alerting Grafana server logs are useful. \r\n\r\nHappy graphing!"
},
{
"type": "label",
Expand Down
13 changes: 12 additions & 1 deletion CONTRIBUTING.md
Expand Up @@ -19,9 +19,20 @@ For more ways to contribute, check out the [Open Source Guides](https://opensour

### Report bugs

Before submitting a new issue, try to make sure someone hasn't already reported the problem. Look through the [existing issues](https://github.com/grafana/grafana/issues) for similar issues.

Report a bug by submitting a [bug report](https://github.com/grafana/grafana/issues/new?labels=type%3A+bug&template=1-bug_report.md). Make sure that you provide as much information as possible on how to reproduce the bug.

Before submitting a new issue, try to make sure someone hasn't already reported the problem. Look through the [existing issues](https://github.com/grafana/grafana/issues) for similar issues.
Follow the issue template and add additional information that will help us replicate the problem.

For data visualization issues:
- Query results from the inspect drawer (data tab & query inspector)
- Panel settings can be extracted in the panel inspect drawer JSON tab

For a dashboard related issues:
- Dashboard JSON can be found in the dashboard settings JSON model view

For authentication and alerting Grafana server logs are useful.

#### Security issues

Expand Down
26 changes: 5 additions & 21 deletions grafana-mixin/dashboards/grafana-overview.json
Expand Up @@ -55,9 +55,7 @@
"justifyMode": "auto",
"orientation": "auto",
"reduceOptions": {
"calcs": [
"mean"
],
"calcs": ["mean"],
"fields": "",
"values": false
}
Expand Down Expand Up @@ -112,9 +110,7 @@
"justifyMode": "auto",
"orientation": "auto",
"reduceOptions": {
"calcs": [
"mean"
],
"calcs": ["mean"],
"fields": "",
"values": false
}
Expand Down Expand Up @@ -453,9 +449,7 @@
"selected": true,
"tags": [],
"text": "All",
"value": [
"$__all"
]
"value": ["$__all"]
},
"datasource": "$datasource",
"definition": "label_values(grafana_build_info, job)",
Expand Down Expand Up @@ -509,20 +503,10 @@
"to": "now"
},
"timepicker": {
"refresh_intervals": [
"10s",
"30s",
"1m",
"5m",
"15m",
"30m",
"1h",
"2h",
"1d"
]
"refresh_intervals": ["10s", "30s", "1m", "5m", "15m", "30m", "1h", "2h", "1d"]
},
"timezone": "",
"title": "Grafana Overview",
"uid": "6be0s85Mk",
"version": 4
}
}

0 comments on commit 9f5bdce

Please sign in to comment.