generated from arcus-azure/arcus.github.template
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add az servicebus request tracking (w/o ai support) (#250)
* feat: add az servicebus request tracking (w/o ai support) * pr-style: remove blank lines * Update docs/preview/02-Features/writing-different-telemetry-types.md Co-authored-by: Tom Kerkhove <[email protected]> * temp commit * Update docs/preview/02-Features/writing-different-telemetry-types.md Co-authored-by: Frederik Gheysels <[email protected]> * Update docs/preview/02-Features/writing-different-telemetry-types.md Co-authored-by: Frederik Gheysels <[email protected]> * pr-sug: update with az servicebus namespace prefix overloads * Update docs/preview/02-Features/writing-different-telemetry-types.md Co-authored-by: Frederik Gheysels <[email protected]> * Update src/Arcus.Observability.Telemetry.Core/Logging/RequestSourceSystem.cs Co-authored-by: Frederik Gheysels <[email protected]> * Update src/Arcus.Observability.Telemetry.Core/Logging/RequestSourceSystem.cs Co-authored-by: Frederik Gheysels <[email protected]> * pr-sug: use suffix and full io prefix and full * pr-sug: update with topic subscription * Merge 'master' into 'feature/add-servicebus-reques-tracking' # <type>: (If applied, this commit will...) <subject> (Max 50 char) * pr-fix: more stable testing * pr-fix: only net6.0 support when running integration tests * pr-sug: add explicit suffix example in xml and feature docs * pr-sug: add germany example to suffix examples * pr-sug: use more descriptive operation name in xml docs Co-authored-by: Tom Kerkhove <[email protected]> Co-authored-by: Frederik Gheysels <[email protected]>
- Loading branch information
1 parent
20dfe4f
commit 1e363b7
Showing
10 changed files
with
2,405 additions
and
20 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
442 changes: 440 additions & 2 deletions
442
src/Arcus.Observability.Telemetry.Core/Extensions/ILoggerExtensions.cs
Large diffs are not rendered by default.
Oops, something went wrong.
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
18 changes: 18 additions & 0 deletions
18
src/Arcus.Observability.Telemetry.Core/Logging/RequestSourceSystem.cs
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace Arcus.Observability.Telemetry.Core.Logging | ||
{ | ||
/// <summary> | ||
/// Represents the system from where the request came from. | ||
/// </summary> | ||
public enum RequestSourceSystem | ||
{ | ||
/// <summary> | ||
/// Specifies that the request-source is an Azure Service Bus queue or topic. | ||
/// </summary> | ||
AzureServiceBus, | ||
|
||
/// <summary> | ||
/// Specifies that the request-source is a HTTP request | ||
/// </summary> | ||
Http | ||
} | ||
} |
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
2 changes: 1 addition & 1 deletion
2
src/Arcus.Observability.Tests.Integration/Arcus.Observability.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
Oops, something went wrong.