github.com/crowdsecurity/crowdsec@v1.6.1/.github/ISSUE_TEMPLATE/bug_report.yaml (about)

     1  name: Bug report
     2  description: Report a bug encountered while operating crowdsec
     3  labels: kind/bug
     4  body:
     5    - type: textarea
     6      id: problem
     7      attributes:
     8        label: What happened?
     9        description: |
    10          Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
    11          If this matter is security related, please disclose it privately to security@crowdsec.net
    12      validations:
    13        required: true
    14  
    15    - type: textarea
    16      id: expected
    17      attributes:
    18        label: What did you expect to happen?
    19      validations:
    20        required: true
    21  
    22    - type: textarea
    23      id: repro
    24      attributes:
    25        label: How can we reproduce it (as minimally and precisely as possible)?
    26      validations:
    27        required: true
    28  
    29    - type: textarea
    30      id: additional
    31      attributes:
    32        label: Anything else we need to know?
    33  
    34    - type: textarea
    35      id: Version
    36      attributes:
    37        label: Crowdsec version
    38        value: |
    39          <details>
    40  
    41          ```console
    42          $ cscli version
    43          # paste output here
    44          ```
    45  
    46          </details>
    47      validations:
    48        required: true
    49  
    50    - type: textarea
    51      id: osVersion
    52      attributes:
    53        label: OS version
    54        value: |
    55          <details>
    56  
    57          ```console
    58          # On Linux:
    59          $ cat /etc/os-release
    60          # paste output here
    61          $ uname -a
    62          # paste output here
    63  
    64          # On Windows:
    65          C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
    66          # paste output here
    67          ```
    68  
    69          </details>
    70  
    71    - type: textarea
    72      id: collections
    73      attributes:
    74        label: Enabled collections and parsers
    75        value: |
    76          <details>
    77  
    78          ```console
    79          $ cscli hub list -o raw
    80          # paste output here
    81          ```
    82  
    83          </details>
    84  
    85    - type: textarea
    86      id: acquis
    87      attributes:
    88        label: Acquisition config
    89        value: |
    90          <details>
    91          ```console
    92          # On Linux:
    93          $ cat /etc/crowdsec/acquis.yaml /etc/crowdsec/acquis.d/*
    94          # paste output here
    95  
    96          # On Windows:
    97          C:\> Get-Content C:\ProgramData\CrowdSec\config\acquis.yaml
    98          # paste output here
    99          </details>
   100  
   101    - type: textarea
   102      id: config
   103      attributes:
   104        label: Config show
   105        value: |
   106          <details>
   107  
   108          ```console
   109          $ cscli config show
   110          # paste output here
   111          ```
   112  
   113          </details>
   114  
   115    - type: textarea
   116      id: metrics
   117      attributes:
   118        label: Prometheus metrics
   119        value: |
   120          <details>
   121  
   122          ```console
   123          $ cscli metrics
   124          # paste output here
   125          ```
   126  
   127          </details>
   128  
   129    - type: textarea
   130      id: customizations
   131      attributes:
   132        label: "Related custom configs versions (if applicable) : notification plugins, custom scenarios, parsers etc."
   133        value: |
   134          <details>
   135  
   136          </details>