|
| 1 | +name: Bug Report |
| 2 | +description: File a bug report |
| 3 | +title: "[Bug]: " |
| 4 | +labels: [bug] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thank you for taking the time to fill out this report. |
| 10 | + Remember that these issues are public and if you need to discuss |
| 11 | + implementation specific issues securely, |
| 12 | + please [use our support portal](https://support.instana.com/hc/en-us). |
| 13 | + - type: textarea |
| 14 | + id: problem-description |
| 15 | + attributes: |
| 16 | + label: Problem Description |
| 17 | + description: What was the issue that caused you to file this bug? |
| 18 | + validations: |
| 19 | + required: true |
| 20 | + - type: textarea |
| 21 | + id: mcve |
| 22 | + attributes: |
| 23 | + label: Minimal, Complete, Verifiable, Example |
| 24 | + description: | |
| 25 | + If you can, then please provide steps |
| 26 | + needed to reproduce this issue outside of your application. |
| 27 | + validations: |
| 28 | + required: false |
| 29 | + - type: input |
| 30 | + id: python-version |
| 31 | + attributes: |
| 32 | + label: Python Version |
| 33 | + description: | |
| 34 | + What version of Python was the application running with |
| 35 | + when it encountered this bug? |
| 36 | + placeholder: Python 3.x |
| 37 | + validations: |
| 38 | + required: true |
| 39 | + - type: textarea |
| 40 | + id: python-modules |
| 41 | + attributes: |
| 42 | + label: Python Modules |
| 43 | + description: | |
| 44 | + Please paste the version information of all available Python modules |
| 45 | + for the application that was affected by this bug. |
| 46 | + Both the system pre-installed |
| 47 | + (for example `apt list '*python*' --installed` or `rpm -qa | grep python`) |
| 48 | + and the packages from PyPI (`pip list` or equivalent). |
| 49 | + If your application is running in a container and/or a virtualenv etc, |
| 50 | + then please provide these from the innermost environment. |
| 51 | + render: shell |
| 52 | + validations: |
| 53 | + required: true |
| 54 | + - type: textarea |
| 55 | + id: python-environment |
| 56 | + attributes: |
| 57 | + label: Python Environment |
| 58 | + description: | |
| 59 | + Please the list of environment variables available for the application. |
| 60 | + For example |
| 61 | + ``` |
| 62 | + for pid in $(pidof python3); do |
| 63 | + echo "#### PID: ${pid} ####"; |
| 64 | + cat /proc/${pid}/environ | tr '\0' '\n'; |
| 65 | + done |
| 66 | + ``` |
| 67 | + render: shell |
| 68 | + validations: |
| 69 | + required: true |
0 commit comments