blackbox_exporter
                                
                                
                                
                                    blackbox_exporter copied to clipboard
                            
                            
                            
                        Support multipart/form-data
Description
After this PR, we can send POST requests in multipart/form-data format. This allows users to test the upload process quickly.
http_post_body_multipart:
    prober: http
    timeout: 5s
    http:
      method: POST
      body_multipart:
        - type: "file"
          key: "file"
          value: "/files/body.txt"
        - type: "text"
          key: "name"
          value: "arash"
We can define text or file fields here.
Changes
- Support 
multipartfor HTTP probe - Update example file
 - Update configuration document
 - Add a new test for multipart form request
 
any update?