HTTP Webhooks
The most common distribution type uses HTTP protocol to distribute the data.
For each telemetry message a new HTTP request is created and sent to your service's HTTP server.
Specific configuration
Currently, only additional HTTP headers can be set using the specific configuration.
Name | Description | Valid values |
---|---|---|
target_additional_http_headers | Additional HTTP headers sent with each request | JSON object |
Example specific configuration
Following is an example of configuration JSON where custom headers are used to send Bearer token with each request.
{
"target_additional_http_headers": {
"X-My-Custom-Id": "12345"
}
}