Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AspNetCore.HealthChecks.Uris: Add option to specify payload #2376

Open
hartmark opened this issue Feb 27, 2025 · 0 comments
Open

AspNetCore.HealthChecks.Uris: Add option to specify payload #2376

hartmark opened this issue Feb 27, 2025 · 0 comments

Comments

@hartmark
Copy link

It would be nice to be able to add custom payload like this:

    .AddUrlGroup(uriOptions: x =>
    {
        x.AddUri(new Uri(builder.Configuration.GetValue<string>("FooApiUrl")! + "/api/baz"));
        x.AddPayload(new { Foo = "bar" });
        x.UseGet();
    }, "MyApi") 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant