-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feature: use configuration as dependency * test: add config as test dependency * add PAT to workflow * feature: adapt to config 3.0.2-dev * fix: adjust artifact path * use correct version in build.gradle * feature: add rules containing scopes and tracing actions * feature: update methods hooks according to rules * test: refactor current tests * test: add tests * rename test files * apply requested changes * move configuration * improve resolveTracing
- Loading branch information
Showing
62 changed files
with
1,766 additions
and
777 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
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
44 changes: 0 additions & 44 deletions
44
...cks/inspectit/gepard/agent/instrumentation/hook/configuration/ClassHookConfiguration.java
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
...agent/instrumentation/hook/configuration/exception/ConflictingConfigurationException.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,10 @@ | ||
/* (C) 2024 */ | ||
package rocks.inspectit.gepard.agent.instrumentation.hook.configuration.exception; | ||
|
||
/** Exception errors, while finding conflicts inside the instrumentation configuration. */ | ||
public class ConflictingConfigurationException extends RuntimeException { | ||
|
||
public ConflictingConfigurationException(String message) { | ||
super(message); | ||
} | ||
} |
Oops, something went wrong.