Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Graal build-time instrumentation config for TracePropagationStyle #8065

Conversation

MattAlp
Copy link
Contributor

@MattAlp MattAlp commented Dec 6, 2024

What Does This Do

This adds the TracePropagationStyle enum to the build-time initialized list provided to GraalVM Native Image, similar to its deprecated predecessor PropagationStyle.

Motivation

While modifying system tests to use JDK-22-based Graal, the following error was seen during container generation:

Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: An object of type 'datadog.trace.api.TracePropagationStyle' was found in the image heap. This type, however, is marked for initialization at image run time for the following reason: classes are initialized at run time by default.
#21 15.26 This is not allowed for correctness reasons: All objects that are stored in the image heap must be initialized at build time.
#21 15.26 
#21 15.26 You now have two options to resolve this:
#21 15.26 
#21 15.26 1) If it is intended that objects of type 'datadog.trace.api.TracePropagationStyle' are persisted in the image heap, add 
#21 15.26 
#21 15.26     '--initialize-at-build-time=datadog.trace.api.TracePropagationStyle'
#21 15.26 
#21 15.26 to the native-image arguments. Note that initializing new types can store additional objects to the heap. It is advised to check the static fields of 'datadog.trace.api.TracePropagationStyle' to see if they are safe for build-time initialization,  and that they do not contain any sensitive data that should not become part of the image.
#21 15.26 
#21 15.26 2) If these objects should not be stored in the image heap, you can use 
#21 15.26 
#21 15.26     '--trace-object-instantiation=datadog.trace.api.TracePropagationStyle'
#21 15.26 
#21 15.26 to find classes that instantiate these objects. Once you found such a class, you can mark it explicitly for run time initialization with 
#21 15.26 
#21 15.26     '--initialize-at-run-time=<culprit>'
#21 15.26 
#21 15.26 to prevent the instantiation of the object.
#21 15.26 
#21 15.26 If you are seeing this message after upgrading to a new GraalVM release, this means that some objects ended up in the image heap without their type being marked with --initialize-at-build-time.
#21 15.26 To fix this, include '--initialize-at-build-time=datadog.trace.api.TracePropagationStyle' in your configuration. If the classes do not originate from your code, it is advised to update all library or framework dependencies to the latest version before addressing this error.
#21 15.26 

Additional Notes

Contributor Checklist

Jira ticket: PROF-11012

@MattAlp MattAlp added type: bug comp: native-image GraalVM native-image labels Dec 6, 2024
@MattAlp MattAlp requested a review from a team as a code owner December 6, 2024 18:57
@MattAlp MattAlp requested review from mcculls and a team December 6, 2024 18:57
Copy link
Contributor

@jordan-wong jordan-wong left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@pr-commenter
Copy link

pr-commenter bot commented Dec 6, 2024

Benchmarks

Startup

Parameters

Baseline Candidate
baseline_or_candidate baseline candidate
git_branch master mattalp/update-svm-generator-inst-for-trace-propagation-style
git_commit_date 1733503294 1733511030
git_commit_sha 0db6312 548d10c
release_version 1.44.0-SNAPSHOT~0db63127b0 1.44.0-SNAPSHOT~548d10cc75
See matching parameters
Baseline Candidate
application insecure-bank insecure-bank
ci_job_date 1733513533 1733513533
ci_job_id 729627807 729627807
ci_pipeline_id 50477846 50477846
cpu_model Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
module Agent Agent
parent None None
variant iast iast

Summary

Found 0 performance improvements and 0 performance regressions! Performance is the same for 51 metrics, 12 unstable metrics.

Startup time reports for petclinic
gantt
    title petclinic - global startup overhead: candidate=1.44.0-SNAPSHOT~548d10cc75, baseline=1.44.0-SNAPSHOT~0db63127b0

    dateFormat X
    axisFormat %s
section tracing
Agent [baseline] (1.091 s) : 0, 1091087
Total [baseline] (10.443 s) : 0, 10443238
Agent [candidate] (1.108 s) : 0, 1107851
Total [candidate] (10.458 s) : 0, 10458282
section appsec
Agent [baseline] (1.224 s) : 0, 1224078
Total [baseline] (10.795 s) : 0, 10794549
Agent [candidate] (1.227 s) : 0, 1227481
Total [candidate] (10.773 s) : 0, 10772627
section iast
Agent [baseline] (1.228 s) : 0, 1228149
Total [baseline] (10.995 s) : 0, 10995429
Agent [candidate] (1.226 s) : 0, 1225745
Total [candidate] (10.98 s) : 0, 10979773
section profiling
Agent [baseline] (1.315 s) : 0, 1315497
Total [baseline] (10.865 s) : 0, 10864695
Agent [candidate] (1.327 s) : 0, 1326728
Total [candidate] (10.796 s) : 0, 10796381
Loading
  • baseline results
Module Variant Duration Δ tracing
Agent tracing 1.091 s -
Agent appsec 1.224 s 132.991 ms (12.2%)
Agent iast 1.228 s 137.062 ms (12.6%)
Agent profiling 1.315 s 224.41 ms (20.6%)
Total tracing 10.443 s -
Total appsec 10.795 s 351.311 ms (3.4%)
Total iast 10.995 s 552.191 ms (5.3%)
Total profiling 10.865 s 421.457 ms (4.0%)
  • candidate results
Module Variant Duration Δ tracing
Agent tracing 1.108 s -
Agent appsec 1.227 s 119.63 ms (10.8%)
Agent iast 1.226 s 117.894 ms (10.6%)
Agent profiling 1.327 s 218.877 ms (19.8%)
Total tracing 10.458 s -
Total appsec 10.773 s 314.344 ms (3.0%)
Total iast 10.98 s 521.491 ms (5.0%)
Total profiling 10.796 s 338.098 ms (3.2%)
gantt
    title petclinic - break down per module: candidate=1.44.0-SNAPSHOT~548d10cc75, baseline=1.44.0-SNAPSHOT~0db63127b0

    dateFormat X
    axisFormat %s
section tracing
BytebuddyAgent [baseline] (694.942 ms) : 0, 694942
BytebuddyAgent [candidate] (704.552 ms) : 0, 704552
GlobalTracer [baseline] (317.598 ms) : 0, 317598
GlobalTracer [candidate] (321.488 ms) : 0, 321488
AppSec [baseline] (54.852 ms) : 0, 54852
AppSec [candidate] (55.31 ms) : 0, 55310
Remote Config [baseline] (684.703 µs) : 0, 685
Remote Config [candidate] (703.904 µs) : 0, 704
Telemetry [baseline] (9.25 ms) : 0, 9250
Telemetry [candidate] (11.869 ms) : 0, 11869
section appsec
BytebuddyAgent [baseline] (711.306 ms) : 0, 711306
BytebuddyAgent [candidate] (713.174 ms) : 0, 713174
GlobalTracer [baseline] (313.873 ms) : 0, 313873
GlobalTracer [candidate] (314.85 ms) : 0, 314850
AppSec [baseline] (166.502 ms) : 0, 166502
AppSec [candidate] (167.77 ms) : 0, 167770
IAST [baseline] (19.696 ms) : 0, 19696
IAST [candidate] (18.937 ms) : 0, 18937
Remote Config [baseline] (644.602 µs) : 0, 645
Remote Config [candidate] (660.46 µs) : 0, 660
Telemetry [baseline] (8.174 ms) : 0, 8174
Telemetry [candidate] (7.791 ms) : 0, 7791
section iast
BytebuddyAgent [baseline] (819.497 ms) : 0, 819497
BytebuddyAgent [candidate] (818.501 ms) : 0, 818501
GlobalTracer [baseline] (307.59 ms) : 0, 307590
GlobalTracer [candidate] (306.022 ms) : 0, 306022
AppSec [baseline] (57.206 ms) : 0, 57206
AppSec [candidate] (57.122 ms) : 0, 57122
IAST [baseline] (21.826 ms) : 0, 21826
IAST [candidate] (21.957 ms) : 0, 21957
Remote Config [baseline] (642.325 µs) : 0, 642
Remote Config [candidate] (656.193 µs) : 0, 656
Telemetry [baseline] (7.571 ms) : 0, 7571
Telemetry [candidate] (7.651 ms) : 0, 7651
section profiling
BytebuddyAgent [baseline] (689.253 ms) : 0, 689253
BytebuddyAgent [candidate] (693.412 ms) : 0, 693412
GlobalTracer [baseline] (432.377 ms) : 0, 432377
GlobalTracer [candidate] (437.257 ms) : 0, 437257
AppSec [baseline] (53.536 ms) : 0, 53536
AppSec [candidate] (53.984 ms) : 0, 53984
Remote Config [baseline] (664.62 µs) : 0, 665
Remote Config [candidate] (662.328 µs) : 0, 662
Telemetry [baseline] (7.686 ms) : 0, 7686
Telemetry [candidate] (7.746 ms) : 0, 7746
ProfilingAgent [baseline] (92.967 ms) : 0, 92967
ProfilingAgent [candidate] (94.357 ms) : 0, 94357
Profiling [baseline] (92.99 ms) : 0, 92990
Profiling [candidate] (94.381 ms) : 0, 94381
Loading
Startup time reports for insecure-bank
gantt
    title insecure-bank - global startup overhead: candidate=1.44.0-SNAPSHOT~548d10cc75, baseline=1.44.0-SNAPSHOT~0db63127b0

    dateFormat X
    axisFormat %s
section tracing
Agent [baseline] (1.097 s) : 0, 1097495
Total [baseline] (8.668 s) : 0, 8668050
Agent [candidate] (1.1 s) : 0, 1100215
Total [candidate] (8.64 s) : 0, 8640100
section iast
Agent [baseline] (1.236 s) : 0, 1235864
Total [baseline] (9.24 s) : 0, 9239744
Agent [candidate] (1.225 s) : 0, 1225108
Total [candidate] (9.21 s) : 0, 9210205
section iast_HARDCODED_SECRET_DISABLED
Agent [baseline] (1.219 s) : 0, 1218776
Total [baseline] (9.157 s) : 0, 9157260
Agent [candidate] (1.22 s) : 0, 1219720
Total [candidate] (9.208 s) : 0, 9207537
section iast_TELEMETRY_OFF
Agent [baseline] (1.214 s) : 0, 1214393
Total [baseline] (9.185 s) : 0, 9185036
Agent [candidate] (1.221 s) : 0, 1220548
Total [candidate] (9.192 s) : 0, 9192178
Loading
  • baseline results
Module Variant Duration Δ tracing
Agent tracing 1.097 s -
Agent iast 1.236 s 138.369 ms (12.6%)
Agent iast_HARDCODED_SECRET_DISABLED 1.219 s 121.281 ms (11.1%)
Agent iast_TELEMETRY_OFF 1.214 s 116.897 ms (10.7%)
Total tracing 8.668 s -
Total iast 9.24 s 571.694 ms (6.6%)
Total iast_HARDCODED_SECRET_DISABLED 9.157 s 489.21 ms (5.6%)
Total iast_TELEMETRY_OFF 9.185 s 516.986 ms (6.0%)
  • candidate results
Module Variant Duration Δ tracing
Agent tracing 1.1 s -
Agent iast 1.225 s 124.892 ms (11.4%)
Agent iast_HARDCODED_SECRET_DISABLED 1.22 s 119.505 ms (10.9%)
Agent iast_TELEMETRY_OFF 1.221 s 120.332 ms (10.9%)
Total tracing 8.64 s -
Total iast 9.21 s 570.105 ms (6.6%)
Total iast_HARDCODED_SECRET_DISABLED 9.208 s 567.437 ms (6.6%)
Total iast_TELEMETRY_OFF 9.192 s 552.078 ms (6.4%)
gantt
    title insecure-bank - break down per module: candidate=1.44.0-SNAPSHOT~548d10cc75, baseline=1.44.0-SNAPSHOT~0db63127b0

    dateFormat X
    axisFormat %s
section tracing
BytebuddyAgent [baseline] (696.782 ms) : 0, 696782
BytebuddyAgent [candidate] (699.921 ms) : 0, 699921
GlobalTracer [baseline] (320.385 ms) : 0, 320385
GlobalTracer [candidate] (319.98 ms) : 0, 319980
AppSec [baseline] (55.315 ms) : 0, 55315
AppSec [candidate] (54.465 ms) : 0, 54465
Remote Config [baseline] (679.631 µs) : 0, 680
Remote Config [candidate] (681.264 µs) : 0, 681
Telemetry [baseline] (10.551 ms) : 0, 10551
Telemetry [candidate] (11.331 ms) : 0, 11331
section iast
BytebuddyAgent [baseline] (825.755 ms) : 0, 825755
BytebuddyAgent [candidate] (817.616 ms) : 0, 817616
GlobalTracer [baseline] (309.041 ms) : 0, 309041
GlobalTracer [candidate] (307.343 ms) : 0, 307343
AppSec [baseline] (56.117 ms) : 0, 56117
AppSec [candidate] (57.396 ms) : 0, 57396
IAST [baseline] (22.792 ms) : 0, 22792
IAST [candidate] (20.709 ms) : 0, 20709
Remote Config [baseline] (638.732 µs) : 0, 639
Remote Config [candidate] (662.255 µs) : 0, 662
Telemetry [baseline] (7.588 ms) : 0, 7588
Telemetry [candidate] (7.547 ms) : 0, 7547
section iast_HARDCODED_SECRET_DISABLED
BytebuddyAgent [baseline] (812.81 ms) : 0, 812810
BytebuddyAgent [candidate] (812.53 ms) : 0, 812530
GlobalTracer [baseline] (305.319 ms) : 0, 305319
GlobalTracer [candidate] (305.553 ms) : 0, 305553
AppSec [baseline] (57.861 ms) : 0, 57861
AppSec [candidate] (57.703 ms) : 0, 57703
IAST [baseline] (20.896 ms) : 0, 20896
IAST [candidate] (21.929 ms) : 0, 21929
Remote Config [baseline] (636.976 µs) : 0, 637
Remote Config [candidate] (640.306 µs) : 0, 640
Telemetry [baseline] (7.5 ms) : 0, 7500
Telemetry [candidate] (7.595 ms) : 0, 7595
section iast_TELEMETRY_OFF
BytebuddyAgent [baseline] (808.478 ms) : 0, 808478
BytebuddyAgent [candidate] (813.345 ms) : 0, 813345
GlobalTracer [baseline] (305.329 ms) : 0, 305329
GlobalTracer [candidate] (306.58 ms) : 0, 306580
AppSec [baseline] (56.321 ms) : 0, 56321
AppSec [candidate] (57.444 ms) : 0, 57444
IAST [baseline] (22.407 ms) : 0, 22407
IAST [candidate] (21.359 ms) : 0, 21359
Remote Config [baseline] (639.469 µs) : 0, 639
Remote Config [candidate] (624.848 µs) : 0, 625
Telemetry [baseline] (7.539 ms) : 0, 7539
Telemetry [candidate] (7.427 ms) : 0, 7427
Loading

Load

Parameters

Baseline Candidate
baseline_or_candidate baseline candidate
end_time 2024-12-06T19:02:14 2024-12-06T19:09:13
git_branch master mattalp/update-svm-generator-inst-for-trace-propagation-style
git_commit_date 1733503294 1733511030
git_commit_sha 0db6312 548d10c
release_version 1.44.0-SNAPSHOT~0db63127b0 1.44.0-SNAPSHOT~548d10cc75
start_time 2024-12-06T19:02:01 2024-12-06T19:08:59
See matching parameters
Baseline Candidate
application insecure-bank insecure-bank
ci_job_date 1733512506 1733512506
ci_job_id 729627808 729627808
ci_pipeline_id 50477846 50477846
cpu_model Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
variant iast iast

Summary

Found 0 performance improvements and 0 performance regressions! Performance is the same for 11 metrics, 17 unstable metrics.

Request duration reports for petclinic
gantt
    title petclinic - request duration [CI 0.99] : candidate=1.44.0-SNAPSHOT~548d10cc75, baseline=1.44.0-SNAPSHOT~0db63127b0
    dateFormat X
    axisFormat %s
section baseline
no_agent (1.354 ms) : 1335, 1373
.   : milestone, 1354,
appsec (1.737 ms) : 1712, 1763
.   : milestone, 1737,
appsec_no_iast (1.747 ms) : 1723, 1771
.   : milestone, 1747,
iast (1.49 ms) : 1468, 1513
.   : milestone, 1490,
profiling (1.51 ms) : 1485, 1535
.   : milestone, 1510,
tracing (1.504 ms) : 1480, 1528
.   : milestone, 1504,
section candidate
no_agent (1.355 ms) : 1336, 1375
.   : milestone, 1355,
appsec (1.75 ms) : 1725, 1775
.   : milestone, 1750,
appsec_no_iast (1.76 ms) : 1737, 1784
.   : milestone, 1760,
iast (1.486 ms) : 1462, 1509
.   : milestone, 1486,
profiling (1.524 ms) : 1499, 1548
.   : milestone, 1524,
tracing (1.47 ms) : 1445, 1495
.   : milestone, 1470,
Loading
  • baseline results
Variant Request duration [CI 0.99] Δ no_agent
no_agent 1.354 ms [1.335 ms, 1.373 ms] -
appsec 1.737 ms [1.712 ms, 1.763 ms] 383.437 µs (28.3%)
appsec_no_iast 1.747 ms [1.723 ms, 1.771 ms] 393.028 µs (29.0%)
iast 1.49 ms [1.468 ms, 1.513 ms] 136.141 µs (10.1%)
profiling 1.51 ms [1.485 ms, 1.535 ms] 156.04 µs (11.5%)
tracing 1.504 ms [1.48 ms, 1.528 ms] 149.927 µs (11.1%)
  • candidate results
Variant Request duration [CI 0.99] Δ no_agent
no_agent 1.355 ms [1.336 ms, 1.375 ms] -
appsec 1.75 ms [1.725 ms, 1.775 ms] 394.593 µs (29.1%)
appsec_no_iast 1.76 ms [1.737 ms, 1.784 ms] 405.225 µs (29.9%)
iast 1.486 ms [1.462 ms, 1.509 ms] 130.418 µs (9.6%)
profiling 1.524 ms [1.499 ms, 1.548 ms] 168.686 µs (12.4%)
tracing 1.47 ms [1.445 ms, 1.495 ms] 114.749 µs (8.5%)
Request duration reports for insecure-bank
gantt
    title insecure-bank - request duration [CI 0.99] : candidate=1.44.0-SNAPSHOT~548d10cc75, baseline=1.44.0-SNAPSHOT~0db63127b0
    dateFormat X
    axisFormat %s
section baseline
no_agent (377.254 µs) : 357, 397
.   : milestone, 377,
iast (488.443 µs) : 467, 510
.   : milestone, 488,
iast_FULL (650.081 µs) : 629, 671
.   : milestone, 650,
iast_GLOBAL (531.734 µs) : 507, 556
.   : milestone, 532,
iast_HARDCODED_SECRET_DISABLED (492.581 µs) : 471, 514
.   : milestone, 493,
iast_INACTIVE (448.604 µs) : 428, 469
.   : milestone, 449,
iast_TELEMETRY_OFF (476.149 µs) : 455, 497
.   : milestone, 476,
tracing (447.76 µs) : 427, 468
.   : milestone, 448,
section candidate
no_agent (370.736 µs) : 351, 390
.   : milestone, 371,
iast (488.982 µs) : 467, 510
.   : milestone, 489,
iast_FULL (648.983 µs) : 628, 670
.   : milestone, 649,
iast_GLOBAL (515.198 µs) : 494, 537
.   : milestone, 515,
iast_HARDCODED_SECRET_DISABLED (502.251 µs) : 480, 524
.   : milestone, 502,
iast_INACTIVE (454.587 µs) : 433, 476
.   : milestone, 455,
iast_TELEMETRY_OFF (477.919 µs) : 457, 499
.   : milestone, 478,
tracing (445.024 µs) : 424, 466
.   : milestone, 445,
Loading
  • baseline results
Variant Request duration [CI 0.99] Δ no_agent
no_agent 377.254 µs [357.212 µs, 397.296 µs] -
iast 488.443 µs [466.729 µs, 510.157 µs] 111.189 µs (29.5%)
iast_FULL 650.081 µs [628.68 µs, 671.483 µs] 272.827 µs (72.3%)
iast_GLOBAL 531.734 µs [507.009 µs, 556.459 µs] 154.48 µs (40.9%)
iast_HARDCODED_SECRET_DISABLED 492.581 µs [470.985 µs, 514.177 µs] 115.327 µs (30.6%)
iast_INACTIVE 448.604 µs [427.945 µs, 469.264 µs] 71.35 µs (18.9%)
iast_TELEMETRY_OFF 476.149 µs [454.865 µs, 497.433 µs] 98.895 µs (26.2%)
tracing 447.76 µs [427.082 µs, 468.438 µs] 70.506 µs (18.7%)
  • candidate results
Variant Request duration [CI 0.99] Δ no_agent
no_agent 370.736 µs [351.121 µs, 390.351 µs] -
iast 488.982 µs [467.491 µs, 510.472 µs] 118.246 µs (31.9%)
iast_FULL 648.983 µs [627.542 µs, 670.423 µs] 278.247 µs (75.1%)
iast_GLOBAL 515.198 µs [493.72 µs, 536.676 µs] 144.462 µs (39.0%)
iast_HARDCODED_SECRET_DISABLED 502.251 µs [480.276 µs, 524.225 µs] 131.515 µs (35.5%)
iast_INACTIVE 454.587 µs [433.392 µs, 475.781 µs] 83.851 µs (22.6%)
iast_TELEMETRY_OFF 477.919 µs [456.574 µs, 499.264 µs] 107.183 µs (28.9%)
tracing 445.024 µs [424.029 µs, 466.019 µs] 74.288 µs (20.0%)

Dacapo

Parameters

Baseline Candidate
baseline_or_candidate baseline candidate
git_branch master mattalp/update-svm-generator-inst-for-trace-propagation-style
git_commit_date 1733503294 1733511030
git_commit_sha 0db6312 548d10c
release_version 1.44.0-SNAPSHOT~0db63127b0 1.44.0-SNAPSHOT~548d10cc75
See matching parameters
Baseline Candidate
application biojava biojava
ci_job_date 1733513125 1733513125
ci_job_id 729627809 729627809
ci_pipeline_id 50477846 50477846
cpu_model Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
variant appsec appsec

Summary

Found 0 performance improvements and 0 performance regressions! Performance is the same for 12 metrics, 0 unstable metrics.

Execution time for biojava
gantt
    title biojava - execution time [CI 0.99] : candidate=1.44.0-SNAPSHOT~548d10cc75, baseline=1.44.0-SNAPSHOT~0db63127b0
    dateFormat X
    axisFormat %s
section baseline
no_agent (14.984 s) : 14984000, 14984000
.   : milestone, 14984000,
appsec (14.93 s) : 14930000, 14930000
.   : milestone, 14930000,
iast (19.063 s) : 19063000, 19063000
.   : milestone, 19063000,
iast_GLOBAL (18.002 s) : 18002000, 18002000
.   : milestone, 18002000,
profiling (14.974 s) : 14974000, 14974000
.   : milestone, 14974000,
tracing (15.087 s) : 15087000, 15087000
.   : milestone, 15087000,
section candidate
no_agent (14.913 s) : 14913000, 14913000
.   : milestone, 14913000,
appsec (14.731 s) : 14731000, 14731000
.   : milestone, 14731000,
iast (19.074 s) : 19074000, 19074000
.   : milestone, 19074000,
iast_GLOBAL (17.934 s) : 17934000, 17934000
.   : milestone, 17934000,
profiling (14.849 s) : 14849000, 14849000
.   : milestone, 14849000,
tracing (14.886 s) : 14886000, 14886000
.   : milestone, 14886000,
Loading
  • baseline results
Variant Execution Time [CI 0.99] Δ no_agent
no_agent 14.984 s [14.984 s, 14.984 s] -
appsec 14.93 s [14.93 s, 14.93 s] -54.0 ms (-0.4%)
iast 19.063 s [19.063 s, 19.063 s] 4.079 s (27.2%)
iast_GLOBAL 18.002 s [18.002 s, 18.002 s] 3.018 s (20.1%)
profiling 14.974 s [14.974 s, 14.974 s] -10.0 ms (-0.1%)
tracing 15.087 s [15.087 s, 15.087 s] 103.0 ms (0.7%)
  • candidate results
Variant Execution Time [CI 0.99] Δ no_agent
no_agent 14.913 s [14.913 s, 14.913 s] -
appsec 14.731 s [14.731 s, 14.731 s] -182.0 ms (-1.2%)
iast 19.074 s [19.074 s, 19.074 s] 4.161 s (27.9%)
iast_GLOBAL 17.934 s [17.934 s, 17.934 s] 3.021 s (20.3%)
profiling 14.849 s [14.849 s, 14.849 s] -64.0 ms (-0.4%)
tracing 14.886 s [14.886 s, 14.886 s] -27.0 ms (-0.2%)
Execution time for tomcat
gantt
    title tomcat - execution time [CI 0.99] : candidate=1.44.0-SNAPSHOT~548d10cc75, baseline=1.44.0-SNAPSHOT~0db63127b0
    dateFormat X
    axisFormat %s
section baseline
no_agent (1.471 ms) : 1459, 1482
.   : milestone, 1471,
appsec (2.355 ms) : 2313, 2397
.   : milestone, 2355,
iast (2.09 ms) : 2038, 2143
.   : milestone, 2090,
iast_GLOBAL (2.15 ms) : 2096, 2203
.   : milestone, 2150,
profiling (1.969 ms) : 1926, 2012
.   : milestone, 1969,
tracing (1.945 ms) : 1905, 1986
.   : milestone, 1945,
section candidate
no_agent (1.472 ms) : 1460, 1483
.   : milestone, 1472,
appsec (2.361 ms) : 2320, 2403
.   : milestone, 2361,
iast (2.094 ms) : 2041, 2146
.   : milestone, 2094,
iast_GLOBAL (2.139 ms) : 2085, 2192
.   : milestone, 2139,
profiling (1.961 ms) : 1918, 2004
.   : milestone, 1961,
tracing (1.935 ms) : 1894, 1976
.   : milestone, 1935,
Loading
  • baseline results
Variant Execution Time [CI 0.99] Δ no_agent
no_agent 1.471 ms [1.459 ms, 1.482 ms] -
appsec 2.355 ms [2.313 ms, 2.397 ms] 883.884 µs (60.1%)
iast 2.09 ms [2.038 ms, 2.143 ms] 619.5 µs (42.1%)
iast_GLOBAL 2.15 ms [2.096 ms, 2.203 ms] 678.927 µs (46.2%)
profiling 1.969 ms [1.926 ms, 2.012 ms] 497.839 µs (33.8%)
tracing 1.945 ms [1.905 ms, 1.986 ms] 474.401 µs (32.3%)
  • candidate results
Variant Execution Time [CI 0.99] Δ no_agent
no_agent 1.472 ms [1.46 ms, 1.483 ms] -
appsec 2.361 ms [2.32 ms, 2.403 ms] 889.813 µs (60.5%)
iast 2.094 ms [2.041 ms, 2.146 ms] 621.863 µs (42.3%)
iast_GLOBAL 2.139 ms [2.085 ms, 2.192 ms] 666.979 µs (45.3%)
profiling 1.961 ms [1.918 ms, 2.004 ms] 488.934 µs (33.2%)
tracing 1.935 ms [1.894 ms, 1.976 ms] 463.517 µs (31.5%)

@MattAlp MattAlp merged commit 88c9405 into master Dec 9, 2024
157 checks passed
@MattAlp MattAlp deleted the mattalp/update-svm-generator-inst-for-trace-propagation-style branch December 9, 2024 13:06
@github-actions github-actions bot added this to the 1.44.0 milestone Dec 9, 2024
svc-squareup-copybara pushed a commit to cashapp/misk that referenced this pull request Dec 16, 2024
| Package | Type | Package file | Manager | Update | Change |
|---|---|---|---|---|---|
|
[com.google.api.grpc:proto-google-common-protos](https://github.com/googleapis/sdk-platform-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.49.0` -> `2.50.0` |
|
[com.google.cloud:google-cloud-core-http](https://github.com/googleapis/sdk-platform-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.48.0` -> `2.49.0` |
|
[com.google.cloud:google-cloud-spanner](https://github.com/googleapis/java-spanner)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`6.82.0` -> `6.83.0` |
|
[com.google.cloud:google-cloud-logging](https://github.com/googleapis/java-logging)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`3.20.7` -> `3.21.0` |
|
[com.google.cloud:google-cloud-datastore](https://github.com/googleapis/java-datastore)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.24.3` -> `2.25.1` |
|
[com.google.cloud:google-cloud-core](https://github.com/googleapis/sdk-platform-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.48.0` -> `2.49.0` |
| [com.google.api:gax](https://github.com/googleapis/sdk-platform-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`2.58.0` -> `2.59.0` |
|
[com.autonomousapps.dependency-analysis](https://github.com/autonomousapps/dependency-analysis-android-gradle-plugin)
| plugin | misk/gradle/libs.versions.toml | gradle | patch | `2.6.0` ->
`2.6.1` |
| [com.datadoghq:dd-trace-api](https://github.com/datadog/dd-trace-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`1.43.0` -> `1.44.1` |
| [com.datadoghq:dd-trace-ot](https://github.com/datadog/dd-trace-java)
| dependencies | misk/gradle/libs.versions.toml | gradle | minor |
`1.43.0` -> `1.44.1` |
| [software.amazon.awssdk:sdk-core](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`2.29.32` -> `2.29.34` |
|
[software.amazon.awssdk:dynamodb-enhanced](https://aws.amazon.com/sdkforjava)
| dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`2.29.32` -> `2.29.34` |
| [software.amazon.awssdk:dynamodb](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`2.29.32` -> `2.29.34` |
| [software.amazon.awssdk:aws-core](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`2.29.32` -> `2.29.34` |
| [software.amazon.awssdk:bom](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`2.29.32` -> `2.29.34` |
| [software.amazon.awssdk:auth](https://aws.amazon.com/sdkforjava) |
dependencies | misk/gradle/libs.versions.toml | gradle | patch |
`2.29.32` -> `2.29.34` |
| [com.amazonaws:aws-java-sdk-sqs](https://aws.amazon.com/sdkforjava)
([source](https://github.com/aws/aws-sdk-java)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.12.779` ->
`1.12.780` |
| [com.amazonaws:aws-java-sdk-s3](https://aws.amazon.com/sdkforjava)
([source](https://github.com/aws/aws-sdk-java)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.12.779` ->
`1.12.780` |
|
[com.amazonaws:aws-java-sdk-dynamodb](https://aws.amazon.com/sdkforjava)
([source](https://github.com/aws/aws-sdk-java)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.12.779` ->
`1.12.780` |
| [com.amazonaws:aws-java-sdk-core](https://aws.amazon.com/sdkforjava)
([source](https://github.com/aws/aws-sdk-java)) | dependencies |
misk/gradle/libs.versions.toml | gradle | patch | `1.12.779` ->
`1.12.780` |

---

### Release Notes

<details>
<summary>googleapis/sdk-platform-java
(com.google.api.grpc:proto-google-common-protos)</summary>

###
[`v2.50.0`](https://github.com/googleapis/sdk-platform-java/blob/HEAD/CHANGELOG.md#2500-2024-11-14)

##### Features

- Add experimental S2A integration in client libraries grpc transport
([#&#8203;3326](googleapis/sdk-platform-java#3326))
([1138ca6](googleapis/sdk-platform-java@1138ca6))
- enable selective generation based on service config include list
([#&#8203;3323](googleapis/sdk-platform-java#3323))
([0cddadb](googleapis/sdk-platform-java@0cddadb))
- introduce `java.time` to java-core
([#&#8203;3330](googleapis/sdk-platform-java#3330))
([f202c3b](googleapis/sdk-platform-java@f202c3b))
- Update Gapic-Generator to generate libraries using `java.time` methods
([#&#8203;3321](googleapis/sdk-platform-java#3321))
([b21c9a4](googleapis/sdk-platform-java@b21c9a4))

##### Bug Fixes

- Fix flaky test
ScheduledRetryingExecutorTest.testCancelOuterFutureAfterStart
([#&#8203;3335](googleapis/sdk-platform-java#3335))
([e73740d](googleapis/sdk-platform-java@e73740d))
- httpjson callables to trace attempts (started, failed)
([#&#8203;3300](googleapis/sdk-platform-java#3300))
([15a64ee](googleapis/sdk-platform-java@15a64ee))
- instantiate GaxProperties at build time to ensure we get the protobuf
version
([#&#8203;3365](googleapis/sdk-platform-java#3365))
([bb2a3be](googleapis/sdk-platform-java@bb2a3be))
- protobuf version not always getting set in headers
([#&#8203;3322](googleapis/sdk-platform-java#3322))
([7f6e470](googleapis/sdk-platform-java@7f6e470))
- use BuildKit instead of legacy builder to build the Hermetic Build
images
([#&#8203;3338](googleapis/sdk-platform-java#3338))
([222fb45](googleapis/sdk-platform-java@222fb45))

##### Dependencies

- update google auth library dependencies to v1.30.0
([#&#8203;3367](googleapis/sdk-platform-java#3367))
([a31c682](googleapis/sdk-platform-java@a31c682))
- update grpc dependencies to v1.68.1
([#&#8203;3240](googleapis/sdk-platform-java#3240))
([c8e3941](googleapis/sdk-platform-java@c8e3941))

##### Documentation

- fix list num
([#&#8203;3356](googleapis/sdk-platform-java#3356))
([b7d6296](googleapis/sdk-platform-java@b7d6296))
- **hermetic-build:** indicate usage of Docker Buildkit in development
guide
([#&#8203;3337](googleapis/sdk-platform-java#3337))
([01e742d](googleapis/sdk-platform-java@01e742d))
- modify hermetic build docs
([#&#8203;3331](googleapis/sdk-platform-java#3331))
([25023af](googleapis/sdk-platform-java@25023af))

</details>

<details>
<summary>googleapis/java-spanner
(com.google.cloud:google-cloud-spanner)</summary>

###
[`v6.83.0`](https://github.com/googleapis/java-spanner/blob/HEAD/CHANGELOG.md#6830-2024-12-13)

##### Features

- Add Metrics host for built in metrics
([#&#8203;3519](googleapis/java-spanner#3519))
([4ed455a](googleapis/java-spanner@4ed455a))
- Add opt-in for using multiplexed sessions for blind writes
([#&#8203;3540](googleapis/java-spanner#3540))
([216f53e](googleapis/java-spanner@216f53e))
- Add UUID in Spanner TypeCode enum
([41f83dc](googleapis/java-spanner@41f83dc))
- Introduce java.time variables and methods
([#&#8203;3495](googleapis/java-spanner#3495))
([8a7d533](googleapis/java-spanner@8a7d533))
- **spanner:** Support multiplexed session for Partitioned operations
([#&#8203;3231](googleapis/java-spanner#3231))
([4501a3e](googleapis/java-spanner@4501a3e))
- Support 'set local' for retry_aborts_internally
([#&#8203;3532](googleapis/java-spanner#3532))
([331942f](googleapis/java-spanner@331942f))

##### Bug Fixes

- **deps:** Update the Java code generator (gapic-generator-java) to
2.51.0
([41f83dc](googleapis/java-spanner@41f83dc))

##### Dependencies

- Update sdk platform java dependencies
([#&#8203;3549](googleapis/java-spanner#3549))
([6235f0f](googleapis/java-spanner@6235f0f))

</details>

<details>
<summary>googleapis/java-logging
(com.google.cloud:google-cloud-logging)</summary>

###
[`v3.21.0`](https://github.com/googleapis/java-logging/blob/HEAD/CHANGELOG.md#3210-2024-12-13)

##### Features

- Introduce `java.time` methods
([#&#8203;1729](googleapis/java-logging#1729))
([323eb33](googleapis/java-logging@323eb33))

##### Bug Fixes

- **deps:** Update the Java code generator (gapic-generator-java) to
2.51.0
([04d8868](googleapis/java-logging@04d8868))

##### Dependencies

- Update dependency io.opentelemetry:opentelemetry-bom to v1.45.0
([#&#8203;1638](googleapis/java-logging#1638))
([7e007d4](googleapis/java-logging@7e007d4))
- Update sdk platform java dependencies
([#&#8203;1736](googleapis/java-logging#1736))
([88b4cdf](googleapis/java-logging@88b4cdf))

</details>

<details>
<summary>googleapis/java-datastore
(com.google.cloud:google-cloud-datastore)</summary>

###
[`v2.25.1`](https://github.com/googleapis/java-datastore/blob/HEAD/CHANGELOG.md#2251-2024-12-13)

##### Bug Fixes

- **deps:** Update the Java code generator (gapic-generator-java) to
2.51.0
([106ee4d](googleapis/java-datastore@106ee4d))

##### Dependencies

- Update sdk platform java dependencies
([#&#8203;1685](googleapis/java-datastore#1685))
([4372350](googleapis/java-datastore@4372350))

###
[`v2.25.0`](https://github.com/googleapis/java-datastore/blob/HEAD/CHANGELOG.md#2250-2024-12-11)

##### Features

- Introduce `java.time` methods and variables
([#&#8203;1671](googleapis/java-datastore#1671))
([5a78a80](googleapis/java-datastore@5a78a80))

##### Dependencies

- Update dependency com.google.cloud:gapic-libraries-bom to v1.48.0
([#&#8203;1605](googleapis/java-datastore#1605))
([5c6a678](googleapis/java-datastore@5c6a678))

##### Documentation

- Update gapic upgrade installation instructions
([#&#8203;1677](googleapis/java-datastore#1677))
([b3fbfcc](googleapis/java-datastore@b3fbfcc))

</details>

<details>
<summary>autonomousapps/dependency-analysis-android-gradle-plugin
(com.autonomousapps.dependency-analysis)</summary>

###
[`v2.6.1`](https://github.com/autonomousapps/dependency-analysis-android-gradle-plugin/blob/HEAD/CHANGELOG.md#Version-261)

-   \[Fix]: `superClassName` can be null (Object has no superclass).

</details>

<details>
<summary>datadog/dd-trace-java (com.datadoghq:dd-trace-api)</summary>

###
[`v1.44.1`](https://github.com/DataDog/dd-trace-java/releases/tag/v1.44.1):
1.44.1

##### Components

##### Continuous Integration Visibility

- 🐛 Fix tracing JUnit5 tests in Maven projects with multiple forks
([#&#8203;8089](DataDog/dd-trace-java#8089) -
[@&#8203;nikita-tkachenko-datadog](https://github.com/nikita-tkachenko-datadog))

###
[`v1.44.0`](https://github.com/DataDog/dd-trace-java/releases/tag/v1.44.0):
1.44.0

##### Known Issues

> \[!WARNING]\
> This release contains a known issue that causes failures when using
Test Optimization to trace JUnit 5 tests in a Maven project where Maven
Surefire is configured with `forkCount` > 1.
> The issue is fixed in v1.44.1

##### Breaking Changes

> \[!WARNING]\
> Support for `X-Forwarded` header is dropped from default client IP
resolution.
> It can still be re-activated using the
`dd.trace.client-ip-header=x-forwarded` system property, or the
`DD_TRACE_CLIENT_IP_HEADER=x-forwarded` environment variable. See
[#&#8203;7946](DataDog/dd-trace-java#7946).

##### Components

##### Application Security Management (IAST)

- ✨ Set unexpected IAST exceptions to debug log level
([#&#8203;8044](DataDog/dd-trace-java#8044) -
[@&#8203;smola](https://github.com/smola))
- ✨ Increase IAST propagation to StringBuffer subSequence
([#&#8203;8038](DataDog/dd-trace-java#8038) -
[@&#8203;Mariovido](https://github.com/Mariovido))
- ✨ Increase IAST propagation to StringBuilder subSequence
([#&#8203;8026](DataDog/dd-trace-java#8026) -
[@&#8203;Mariovido](https://github.com/Mariovido))
- ✨ Add IAST propagation to String valueOf
([#&#8203;8013](DataDog/dd-trace-java#8013) -
[@&#8203;Mariovido](https://github.com/Mariovido))
- ✨ Increase IAST propagation to StringBuilder append
([#&#8203;8010](DataDog/dd-trace-java#8010) -
[@&#8203;Mariovido](https://github.com/Mariovido))
- ✨ Expand SSRF support in IAST to apache-httpclient-5 and
apache-httpasyncclient-4
([#&#8203;7920](DataDog/dd-trace-java#7920) -
[@&#8203;Mariovido](https://github.com/Mariovido))

##### Build & Tooling

- ✨ Generate Muzzle classes for Groovy instrumentations
([#&#8203;8004](DataDog/dd-trace-java#8004) -
[@&#8203;nikita-tkachenko-datadog](https://github.com/nikita-tkachenko-datadog))

##### Continuous Integration Visibility

- ✨ Support distributed traces in tests
([#&#8203;8078](DataDog/dd-trace-java#8078) -
[@&#8203;nikita-tkachenko-datadog](https://github.com/nikita-tkachenko-datadog))
- ✨ Implement fail-fast tests ordering for JUnit 5
([#&#8203;8055](DataDog/dd-trace-java#8055) -
[@&#8203;nikita-tkachenko-datadog](https://github.com/nikita-tkachenko-datadog))
- ✨ Mark JUnit 5 setup and teardown action spans as failed if
there is an error
([#&#8203;8033](DataDog/dd-trace-java#8033) -
[@&#8203;nikita-tkachenko-datadog](https://github.com/nikita-tkachenko-datadog))
- ✨ Add tracing of setup and teardown actions in JUnit 4
([#&#8203;8030](DataDog/dd-trace-java#8030) -
[@&#8203;daniel-mohedano](https://github.com/daniel-mohedano))

##### Crash tracking

- ✨ Improve crash tracking install logging
([#&#8203;8045](DataDog/dd-trace-java#8045) -
[@&#8203;PerfectSlayer](https://github.com/PerfectSlayer))

##### Data Streams Monitoring

- 🐛 Add Data Streams support in AWS SQS without raw message delivery
([#&#8203;8071](DataDog/dd-trace-java#8071) -
[@&#8203;piochelepiotr](https://github.com/piochelepiotr))
- ✨ Add new tag for enabled products / features to DSM
checkpoints
([#&#8203;8051](DataDog/dd-trace-java#8051) -
[@&#8203;kr-igor](https://github.com/kr-igor))
- 💡 Instrument self hosted Kafka connectors
([#&#8203;7959](DataDog/dd-trace-java#7959) -
[@&#8203;piochelepiotr](https://github.com/piochelepiotr))

##### Dynamic Instrumentation

- ✨ Add Micronaut 4 support for code origin for spans
([#&#8203;8039](DataDog/dd-trace-java#8039) -
[@&#8203;jpbempel](https://github.com/jpbempel))
- ✨ Refactor probe matching for methods
([#&#8203;8021](DataDog/dd-trace-java#8021) -
[@&#8203;jpbempel](https://github.com/jpbempel))
- ✨ Update the CodeOriginProbe fingerprint to not rely on a
stack walk
([#&#8203;8016](DataDog/dd-trace-java#8016) -
[@&#8203;evanchooly](https://github.com/evanchooly))
- ✨ Implement code origin support for grpc server entry spans
([#&#8203;7942](DataDog/dd-trace-java#7942) -
[@&#8203;evanchooly](https://github.com/evanchooly))

##### GraalVM native-image

- 🐛 Update Graal build-time instrumentation config for
TracePropagationStyle
([#&#8203;8065](DataDog/dd-trace-java#8065) -
[@&#8203;MattAlp](https://github.com/MattAlp))
- 🐛 Fix NoClassDefFoundError: Could not initialize class
DDSpanLink$EncoderHolder in Graal native-image
([#&#8203;8036](DataDog/dd-trace-java#8036) -
[@&#8203;mcculls](https://github.com/mcculls))
- 🐛🧹 Fix native-image generation of reactive applications
([#&#8203;8012](DataDog/dd-trace-java#8012) -
[@&#8203;mcculls](https://github.com/mcculls))

##### OpenTracing

- 🧹 Custom ScopeManagers are deprecated and will be removed in a
future release of dd-trace-ot
([#&#8203;8058](DataDog/dd-trace-java#8058) -
[@&#8203;mcculls](https://github.com/mcculls))

##### Tracer core

- ✨🧪 Service naming: split by jee deployment
([#&#8203;8064](DataDog/dd-trace-java#8064) -
[@&#8203;amarziali](https://github.com/amarziali))
- ✨ Exclude jboss mdb proxies from instrumenting
([#&#8203;8061](DataDog/dd-trace-java#8061) -
[@&#8203;amarziali](https://github.com/amarziali))
- ✨ Add a built-in trace interceptor for keeping traces
depending of their latency
([#&#8203;8040](DataDog/dd-trace-java#8040) -
[@&#8203;cecile75](https://github.com/cecile75))
- 💡 Introduce marker mechanism for eagerly initializing helpers
([#&#8203;8028](DataDog/dd-trace-java#8028) -
[@&#8203;mcculls](https://github.com/mcculls))
- 💡 Add JSON component
([#&#8203;7973](DataDog/dd-trace-java#7973) -
[@&#8203;PerfectSlayer](https://github.com/PerfectSlayer))
- ✨⚠️ Remove support for X-Forwarded in client IP
resolution
([#&#8203;7946](DataDog/dd-trace-java#7946) -
[@&#8203;smola](https://github.com/smola))

##### Instrumentations

##### Apache HttpComponents

- ✨ Expand SSRF support in IAST to apache-httpclient-5 and
apache-httpasyncclient-4
([#&#8203;7920](DataDog/dd-trace-java#7920) -
[@&#8203;Mariovido](https://github.com/Mariovido))

##### gRPC instrumentation

- 🐛 Use lower priorities for grpc server errors
([#&#8203;8043](DataDog/dd-trace-java#8043) -
[@&#8203;amarziali](https://github.com/amarziali))

##### JDBC instrumentation

- ✨ Add trace injection for prepared statements in Postgres
([#&#8203;7940](DataDog/dd-trace-java#7940) -
[@&#8203;nenadnoveljic](https://github.com/nenadnoveljic))

##### JMS instrumentation

- 🐛 Protect mdb from instrumenting multiple time the same event
([#&#8203;8062](DataDog/dd-trace-java#8062) -
[@&#8203;amarziali](https://github.com/amarziali))

##### Kafka instrumentation

- 💡 Instrument self hosted Kafka connectors
([#&#8203;7959](DataDog/dd-trace-java#7959) -
[@&#8203;piochelepiotr](https://github.com/piochelepiotr))

##### OpenTelemetry instrumentation

- 🐛 Support using OpenTelemetry Event API inside `@WithSpan`
annotated method
([#&#8203;8019](DataDog/dd-trace-java#8019) -
[@&#8203;mcculls](https://github.com/mcculls))

##### Reactor instrumentation

- 🐛🧹 Fix native-image generation of reactive applications
([#&#8203;8012](DataDog/dd-trace-java#8012) -
[@&#8203;mcculls](https://github.com/mcculls))

##### Spring instrumentation

- 🐛 Avoid double instrumenting lambdas on latest spring scheduling
([#&#8203;8005](DataDog/dd-trace-java#8005) -
[@&#8203;amarziali](https://github.com/amarziali))

##### All other instrumentations

- 🐛 Twilio: allow service name flattening
([#&#8203;8025](DataDog/dd-trace-java#8025) -
[@&#8203;amarziali](https://github.com/amarziali))
- ✨ Instrument Mulesoft 4.5.0+
([#&#8203;7981](DataDog/dd-trace-java#7981) -
[@&#8203;amarziali](https://github.com/amarziali))

</details>

<details>
<summary>aws/aws-sdk-java (com.amazonaws:aws-java-sdk-sqs)</summary>

###
[`v1.12.780`](https://github.com/aws/aws-sdk-java/blob/HEAD/CHANGELOG.md#112780-2024-12-11)

[Compare
Source](aws/aws-sdk-java@1.12.779...1.12.780)

#### **Amazon Simple Storage Service**

-   ### Bugfixes
- AWS SDK for Java 1.x now includes additional validation for Amazon S3
client APIs to handle scenarios where an empty string ('') is passed as
the key argument to the following operations: PutObject, DeleteObject,
ListObjects, GetObjectMetaData, ListObjectsV2, SetObjectTagging,
GetObjectTagging, SetObjectAcl, GetObjectAcl, SetObjectLegalHold,
GetObjectLegalHold, CopyObject, CopyPart, SelectObjectContent,
SetObjectRetention, GetObjectRetention, AbortMultipartUpload,
CompleteMultipartUpload, InitiateMultipartUpload, ListParts, UploadPart,
RestoreObjectV2, and RestoreObject. The SDK will validate the key
argument and throw an exception if it is an empty string, ensuring
correct and expected behavior.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 6pm every weekday,before 2am
every weekday" in timezone Australia/Melbourne, Automerge - At any time
(no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

GitOrigin-RevId: 69831bc62ea4d80cdcd42cef2aa9bd8eda28ae8c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants