Microsoft.Extensions.Logging.AzureAppServices 10.0.0

Prefix Reserved
dotnet add package Microsoft.Extensions.Logging.AzureAppServices --version 10.0.0
                    
NuGet\Install-Package Microsoft.Extensions.Logging.AzureAppServices -Version 10.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" Version="10.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Extensions.Logging.AzureAppServices" Version="10.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.Extensions.Logging.AzureAppServices" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.Extensions.Logging.AzureAppServices --version 10.0.0
                    
#r "nuget: Microsoft.Extensions.Logging.AzureAppServices, 10.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Microsoft.Extensions.Logging.AzureAppServices@10.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Microsoft.Extensions.Logging.AzureAppServices&version=10.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.Extensions.Logging.AzureAppServices&version=10.0.0
                    
Install as a Cake Tool

About

Microsoft.Extensions.Logging.AzureAppServices provides a logger implementation that logs to text files in an Azure App Service app's file system and to blob storage in an Azure Storage account.

Key Features

  • Loging messages with the "Diagnostics Logger" and "Log Streaming" features of Azure App Service
  • Integration with Azure App Service logging infrastructure
  • Seamless integration with other components of Microsoft.Extensions.Logging

How to Use

To use Microsoft.Extensions.Logging.AzureAppServices, follow these steps:

Installation

dotnet add package Microsoft.Extensions.Logging.AzureAppServices

Configuration

To configure provider settings, use AzureFileLoggerOptions and AzureBlobLoggerOptions, as shown in the following example:

using Microsoft.Extensions.Logging.AzureAppServices;

var builder = WebApplication.CreateBuilder();
builder.Logging.AddAzureWebAppDiagnostics();
builder.Services.Configure<AzureFileLoggerOptions>(options =>
{
    options.FileName = "azure-diagnostics-";
    options.FileSizeLimit = 50 * 1024;
    options.RetainedFileCountLimit = 5;
});
builder.Services.Configure<AzureBlobLoggerOptions>(options =>
{
    options.BlobName = "log.txt";
});

Main Types

  • FileLoggerProvider: A BatchingLoggerProvider which writes out to a file
  • BlobLoggerProvider: The ILoggerProvider implementation that stores messages by appending them to Azure Blob in batches
  • AzureFileLoggerOptions: Options for configuring Azure diagnostics file logging
  • AzureBlobLoggerOptions: Options for configuring Azure diagnostics blob logging

Additional Documentation

For additional documentation and examples, refer to the official documentation on logging with ASP.NEt Core and Azure App Service.

Feedback & Contributing

Microsoft.Extensions.Logging.AzureAppServices is released as open-source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (33)

Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Logging.AzureAppServices:

Package Downloads
Microsoft.AspNetCore.AzureAppServicesIntegration

ASP.NET Core integration with Azure AppServices. This package was built from the source code at https://github.com/dotnet/dotnet/tree/b0f34d51fccc69fd334253924abd8d6853fad7aa

Microsoft.AspNetCore.All

Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.

Serilog.Sinks.AzureApp

A Serilog sink that supports Azure App Services 'Diagnostics logs' and 'Log stream' features.

Relay.Web

A web framework built for .NET Core

Amelia

Package Description

GitHub repositories (14)

Showing the top 14 popular GitHub repositories that depend on Microsoft.Extensions.Logging.AzureAppServices:

Repository Stars
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
phongnguyend/Practical.CleanArchitecture
Full-stack .Net 10 Clean Architecture (Microservices, Modular Monolith, Monolith), Blazor, Angular 20, React 19, Vue 3.5, BFF with YARP, NextJs 15, Domain-Driven Design, CQRS, SOLID, Asp.Net Core Identity Custom Storage, OpenID Connect, EF Core, OpenTelemetry, SignalR, Background Services, Health Checks, Rate Limiting, Clouds (Azure, AWS, GCP), ...
VirtoCommerce/vc-platform
Virto Commerce B2B Innovation Platform
EdiWang/Moonglade
Blog system of https://edi.wang, runs on Microsoft Azure
ProfessionalCSharp/ProfessionalCSharp7
Code samples for the book Professional C# 7 and .NET Core 2.0 (with updates for 2.1), Wrox Press
microsoft/BotFramework-BlogSamples
Welcome to the Bot Framework samples repository. Here you will find sample bots that take advantage of Bot Framework capabilities.
ProfessionalCSharp/ProfessionalCSharp2021
Source code for Professional C# and .NET 2021 Edition (with updates for C# 11 and .NET 7)
BotBuilderCommunity/botbuilder-community-dotnet
Part of the Bot Builder Community Project. Repository for extensions for the Bot Builder .NET SDK, including middleware, dialogs, recognizers and more.
ProfessionalCSharp/MoreSamples
Additional code samples the book series Professional C#, Wrox Press
VirtoCommerce/vc-storefront
Virto Commerce Storefront - ASP.NET Core 8.0
microsoft/app-innovation-workshop
Hands-on workshop designed to help you learn Azure, Mobile & AI
DevBetterCom/DevBetterWeb
A simple web application for devBetter
tompaana/intermediator-bot-sample
A sample bot, built with the Microsoft Bot Framework (v4), that routes messages between two users on different channels.
Version Downloads Last Updated
10.0.0 17,109 11/11/2025
10.0.0-rc.2.25502.107 1,652 10/14/2025
10.0.0-rc.1.25451.107 2,995 9/9/2025
10.0.0-preview.7.25380.108 937 8/12/2025
10.0.0-preview.6.25358.103 1,163 7/15/2025
10.0.0-preview.5.25277.114 1,446 6/6/2025
10.0.0-preview.4.25258.110 1,187 5/12/2025
10.0.0-preview.3.25172.1 1,700 4/10/2025
10.0.0-preview.2.25164.1 3,055 3/18/2025
10.0.0-preview.1.25120.3 2,296 2/25/2025
9.0.11 8,139 11/11/2025
9.0.10 78,576 10/14/2025
9.0.9 113,323 9/9/2025
9.0.8 160,310 8/5/2025
9.0.7 98,332 7/8/2025
9.0.6 143,403 6/10/2025
9.0.5 131,706 5/13/2025
9.0.4 221,820 4/8/2025
9.0.3 130,374 3/11/2025
9.0.2 233,534 2/11/2025
9.0.1 470,607 1/14/2025
9.0.0 357,023 11/12/2024
9.0.0-rc.2.24474.3 7,007 10/8/2024
9.0.0-rc.1.24452.1 2,464 9/10/2024
9.0.0-preview.7.24406.2 5,172 8/13/2024
9.0.0-preview.6.24328.4 3,363 7/9/2024
9.0.0-preview.5.24306.11 2,490 6/11/2024
9.0.0-preview.4.24267.6 1,484 5/21/2024
9.0.0-preview.3.24172.13 3,180 4/11/2024
9.0.0-preview.2.24128.4 6,930 3/12/2024
9.0.0-preview.1.24081.5 2,291 2/13/2024
8.0.22 6,645 11/11/2025
8.0.21 22,290 10/14/2025
8.0.20 28,369 9/9/2025
8.0.19 54,284 8/4/2025
8.0.18 20,456 7/8/2025
8.0.17 40,586 6/10/2025
8.0.16 86,950 5/13/2025
8.0.15 105,180 4/8/2025
8.0.14 80,695 3/11/2025
8.0.13 99,933 2/11/2025
8.0.12 158,135 1/14/2025
8.0.11 441,314 11/12/2024
8.0.10 742,947 10/8/2024
8.0.8 782,390 8/13/2024
8.0.7 410,412 7/9/2024
8.0.6 571,015 5/28/2024
8.0.5 165,506 5/14/2024
8.0.4 601,132 4/9/2024
8.0.3 490,552 3/12/2024
8.0.2 490,997 2/13/2024
8.0.1 522,367 1/9/2024
8.0.0 632,164 11/14/2023
8.0.0-rc.2.23480.2 3,523 10/10/2023
8.0.0-rc.1.23421.29 3,777 9/12/2023
8.0.0-preview.7.23375.9 1,814 8/8/2023
8.0.0-preview.6.23329.11 1,376 7/11/2023
8.0.0-preview.5.23302.2 1,004 6/13/2023
8.0.0-preview.4.23260.4 3,460 5/16/2023
8.0.0-preview.3.23177.8 2,561 4/11/2023
8.0.0-preview.2.23153.2 2,744 3/14/2023
8.0.0-preview.1.23112.2 1,809 2/21/2023
7.0.20 21,786 5/28/2024
7.0.19 3,860 5/14/2024
7.0.18 15,041 4/9/2024
7.0.17 13,205 3/12/2024
7.0.16 17,708 2/13/2024
7.0.15 36,958 1/9/2024
7.0.14 73,909 11/14/2023
7.0.13 140,507 10/24/2023
7.0.12 84,713 10/10/2023
7.0.11 138,227 9/12/2023
7.0.10 391,185 8/8/2023
7.0.9 150,167 7/11/2023
7.0.8 104,380 6/22/2023
7.0.7 75,336 6/13/2023
7.0.5 432,974 4/11/2023
7.0.4 191,983 3/14/2023
7.0.3 263,058 2/14/2023
7.0.2 392,291 1/10/2023
7.0.1 260,339 12/13/2022
7.0.0 449,409 11/7/2022
7.0.0-rc.2.22476.2 1,774 10/11/2022
7.0.0-rc.1.22427.2 7,199 9/14/2022
7.0.0-preview.7.22376.6 986 8/9/2022
7.0.0-preview.6.22330.3 1,219 7/12/2022
7.0.0-preview.5.22303.8 1,132 6/14/2022
7.0.0-preview.4.22251.1 1,418 5/10/2022
7.0.0-preview.3.22178.4 2,739 4/13/2022
7.0.0-preview.2.22153.2 1,376 3/14/2022
7.0.0-preview.1.22109.13 856 2/17/2022
6.0.36 84,081 11/12/2024
6.0.35 24,100 10/8/2024
6.0.33 18,467 8/13/2024
6.0.32 15,825 7/9/2024
6.0.31 40,096 5/28/2024
6.0.30 28,712 5/14/2024
6.0.29 53,690 4/9/2024
6.0.28 23,116 3/12/2024
6.0.27 60,607 2/13/2024
6.0.26 67,669 1/9/2024
6.0.25 257,566 11/14/2023
6.0.24 66,300 10/24/2023
6.0.23 22,927 10/10/2023
6.0.22 49,317 9/12/2023
6.0.21 76,319 8/8/2023
6.0.20 114,520 7/11/2023
6.0.19 36,317 6/22/2023
6.0.18 48,576 6/13/2023
6.0.16 210,512 4/11/2023
6.0.15 163,215 3/14/2023
6.0.14 209,385 2/14/2023
6.0.13 223,561 1/10/2023
6.0.12 123,399 12/13/2022
6.0.11 293,708 11/7/2022
6.0.10 501,335 10/11/2022
6.0.9 385,135 9/13/2022
6.0.8 416,563 8/9/2022
6.0.7 410,200 7/12/2022
6.0.6 498,403 6/14/2022
6.0.5 543,588 5/10/2022
6.0.4 356,309 4/11/2022
6.0.3 439,517 3/8/2022
6.0.2 365,036 2/8/2022
6.0.1 749,238 12/14/2021
6.0.0 796,778 11/8/2021
6.0.0-rc.2.21480.10 3,141 10/12/2021
6.0.0-rc.1.21452.15 2,602 9/14/2021
6.0.0-preview.7.21378.6 1,398 8/10/2021
6.0.0-preview.6.21355.2 1,420 7/14/2021
6.0.0-preview.5.21301.17 2,575 6/15/2021
6.0.0-preview.4.21253.5 1,067 5/24/2021
6.0.0-preview.3.21201.13 4,972 4/8/2021
6.0.0-preview.2.21154.6 3,602 3/11/2021 6.0.0-preview.2.21154.6 is deprecated because it is no longer maintained.
6.0.0-preview.1.21103.6 2,710 2/12/2021 6.0.0-preview.1.21103.6 is deprecated because it is no longer maintained.
5.0.17 67,177 5/10/2022 5.0.17 is deprecated because it is no longer maintained.
5.0.16 15,439 4/11/2022 5.0.16 is deprecated because it is no longer maintained.
5.0.15 34,598 3/8/2022 5.0.15 is deprecated because it is no longer maintained.
5.0.14 27,125 2/8/2022 5.0.14 is deprecated because it is no longer maintained.
5.0.13 62,252 12/14/2021 5.0.13 is deprecated because it is no longer maintained.
5.0.12 57,162 11/7/2021 5.0.12 is deprecated because it is no longer maintained.
5.0.11 165,316 10/12/2021 5.0.11 is deprecated because it is no longer maintained.
5.0.10 251,461 9/14/2021 5.0.10 is deprecated because it is no longer maintained.
5.0.9 238,061 8/10/2021 5.0.9 is deprecated because it is no longer maintained.
5.0.8 191,559 7/13/2021 5.0.8 is deprecated because it is no longer maintained.
5.0.7 266,040 6/8/2021 5.0.7 is deprecated because it is no longer maintained.
5.0.6 182,377 5/11/2021 5.0.6 is deprecated because it is no longer maintained.
5.0.5 264,039 4/6/2021 5.0.5 is deprecated because it is no longer maintained.
5.0.4 147,434 3/9/2021 5.0.4 is deprecated because it is no longer maintained.
5.0.3 196,031 2/9/2021 5.0.3 is deprecated because it is no longer maintained.
5.0.2 352,331 1/12/2021 5.0.2 is deprecated because it is no longer maintained.
5.0.1 140,220 12/8/2020 5.0.1 is deprecated because it is no longer maintained.
5.0.0 209,118 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.17 3,287 10/13/2020 5.0.0-rc.2.20475.17 is deprecated because it is no longer maintained.
5.0.0-rc.1.20451.17 3,733 9/14/2020 5.0.0-rc.1.20451.17 is deprecated because it is no longer maintained.
5.0.0-preview.8.20414.8 1,948 8/25/2020 5.0.0-preview.8.20414.8 is deprecated because it is no longer maintained.
5.0.0-preview.7.20365.19 1,549 7/21/2020 5.0.0-preview.7.20365.19 is deprecated because it is no longer maintained.
5.0.0-preview.6.20312.15 1,741 6/25/2020 5.0.0-preview.6.20312.15 is deprecated because it is no longer maintained.
5.0.0-preview.5.20279.2 1,724 6/10/2020 5.0.0-preview.5.20279.2 is deprecated because it is no longer maintained.
5.0.0-preview.4.20257.10 1,437 5/18/2020 5.0.0-preview.4.20257.10 is deprecated because it is no longer maintained.
5.0.0-preview.3.20215.2 1,503 4/23/2020 5.0.0-preview.3.20215.2 is deprecated because it is no longer maintained.
5.0.0-preview.2.20160.3 1,759 4/2/2020 5.0.0-preview.2.20160.3 is deprecated because it is no longer maintained.
5.0.0-preview.1.20120.4 1,039 3/16/2020 5.0.0-preview.1.20120.4 is deprecated because it is no longer maintained.
3.1.32 46,122 12/13/2022
3.1.31 12,565 11/8/2022
3.1.30 21,975 10/11/2022
3.1.29 9,891 9/13/2022
3.1.28 12,833 8/9/2022
3.1.27 16,853 7/12/2022
3.1.26 18,106 6/14/2022
3.1.25 22,029 5/10/2022
3.1.24 27,237 4/11/2022
3.1.23 35,199 3/8/2022
3.1.22 71,086 12/14/2021
3.1.21 231,112 11/7/2021
3.1.20 43,740 10/11/2021
3.1.19 48,786 9/14/2021
3.1.18 67,508 8/10/2021
3.1.17 51,092 7/13/2021
3.1.16 85,672 6/8/2021
3.1.15 141,537 5/11/2021
3.1.14 120,720 4/6/2021
3.1.13 115,904 3/9/2021
3.1.12 196,932 2/9/2021
3.1.11 1,581,449 1/12/2021
3.1.10 200,408 11/9/2020
3.1.9 355,924 10/13/2020
3.1.8 689,396 9/8/2020
3.1.7 444,362 8/11/2020
3.1.6 378,466 7/14/2020
3.1.5 513,655 6/9/2020
3.1.4 277,449 5/12/2020
3.1.3 853,602 3/24/2020
3.1.2 550,254 2/18/2020
3.1.1 478,337 1/14/2020
3.1.0 540,676 12/3/2019
3.1.0-preview3.19553.2 1,513 11/13/2019 3.1.0-preview3.19553.2 is deprecated because it is no longer maintained.
3.1.0-preview2.19525.4 895 11/1/2019 3.1.0-preview2.19525.4 is deprecated because it is no longer maintained.
3.1.0-preview1.19506.1 1,987 10/15/2019 3.1.0-preview1.19506.1 is deprecated because it is no longer maintained.
3.0.3 19,829 2/18/2020 3.0.3 is deprecated because it is no longer maintained.
3.0.2 644,083 1/14/2020 3.0.2 is deprecated because it is no longer maintained.
3.0.1 76,463 11/18/2019 3.0.1 is deprecated because it is no longer maintained.
3.0.0 356,206 9/23/2019 3.0.0 is deprecated because it is no longer maintained.
3.0.0-rc1.19456.10 6,586 9/16/2019 3.0.0-rc1.19456.10 is deprecated because it is no longer maintained.
3.0.0-preview9.19423.4 1,527 9/4/2019 3.0.0-preview9.19423.4 is deprecated because it is no longer maintained.
3.0.0-preview8.19405.4 44,223 8/13/2019 3.0.0-preview8.19405.4 is deprecated because it is no longer maintained.
3.0.0-preview7.19362.4 2,911 7/23/2019 3.0.0-preview7.19362.4 is deprecated because it is no longer maintained.
3.0.0-preview6.19304.6 1,908 6/12/2019 3.0.0-preview6.19304.6 is deprecated because it is no longer maintained.
3.0.0-preview5.19227.9 1,357 5/6/2019 3.0.0-preview5.19227.9 is deprecated because it is no longer maintained.
3.0.0-preview4.19216.2 1,007 4/18/2019 3.0.0-preview4.19216.2 is deprecated because it is no longer maintained.
3.0.0-preview3.19153.1 1,371 3/6/2019 3.0.0-preview3.19153.1 is deprecated because it is no longer maintained.
3.0.0-preview.19074.2 1,104 1/29/2019 3.0.0-preview.19074.2 is deprecated because it is no longer maintained.
3.0.0-preview.18572.1 1,374 12/4/2018 3.0.0-preview.18572.1 is deprecated because it is no longer maintained.
2.2.5 4,061,904 5/14/2019 2.2.5 is deprecated because it is no longer maintained.
2.2.0 1,670,891 12/3/2018 2.2.0 is deprecated because it is no longer maintained.
2.2.0-preview3-35497 21,505 10/17/2018 2.2.0-preview3-35497 is deprecated because it is no longer maintained.
2.2.0-preview2-35157 7,144 9/12/2018 2.2.0-preview2-35157 is deprecated because it is no longer maintained.
2.2.0-preview1-35029 5,908 8/22/2018 2.2.0-preview1-35029 is deprecated because it is no longer maintained.
2.1.1 4,356,322 6/18/2018
2.1.0 1,534,123 5/29/2018
2.1.0-rc1-final 14,661 5/6/2018 2.1.0-rc1-final is deprecated because it is no longer maintained.
2.1.0-preview2-final 14,251 4/10/2018 2.1.0-preview2-final is deprecated because it is no longer maintained.
2.1.0-preview1-final 34,178 2/26/2018 2.1.0-preview1-final is deprecated because it is no longer maintained.
2.0.2 3,797,632 5/7/2018 2.0.2 is deprecated because it is no longer maintained.
2.0.1 3,475,009 3/13/2018 2.0.1 is deprecated because it is no longer maintained.
2.0.0 9,795,317 8/11/2017 2.0.0 is deprecated because it is no longer maintained.
2.0.0-preview2-final 56,521 6/28/2017 2.0.0-preview2-final is deprecated because it is no longer maintained.
2.0.0-preview1-final 7,358 5/10/2017 2.0.0-preview1-final is deprecated because it is no longer maintained.
1.0.2 154,659 5/9/2017 1.0.2 is deprecated because it is no longer maintained.
1.0.1 51,601 3/6/2017 1.0.1 is deprecated because it is no longer maintained.
1.0.0 49,746 11/16/2016 1.0.0 is deprecated because it is no longer maintained.
1.0.0-preview1-final 13,380 10/24/2016 1.0.0-preview1-final is deprecated because it is no longer maintained.