forked from influxdata/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: create bug report form (influxdata#9976)
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 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,67 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking time to fill out this bug report! We reserve Telegraf issues for bugs for reproducible problems. | ||
Please redirect any questions about Telegraf usage to our [Community Slack](https://influxdata.com/slack) or [Community Page](https://community.influxdata.com/) we have a lot of talented community members there who could help answer your question more quickly. | ||
- type: textarea | ||
id: config | ||
attributes: | ||
label: Relevent telegraf.conf | ||
description: Place config in the toml code section. This will be automatically formatted into toml, so no need for backticks. | ||
render: toml | ||
validations: | ||
required: true | ||
- type: input | ||
id: system-info | ||
attributes: | ||
label: System info | ||
description: Include Telegraf version, operating system, and other relevant details | ||
placeholder: ex. Telegraf 1.20.0, Ubuntu 20.04, Docker 20.10.8 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: docker | ||
attributes: | ||
label: Docker | ||
description: If your bug involves third party dependencies or services, it can be very helpful to provide a Dockerfile or docker-compose.yml that reproduces the environment you're testing against. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: Describe the steps to reproduce the bug. | ||
value: | | ||
1. | ||
2. | ||
3. | ||
... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: Describe what you expected to happen when you performed the above steps. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual-behavior | ||
attributes: | ||
label: Actual behavior | ||
description: Describe what actually happened when you performed the above steps. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-info | ||
attributes: | ||
label: Additional info | ||
description: Include gist of relevant config, logs, etc. | ||
validations: | ||
required: false | ||
|