Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
64051a5
ci(iast): fix flakyness (#15210)
avara1986 Nov 13, 2025
042b61a
chore(native): bump libdatadog to v24.0.0 (#15219)
dd-oleksii Nov 13, 2025
a25be14
feat(ffe): integrate datadog-ffe (#15231)
dd-oleksii Nov 13, 2025
1e5d096
chore(writer): enable native writer by default (#15230)
VianneyRuhlmann Nov 13, 2025
015c84a
ci: disable appsec_iast_propagation benchmarks (#15279)
brettlangdon Nov 14, 2025
71f09b2
chore(mcp): add server info metadata on client session "root" spans (…
sabrenner Nov 17, 2025
6f9f4af
backport(llmobs): experiments multi run (#15301)
gary-huang Nov 17, 2025
b385574
ci: update system-tests version (#15345) (#15370)
emmettbutler Nov 20, 2025
bfe134f
First commit
gyuheon0h Oct 2, 2025
d45872e
Dont send runtime id
gyuheon0h Oct 3, 2025
4f1a8c9
No writer context exposed
gyuheon0h Oct 6, 2025
d6c857e
Remove class and module name in runtime frame def
gyuheon0h Oct 13, 2025
b984096
For testing with test tracer in staging
gyuheon0h Oct 20, 2025
e8b57e3
First commit
gyuheon0h Oct 2, 2025
1988007
Dont send runtime id
gyuheon0h Oct 3, 2025
d446181
No writer context exposed
gyuheon0h Oct 6, 2025
eb439b3
Runtime stacks now in main libdd
gyuheon0h Nov 13, 2025
ddc729e
Fixing build issues
gyuheon0h Nov 17, 2025
7bd02ae
Fallback to faulthandler to fix build issue in CI
gyuheon0h Nov 17, 2025
145e3fa
3.14 cant statically link and also cant use faulthandler...
gyuheon0h Nov 18, 2025
c53bb84
Lets just not dynamically link; static symbol *should* be available
gyuheon0h Nov 18, 2025
ad24003
Static linking should expose symbol
gyuheon0h Nov 18, 2025
0212eb5
Static linking to all of python doesnt work, fall back to lazy dynami…
gyuheon0h Nov 18, 2025
4f25bbe
clean up unused funcs
gyuheon0h Nov 19, 2025
2548e54
dont use c code, just have it in rust and fall back
gyuheon0h Nov 23, 2025
3659708
Clean up
gyuheon0h Nov 24, 2025
cb40f5e
First pass respond comments
gyuheon0h Nov 24, 2025
3dc20be
Use ddconfig for runtime stacktrace emission
gyuheon0h Nov 25, 2025
a7128fa
Fix cargo lock
GianlucaBortoli Nov 27, 2025
bfe4239
Set libdatadog commit hash
gyuheon0h Nov 25, 2025
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
8 changes: 4 additions & 4 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
persist-credentials: false
repository: 'DataDog/system-tests'
# Automatically managed, use scripts/update-system-tests-version to update
ref: '38b9edcd63a1158f1a51e0430770052341b9cfdb'
ref: '2eb26336ed43c2db1b7f90fff17ce4f5fc36a12b'

- name: Download wheels to binaries directory
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
persist-credentials: false
repository: 'DataDog/system-tests'
# Automatically managed, use scripts/update-system-tests-version to update
ref: '38b9edcd63a1158f1a51e0430770052341b9cfdb'
ref: '2eb26336ed43c2db1b7f90fff17ce4f5fc36a12b'

- name: Build runner
uses: ./.github/actions/install_runner
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
persist-credentials: false
repository: 'DataDog/system-tests'
# Automatically managed, use scripts/update-system-tests-version to update
ref: '38b9edcd63a1158f1a51e0430770052341b9cfdb'
ref: '2eb26336ed43c2db1b7f90fff17ce4f5fc36a12b'
- name: Download wheels to binaries directory
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
Expand Down Expand Up @@ -313,4 +313,4 @@ jobs:
run: exit 0
- name: Fails if anything else failed
if: needs.parametric.result != 'success' || needs.system-tests.result != 'success'
run: exit 1
run: exit 1
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ variables:
DD_VPA_TEMPLATE: "vpa-template-cpu-p70-10percent-2x-oom-min-cap"
# CI_DEBUG_SERVICES: "true"
# Automatically managed, use scripts/update-system-tests-version to update
SYSTEM_TESTS_REF: "38b9edcd63a1158f1a51e0430770052341b9cfdb"
SYSTEM_TESTS_REF: "2eb26336ed43c2db1b7f90fff17ce4f5fc36a12b"

default:
interruptible: true
Expand Down
Loading