You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -337,15 +337,15 @@ public class ValuesController : ControllerBase
337
337
}
338
338
```
339
339
340
-
For more information, see [Logging in ASP.NET Core](/aspnet/core/fundamentals/logging/?view=aspnetcore-6.0).
340
+
For more information, see [Logging in ASP.NET Core](/aspnet/core/fundamentals/logging).
341
341
342
342
## View logs in Application Insights
343
343
344
344
The ValuesController above is deployed with the sample application and is located in the **Controllers** folder of the project.
345
345
346
346
1. Using an internet browser, open the sample application. In the address bar, append `/api/Values` and press <kbd>Enter</kbd>.
347
347
348
-

348
+

349
349
350
350
2. Wait a few moments, then return to the **Application Insights** resource in the [Azure Portal](https://portal.azure.com).
351
351
@@ -369,7 +369,7 @@ The ValuesController above is deployed with the sample application and is locate
369
369
370
370
## Control the level of logs sent to Application Insights
371
371
372
-
`ILogger` implementations have a built-in mechanism to apply [log filtering](/dotnet/core/extensions/logging#how-filtering-rules-are-applied). This filtering lets you control the logs that are sent to each registered provider, including the Application Insights provider. You can use the filtering either in configuration (using an *appsettings.json* file) or in code. For more information about log levels and guidance on appropriate use, see the [Log Level](/aspnet/core/fundamentals/logging/?view=aspnetcore-6.0#log-level) documentation.
372
+
`ILogger` implementations have a built-in mechanism to apply [log filtering](/dotnet/core/extensions/logging#how-filtering-rules-are-applied). This filtering lets you control the logs that are sent to each registered provider, including the Application Insights provider. You can use the filtering either in configuration (using an *appsettings.json* file) or in code. For more information about log levels and guidance on appropriate use, see the [Log Level](/aspnet/core/fundamentals/logging#log-level) documentation.
373
373
374
374
The following examples show how to apply filter rules to the `ApplicationInsightsLoggerProvider` to control the level of logs sent to Application Insights.
0 commit comments