Skip to content
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
bd1c7bd
Add OAL Engine V2 implementation with V1 template compatibility
wu-sheng Feb 9, 2026
251f243
Switch OAL runtime from V1 to V2
wu-sheng Feb 9, 2026
7af21eb
Add comprehensive error handling and tests for OAL parsing
wu-sheng Feb 9, 2026
1104844
Fix OAL parsing error tests to match actual parser behavior
wu-sheng Feb 9, 2026
531029d
Update OAL parsing error tests with specific line:column assertions
wu-sheng Feb 9, 2026
8758110
Remove integration tests that require server-core dependencies
wu-sheng Feb 9, 2026
3862df5
Fix OAL V2 FreeMarker templates and add integration tests
wu-sheng Feb 10, 2026
01ae4e0
Fix type casting and add production OAL parsing tests
wu-sheng Feb 10, 2026
86c4b4b
Fix critical V1 vs V2 template differences
wu-sheng Feb 10, 2026
c5b61bb
Add comprehensive filter verification tests for OAL V2
wu-sheng Feb 10, 2026
acfee92
Add comprehensive V1 vs V2 bytecode comparison tests
wu-sheng Feb 10, 2026
bbc7b47
Remove V1 OAL engine code and update V2 documentation
wu-sheng Feb 10, 2026
c97a743
Add source generation and bytecode consistency verification
wu-sheng Feb 10, 2026
c5a1c58
Write generated sources to proper package directories for IDE navigation
wu-sheng Feb 10, 2026
25ccedb
Remove oal as root folder in generated-test-sources
wu-sheng Feb 10, 2026
a1fd4af
Move JDK 11 compatibility to CLAUDE.md and update OAL V2 README
wu-sheng Feb 10, 2026
b5e8a5e
Fix incorrect avg() to longAvg() in OAL documentation example
wu-sheng Feb 10, 2026
1281c60
Improve OAL V2 engine with enhanced testing and documentation
wu-sheng Feb 11, 2026
9eefa92
Fix OAL V2 nested boolean attribute handling in function arguments
wu-sheng Feb 11, 2026
3d0651a
Merge remote-tracking branch 'origin/master' into oal-v2
wu-sheng Feb 11, 2026
8d58242
Enhance OAL V2 testing with runtime generation for all production scr…
wu-sheng Feb 11, 2026
8316e6c
Fix javadoc errors by escaping > characters in comments
wu-sheng Feb 11, 2026
b7f4b8e
Fix review comments from copilot
wu-sheng Feb 11, 2026
1f2f838
Improve OAL V2 engine with enhanced testing and documentation
wu-sheng Feb 12, 2026
ae0f123
Remove JDK 8 compatibility code from OAL V2
wu-sheng Feb 12, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
347 changes: 347 additions & 0 deletions CLAUDE.md

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## 10.4.0

#### Project
* Introduce OAL V2 engine:
- Immutable AST models for thread safety and predictable behavior
- Type-safe enums replacing string-based filter operators
- Precise error location reporting with file, line, and column numbers
- Clean separation between parsing and code generation phases
- Enhanced testability with models that can be constructed without parsing
* Fix E2E test metrics verify: make it failure if the metric values all null.
* Support building, testing, and publishing with Java 25.
* Add `CLAUDE.md` as AI assistant guide for the project.
Expand Down
2 changes: 1 addition & 1 deletion docs/en/concepts-and-designs/oal.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ endpoint_p99 = from(Endpoint.latency).filter(name in ("Endpoint1", "Endpoint2"))
serv_Endpoint_p99 = from(Endpoint.latency).filter(name like "serv%").percentile2(10)

// Calculate the avg response time of each Endpoint
endpoint_resp_time = from(Endpoint.latency).avg()
endpoint_resp_time = from(Endpoint.latency).longAvg()

// Calculate the p50, p75, p90, p95 and p99 of each Endpoint by 50 ms steps.
endpoint_percentile = from(Endpoint.latency).percentile2(10)
Expand Down
Loading
Loading