-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch configuration to @ConfigMapping (#285)
We plan to retire the legacy config classes at some point in the future so let's move to @ConfigMapping. Note: I also renamed quarkus.log.sentry to quarkus.log.sentry.enabled as the former is quite painful with YAML configuration. I kept quarkus.log.sentry as deprecated and there's a compatibility layer to avoid breaking older applications.
- Loading branch information
Showing
14 changed files
with
102 additions
and
95 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
deployment/src/test/resources/application-sentry-logger-custom.properties
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
deployment/src/test/resources/application-sentry-logger-default.properties
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,3 +1,3 @@ | ||
quarkus.log.sentry=true | ||
quarkus.log.sentry.enabled=true | ||
quarkus.log.sentry.dsn=https://123@default.com/22222 | ||
quarkus.log.sentry.in-app-packages=* |
2 changes: 1 addition & 1 deletion
2
deployment/src/test/resources/application-sentry-logger-environment-option.properties
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
deployment/src/test/resources/application-sentry-logger-release-option.properties
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
deployment/src/test/resources/application-sentry-logger-traces-sample-rate.properties
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,4 +1,4 @@ | ||
quarkus.log.sentry=true | ||
quarkus.log.sentry.enabled=true | ||
quarkus.log.sentry.dsn=https://123@default.com/22222 | ||
quarkus.log.sentry.in-app-packages=* | ||
quarkus.log.sentry.traces-sample-rate=1.0 |
2 changes: 1 addition & 1 deletion
2
deployment/src/test/resources/application-sentry-logger-wrong.properties
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 +1 @@ | ||
quarkus.log.sentry=true | ||
quarkus.log.sentry.enabled=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
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,4 +1,4 @@ | ||
quarkus.log.sentry=true | ||
quarkus.log.sentry.enabled=true | ||
quarkus.log.sentry.dsn=https://123@default.com/22222 | ||
quarkus.log.sentry.in-app-packages=* | ||
quarkus.log.sentry.tags."test.tag"=testvalue |
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.