Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Add issue templates (#37)
Browse files Browse the repository at this point in the history
Add templates for issue creation. Because we still do not have a
discuss, all links still point to Beats discuss.

A `.gitignore` file is also added.

Closes #24
  • Loading branch information
belimawr authored Jul 26, 2022
1 parent d0acc74 commit fef57e6
Show file tree
Hide file tree
Showing 6 changed files with 130 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Bug
about: "Report confirmed bugs. For unconfirmed bugs please visit https://discuss.elastic.co/c/elastic-stack/elastic-agent"

---

Please post all questions and issues on https://discuss.elastic.co/c/elastic-stack/elastic-agent
before opening a Github Issue. Your questions will reach a wider audience there,
and if we confirm that there is a bug, then you can open a new issue.

For security vulnerabilities please only send reports to security@elastic.co.
See https://www.elastic.co/community/security for more information.

Please include configurations and logs if available.

For confirmed bugs, please report:
- Version:
- Operating System:
- Discuss Forum URL:
- Steps to Reproduce:
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Bug
about: "Report confirmed bugs. For unconfirmed bugs please visit https://discuss.elastic.co/c/elastic-stack/elastic-agent"

---

Please post all questions and issues on https://discuss.elastic.co/c/elastic-stack/elastic-agent
before opening a Github Issue. Your questions will reach a wider audience there,
and if we confirm that there is a bug, then you can open a new issue.

For security vulnerabilities please only send reports to security@elastic.co.
See https://www.elastic.co/community/security for more information.

Please include configurations and logs if available.

For confirmed bugs, please report:
- Version:
- Operating System:
- Discuss Forum URL
- Steps to Reproduce:
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Enhancement request
about: Elastic-Agent Inputs can't do all the things, but maybe it can do your things.

---

**Describe the enhancement:**

**Describe a specific use case for the enhancement or feature:**

19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/flaky-test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Flaky Test
about: Report a flaky test (one that doesn't pass consistently)
labels: flaky-test
---

## Flaky Test

* **Test Name:** Name of the failing test.
* **Link:** Link to file/line number in github.
* **Branch:** Git branch the test was seen in. If a PR, the branch the PR was based off.
* **Artifact Link:** If available, attach the generated zip artifact associated with the stack trace for this failure.
* **Notes:** Additional details about the test. e.g. theory as to failure cause

### Stack Trace

```
paste stack trace here
```
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Question
about: Who, what, when, where, and how?

---

Hey, stop right there!

We use GitHub to track feature requests and bug reports. Please do not
submit issues for questions about how to use features of Beat, how to
set Beats up, best practices, or development related help.

However, we do want to help! Head on over to our official Elastic-Agent-Inputs forums and ask
your questions there. In additional to awesome, knowledgeable community
contributors, core Elastic-Agent-Inputs developers are on the forums every single day to help
you out.

The forums are here: https://discuss.elastic.co/c/elastic-stack/elastic-agent

We can't stop you from opening an issue here, but it will likely
linger without a response for days or weeks before it is closed and we
ask you to join us on the forums instead. Save yourself the time, and
ask on the forums today.
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Directories
/.vagrant
/.idea
/.vscode
/build
/*/*.template*.json
**/html_docs

# Files
.DS_Store
*.dev.yml
*.generated.yml
coverage.out
.python-version
*.keystore
go_env.properties
mage_output_file.go

# Editor swap files
*.swp
*.swo
*.swn

# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
*.so
*.exe
*.test
*.prof
*.pyc

# Terraform
*.terraform
*.tfstate*

# Files generated with the bump version automations
*.bck

0 comments on commit fef57e6

Please sign in to comment.