Swagger UI has the displayRequestDuration parameter to show how long a request takes. It\'s disabled by default.
How can this be enabled in the SwaggerConfig.cs conf
According to the documentation, this is a Swagger UI configuration. For my .Net Core app, I was able to get the Request duration with the following code.
app.UseSwaggerUI(c => { c.DisplayRequestDuration(); .... (other configurations) });