-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: configure trace level #71
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.vaadin.extension; | ||
|
||
/** | ||
* Constants used by the Vaadin observability extension, for example for | ||
* configuration options | ||
*/ | ||
public class Constants { | ||
public static final String CONFIG_TRACE_LEVEL = "otel.instrumentation.vaadin.trace-level"; | ||
} |
34 changes: 34 additions & 0 deletions
34
src/main/java/com/vaadin/extension/conf/Configuration.java
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,34 @@ | ||
package com.vaadin.extension.conf; | ||
|
||
import com.vaadin.extension.Constants; | ||
|
||
import io.opentelemetry.javaagent.bootstrap.internal.InstrumentationConfig; | ||
|
||
/** | ||
* Provides the effective configuration for the Vaadin observability extension. | ||
*/ | ||
public class Configuration { | ||
public static final TraceLevel TRACE_LEVEL = determineTraceLevel(); | ||
|
||
private static TraceLevel determineTraceLevel() { | ||
String traceLevelString = InstrumentationConfig.get().getString( | ||
Constants.CONFIG_TRACE_LEVEL, TraceLevel.DEFAULT.name()); | ||
try { | ||
return TraceLevel.valueOf(traceLevelString.toUpperCase()); | ||
} catch (IllegalArgumentException ignored) { | ||
return TraceLevel.DEFAULT; | ||
} | ||
} | ||
|
||
/** | ||
* Checks whether a trace level is enabled. Can be used by instrumentations | ||
* to check whether some detail should be added to a trace or not. | ||
* | ||
* @param traceLevel | ||
* the trace level to check | ||
* @return true if the trace level is enabled, false if not | ||
*/ | ||
public static boolean isEnabled(TraceLevel traceLevel) { | ||
return TRACE_LEVEL.includes(traceLevel); | ||
} | ||
} |
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,14 @@ | ||
package com.vaadin.extension.conf; | ||
|
||
/** | ||
* The detail level of traces. The global trace level can be configured in the | ||
* {@link Configuration}, and individual instrumentations can check the trace | ||
* level to determine whether to add something to a trace or not. | ||
*/ | ||
public enum TraceLevel { | ||
MINIMUM, DEFAULT, MAXIMUM,; | ||
|
||
public boolean includes(TraceLevel level) { | ||
return this.ordinal() >= level.ordinal(); | ||
} | ||
} |
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
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.
Added some construct here to mock the enabled check, and allow configuring a specific trace level in tests.
Since we don't don't expose the API of our library to developers, we could also consider changing the configuration API to use getters and setters.