![]() |
VOOZH | about |
dotnet add package Microsoft.Azure.WebJobs.Logging.ApplicationInsights --version 3.0.47
NuGet\Install-Package Microsoft.Azure.WebJobs.Logging.ApplicationInsights -Version 3.0.47
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.47" />
<PackageVersion Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.47" />Directory.Packages.props
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" />Project file
paket add Microsoft.Azure.WebJobs.Logging.ApplicationInsights --version 3.0.47
#r "nuget: Microsoft.Azure.WebJobs.Logging.ApplicationInsights, 3.0.47"
#:package Microsoft.Azure.WebJobs.Logging.ApplicationInsights@3.0.47
#addin nuget:?package=Microsoft.Azure.WebJobs.Logging.ApplicationInsights&version=3.0.47Install as a Cake Addin
#tool nuget:?package=Microsoft.Azure.WebJobs.Logging.ApplicationInsights&version=3.0.47Install as a Cake Tool
This package adds Application Insights based logging capabilities to the WebJobs SDK. For more information, please visit https://go.microsoft.com/fwlink/?linkid=2279708.
ApplicationInsightsLoggingBuilderExtensionsApplicationInsightsLoggerProviderApplicationInsightsLoggerOptionsThe below example demonstrates configuration of ApplicationInsights logging on host startup via the AddApplicationInsightsWebJobs builder method.
using System.Threading.Tasks;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
class Program
{
public static async Task Main(string[] args)
{
var builder = Host.CreateDefaultBuilder(args)
.ConfigureWebJobs(b =>
{
b.AddAzureStorageCoreServices();
b.AddAzureStorageQueues();
})
.ConfigureLogging((context, b) =>
{
// If this key exists in any config, use it to enable App Insights
string appInsightsKey = context.Configuration["APPINSIGHTS_INSTRUMENTATIONKEY"];
if (!string.IsNullOrEmpty(appInsightsKey))
{
b.AddApplicationInsightsWebJobs(o => o.InstrumentationKey = appInsightsKey);
}
});
using var host = builder.Build();
await host.RunAsync();
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on Microsoft.Azure.WebJobs.Logging.ApplicationInsights:
| Package | Downloads |
|---|---|
|
Microsoft.Azure.WebJobs.Extensions.ApplicationInsights
This package contains the extension for Application Insights. |
|
|
AzureFunctions.Better.ApplicationInsights
Improve Application Insights (App Insights) integration for Azure Function v4. Automatically discard cruft telemetry emitted by Functions runtime. Add your own telemetry processors. |
|
|
Microsoft.Azure.WebJobs.Extensions.Fabric
Host extension for Fabric User Data Functions. |
|
|
Microsoft.Azure.WebJobs.Script
This package contains the runtime assemblies for Microsoft.Azure.WebJobs.Script. For more information, please visit http://github.com/Azure/azure-webjobs-sdk-script |
|
|
RevolutionPlatform.RPLHelpers
Common helper library for Revolution Platform. Includes query generation and vertex parsing for Gremlin.Net. |
Showing the top 3 popular GitHub repositories that depend on Microsoft.Azure.WebJobs.Logging.ApplicationInsights:
| Repository | Stars |
|---|---|
|
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
|
|
|
Azure/azure-functions-host
The host/runtime that powers Azure Functions
|
|
|
Azure/azure-functions-durable-extension
Durable Task Framework extension for Azure Functions
|
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.47 | 7,405 | 6/4/2026 |
| 3.0.46 | 21,233 | 5/12/2026 |
| 3.0.45 | 115,860 | 2/17/2026 |
| 3.0.44 | 127,150 | 12/8/2025 |
| 3.0.41 | 2,404,472 | 7/12/2024 |
| 3.0.35 | 2,874,377 | 4/4/2023 |
| 3.0.34 | 358,764 | 2/22/2023 |
| 3.0.33 | 1,893,312 | 5/9/2022 |
| 3.0.30 | 1,517,144 | 9/17/2021 |
| 3.0.27 | 1,222,049 | 3/22/2021 |
| 3.0.25 | 606,512 | 1/13/2021 |
| 3.0.23 | 507,648 | 10/2/2020 |
| 3.0.18 | 519,074 | 8/12/2020 |
| 3.0.14 | 1,690,628 | 10/16/2019 |
| 3.0.13 | 98,521 | 9/20/2019 |
| 3.0.12 | 76,349 | 8/30/2019 |
| 3.0.8 | 377,487 | 5/3/2019 |
| 3.0.6 | 289,382 | 3/29/2019 |
| 3.0.5 | 80,759 | 3/7/2019 |
| 3.0.4 | 216,215 | 1/25/2019 |