-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use appinsights pkg for isolated az func (#442)
* chore: use preview appinsights pkg for isolated az func * pr-fix: update w/ trace logging for docker tests * pr-tmp: try to see if the package addition is the cause * pr-fix: solely rely on worker pkg * pr-fix: solely rely on worker pkg * pr-fix: solely rely on worker pkg * pr-fix: solely rely on worker pkg * pr-fix: update with env var * pr-fix: update with env var * pr-fix: update with env var * pr-fix: remove app insights from az func regisration * pr-fix: remove app insights from az func regisration * pr-fix: realistic package deps * pr-fix: use new app insights env var * pr-fix: update arcus observability * pr-fix: simplify dependencies * pr-fix: complete upgrade arcus observability * pr-fix: dockerfile setup * pr-fix: move preview package back to arcus * pr-fix: remaining package conflicts * pr-fix: revert to original arcus observability dependency * pr-revert: unnecessary changes * Update Arcus.WebApi.Logging.AzureFunctions.csproj * pr-up: newest preview package workings * Update Arcus.WebApi.Logging.AzureFunctions.csproj * pr-fix: update dockerfile w/ new 7 .net sdk * Update Arcus.WebApi.Logging.AzureFunctions.csproj * pr-fix: force add nuget package diagnostic source * pr-fix: conditional isolated * pr-fix: update webjobs package * Update Dockerfile * Update Dockerfile * Update Arcus.WebApi.Tests.Runtimes.AzureFunction.csproj * Update run-docker-integration-tests.yml * Update IServiceCollectionExtensions.cs * Update IServiceCollectionExtensions.cs * Update Arcus.WebApi.Tests.Integration.csproj * Update Dockerfile * Update Dockerfile * Update Arcus.WebApi.Logging.AzureFunctions.csproj * pr-fix: correct missing package after merge w/ 'main' * pr-fix: revert az func isolated Dockerfile * pr-fix: revert az func in-process Dockerfile * Update Dockerfile * Update Dockerfile * Update Arcus.WebApi.Logging.AzureFunctions.csproj * Update Arcus.WebApi.Logging.AzureFunctions.csproj
- Loading branch information
1 parent
63dd672
commit 6cba745
Showing
11 changed files
with
29 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,4 +82,4 @@ public static IServiceCollection AddHttpCorrelation(this IFunctionsHostBuilder b | |
return services; | ||
} | ||
} | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/Arcus.WebApi.Tests.Integration/Arcus.WebApi.Tests.Integration.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
{ | ||
"version": "2.0", | ||
"logging": { | ||
"applicationInsights": { | ||
"samplingExcludedTypes": "Request", | ||
"samplingSettings": { | ||
"isEnabled": true | ||
} | ||
} | ||
"logging": { | ||
"logLevel": { | ||
"default": "Trace" | ||
}, | ||
"applicationInsights": { | ||
"samplingExcludedTypes": "Request", | ||
"samplingSettings": { | ||
"isEnabled": true | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters