eriklupander / gotling

Simple golang-based load test application using YAML documents as specification

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Host request-header Support

wahmedswl opened this issue · comments

Hi, is Host http header is supported. I want to stress test linkerd service which works with Host http header.

Any help would be appreciated, thanks

If you're still interested in this, it is now supported. You can add HTTP headers to HTTP requests in the YAML file:

- http:
    title: Some title
    method: POST
    headers:
        foo: bar
        hello: world
        host: myhost.service.com

Good luck 🙌