Skip to content

Excluding Requests

NEWDAY\N17781 edited this page Mar 23, 2026 · 3 revisions

To exclude a specific HTTP request from appearing in the diagram, add the test-tracking-ignore header:

var request = new HttpRequestMessage(HttpMethod.Get, "/health");
request.Headers.Add("test-tracking-ignore", "true");
await client.SendAsync(request);

Any request carrying this header will still be sent normally but will be filtered out of the diagram generation pipeline.

Home


Demo


Getting Started

Common Tasks

Integration Guides

Extensions

Configuration

Features

Reference

Clone this wiki locally