Skip to content

Benchmark enhanced telemetry reporting #9345

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

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion .gitlab/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
name: "reports"
paths:
- reports/
expire_in: 3 months
expire_in: 1 month
when: always
variables:
UPSTREAM_PROJECT_ID: $CI_PROJECT_ID # The ID of the current project. This ID is unique across all projects on the GitLab instance.
UPSTREAM_PROJECT_NAME: $CI_PROJECT_NAME # "dd-trace-java"
Expand Down
3 changes: 3 additions & 0 deletions benchmark/load/petclinic/k6.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ const variants = {
"code_origins": {
"APP_URL": 'http://localhost:8085',
}
"config_sources": {
"APP_URL": 'http://localhost:8086',
}
}

export const options = function (variants) {
Expand Down
1 change: 1 addition & 0 deletions benchmark/load/petclinic/start-servers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ start_server "profiling" "-javaagent:${TRACER} -Ddd.profiling.enabled=true -Dser
start_server "appsec" "-javaagent:${TRACER} -Ddd.appsec.enabled=true -Dserver.port=8083" "taskset -c 37-38 " &
start_server "iast" "-javaagent:${TRACER} -Ddd.iast.enabled=true -Dserver.port=8084" "taskset -c 39-40 " &
start_server "code_origins" "-javaagent:${TRACER} -Ddd.code.origin.for.spans.enabled=true -Dserver.port=8085" "taskset -c 41-42 " &
start_server "config_sources" "-javaagent:${TRACER} -Ddd.service=myservice -Ddd.env=myenv -Ddd.version=1.2.3" "taskset -c 43-44 " &

wait