-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: add template for dm and refine other templates (#3282)
- Loading branch information
1 parent
2a60472
commit df6eefc
Showing
4 changed files
with
90 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: "\U0001F41B DM Bug Report" | ||
description: Something isn't working as expected | ||
labels: ["type/bug","area/dm"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please answer these questions before submitting your issue. Thanks! | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: What did you do? | ||
description: If possible, provide a recipe for reproducing the error. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expect | ||
attributes: | ||
label: What did you expect to see? | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: see | ||
attributes: | ||
label: What did you see instead? | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Versions of the cluster | ||
value: |- | ||
DM version (run `dmctl -V` or `dm-worker -V` or `dm-master -V`): | ||
```console | ||
(paste DM version here, and you must ensure versions of dmctl, DM-worker and DM-master are same) | ||
``` | ||
Upstream MySQL/MariaDB server version: | ||
```console | ||
(paste upstream MySQL/MariaDB server version here) | ||
``` | ||
Downstream TiDB cluster version (execute `SELECT tidb_version();` in a MySQL client): | ||
```console | ||
(paste TiDB cluster version here) | ||
``` | ||
How did you deploy DM: tiup or manually? | ||
```console | ||
(leave TiUP or manually here) | ||
``` | ||
Other interesting information (system version, hardware config, etc): | ||
```console | ||
> | ||
> | ||
``` | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: current | ||
attributes: | ||
label: current status of DM cluster (execute `query-status <task-name>` in dmctl) | ||
value: |- | ||
```console | ||
(paste current status of DM cluster here) | ||
``` | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Operation logs | ||
- Please upload `dm-worker.log` for every DM-worker instance if possible | ||
- Please upload `dm-master.log` if possible | ||
- Other interesting logs | ||
- Output of dmctl's commands with problems | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Configuration of the cluster and the task | ||
- `dm-worker.toml` for every DM-worker instance if possible | ||
- `dm-master.toml` for DM-master if possible | ||
- task config, like `task.yaml` if possible | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Screenshot/exported-PDF of Grafana dashboard or metrics' graph in Prometheus for DM if possible |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.github/ISSUE_TEMPLATE/bug-report.yml → .github/ISSUE_TEMPLATE/ticdc-bug-report.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters