|
| 1 | +# SPDX-FileCopyrightText: 2026 The Botanu Authors |
| 2 | +# SPDX-License-Identifier: Apache-2.0 |
| 3 | + |
| 4 | +name: Bug Report |
| 5 | +description: Report a bug in the Botanu SDK |
| 6 | +labels: ["bug", "triage"] |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Thanks for taking the time to report a bug. |
| 12 | + Please fill in the details below to help us reproduce and fix the issue. |
| 13 | +
|
| 14 | + - type: input |
| 15 | + id: version |
| 16 | + attributes: |
| 17 | + label: Botanu SDK version |
| 18 | + description: "Output of `python -c 'import botanu; print(botanu.__version__)'`" |
| 19 | + placeholder: "0.1.0" |
| 20 | + validations: |
| 21 | + required: true |
| 22 | + |
| 23 | + - type: input |
| 24 | + id: python-version |
| 25 | + attributes: |
| 26 | + label: Python version |
| 27 | + description: "Output of `python --version`" |
| 28 | + placeholder: "3.12.1" |
| 29 | + validations: |
| 30 | + required: true |
| 31 | + |
| 32 | + - type: dropdown |
| 33 | + id: init-mode |
| 34 | + attributes: |
| 35 | + label: Initialization mode |
| 36 | + options: |
| 37 | + - Standalone (no existing TracerProvider) |
| 38 | + - Attach (OTEL-native vendor — Splunk, Honeycomb, etc.) |
| 39 | + - Alongside (proprietary agent — Datadog, New Relic, etc.) |
| 40 | + - Unknown / not sure |
| 41 | + validations: |
| 42 | + required: true |
| 43 | + |
| 44 | + - type: textarea |
| 45 | + id: description |
| 46 | + attributes: |
| 47 | + label: Description |
| 48 | + description: A clear and concise description of the bug. |
| 49 | + validations: |
| 50 | + required: true |
| 51 | + |
| 52 | + - type: textarea |
| 53 | + id: reproduce |
| 54 | + attributes: |
| 55 | + label: Steps to reproduce |
| 56 | + description: Minimal code or steps to reproduce the issue. |
| 57 | + render: python |
| 58 | + validations: |
| 59 | + required: true |
| 60 | + |
| 61 | + - type: textarea |
| 62 | + id: expected |
| 63 | + attributes: |
| 64 | + label: Expected behavior |
| 65 | + description: What you expected to happen. |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + |
| 69 | + - type: textarea |
| 70 | + id: actual |
| 71 | + attributes: |
| 72 | + label: Actual behavior |
| 73 | + description: What actually happened. Include tracebacks if applicable. |
| 74 | + render: shell |
| 75 | + validations: |
| 76 | + required: true |
| 77 | + |
| 78 | + - type: textarea |
| 79 | + id: context |
| 80 | + attributes: |
| 81 | + label: Additional context |
| 82 | + description: | |
| 83 | + - OS and platform |
| 84 | + - OTel SDK / instrumentation versions |
| 85 | + - Existing observability vendor (Datadog, Splunk, etc.) |
| 86 | + - Collector configuration |
| 87 | + validations: |
| 88 | + required: false |
0 commit comments