https://github.com/arextest/arex-agent-java-extension-demo
This is a demo that explains how to extend the functionality of an agent locally.
https://github.com/arextest/arex-agent-java-extension-demo
Last synced: 6 months ago
JSON representation
This is a demo that explains how to extend the functionality of an agent locally.
- Host: GitHub
- URL: https://github.com/arextest/arex-agent-java-extension-demo
- Owner: arextest
- Created: 2023-05-29T10:43:01.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-27T09:48:21.000Z (over 2 years ago)
- Last Synced: 2024-02-27T11:13:47.064Z (over 2 years ago)
- Language: Java
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a demo that explains how to extend the functionality of an agent locally.
### DalClientModuleInstrumentation.java
The entry class for the plugin, which implements the `InstrumentationModule` interface and provides SPI
to load the class during arex-agent-java startup
### DalClientInstrumentation.java
Implement specific bytecode modification logic, telling arex-agent-java which class, method to modify, and when to execute
### DalClientAdvice.java
Implement actual recording and replay logic, or your own logic;
Please refer to the detailed: [arex-plugin-development-tutorial]()