-
Notifications
You must be signed in to change notification settings - Fork 773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[sdk-logs] Update LogRecord to keep CategoryName and Logger in sync #5317
Merged
alanwest
merged 9 commits into
open-telemetry:main
from
CodeBlanch:sdk-logs-categoryname-instrumentationscope
Feb 7, 2024
+106
−36
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6f92c46
Update LogRecord to keep CategoryName and Logger in sync.
CodeBlanch bdd444b
Tweak.
CodeBlanch 8a5a28a
CHANGELOG patch.
CodeBlanch 4911cfa
Warning fixes.
CodeBlanch 96f2237
Merge branch 'main' into sdk-logs-categoryname-instrumentationscope
CodeBlanch 306b7df
Test fixup.
CodeBlanch eb416ed
Merge branch 'sdk-logs-categoryname-instrumentationscope' of https://…
CodeBlanch 6d7409a
Test fixes.
CodeBlanch 61ef311
Test fixes.
CodeBlanch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion
2
src/OpenTelemetry/.publicApi/Experimental/PublicAPI.Unshipped.txt
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
using System.Collections.Concurrent; | ||
using OpenTelemetry.Logs; | ||
|
||
namespace OpenTelemetry.Internal; | ||
|
||
internal sealed class InstrumentationScopeLogger : Logger | ||
{ | ||
private static readonly ConcurrentDictionary<string, InstrumentationScopeLogger> Cache = new(); | ||
|
||
private InstrumentationScopeLogger(string name) | ||
: base(name) | ||
{ | ||
} | ||
|
||
public static InstrumentationScopeLogger Default { get; } = new(string.Empty); | ||
|
||
public static InstrumentationScopeLogger GetInstrumentationScopeLoggerForName(string? name) | ||
{ | ||
return string.IsNullOrWhiteSpace(name) | ||
? Default | ||
: Cache.GetOrAdd(name!, static n => new(n)); | ||
} | ||
|
||
public override void EmitLog(in LogRecordData data, in LogRecordAttributeList attributes) | ||
=> throw new NotSupportedException(); | ||
} |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the tests, we are proving that the values of
logRecord.Logger.Name
andlogRecord.CategoryName
are the same. Is there any difference in using one over the other in this context?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OTLPExporter can remain agnostic to ILogger specific
CategoryName
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No practical difference between the two. This is more of a philosophical change which brings OtlpExporter closer to the spec. The goal being it doesn't know anything about any specific logging framework (ILogger being one of those).