Skip to content

Commit 8119eea

Browse files
authored
Add SAMPLING_RATE_CAPPING scenario to CI (#6478)
1 parent fb535a3 commit 8119eea

4 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/run-end-to-end.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,9 @@ jobs:
363363
- name: Run SAMPLING scenario
364364
if: always() && steps.build.outcome == 'success' && contains(inputs.scenarios, '"SAMPLING"')
365365
run: ./run.sh SAMPLING
366+
- name: Run SAMPLING_RATE_CAPPING scenario
367+
if: always() && steps.build.outcome == 'success' && contains(inputs.scenarios, '"SAMPLING_RATE_CAPPING"')
368+
run: ./run.sh SAMPLING_RATE_CAPPING
366369
- name: Run TELEMETRY_APP_STARTED_PRODUCTS_DISABLED scenario
367370
if: always() && steps.build.outcome == 'success' && contains(inputs.scenarios, '"TELEMETRY_APP_STARTED_PRODUCTS_DISABLED"')
368371
run: ./run.sh TELEMETRY_APP_STARTED_PRODUCTS_DISABLED

manifests/golang.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1360,6 +1360,7 @@ manifest:
13601360
net-http-orchestrion: v2.4.0
13611361
tests/test_rum_injection.py: irrelevant (RUM injection only supported for Java)
13621362
tests/test_sampling_rate_capping.py::Test_SamplingRateCappedIncrease: v2.7.0-dev
1363+
tests/test_sampling_rate_capping.py::Test_SamplingRateCappedIncrease::test_sampling_rate_capped_increase: missing_feature
13631364
tests/test_sampling_rates.py::Test_SampleRateFunction: v1.72.1 # real version unknown
13641365
tests/test_sampling_rates.py::Test_SamplingDecisionAdded: v1.72.1 # real version unknown
13651366
tests/test_sampling_rates.py::Test_SamplingDecisions: v1.72.1 # real version unknown

manifests/java.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4127,6 +4127,7 @@ manifest:
41274127
"*": irrelevant (RUM injection only supported for spring-boot)
41284128
spring-boot: v1.49.0
41294129
tests/test_sampling_rate_capping.py::Test_SamplingRateCappedIncrease: v1.60.0-SNAPSHOT+c95286e6a5
4130+
tests/test_sampling_rate_capping.py::Test_SamplingRateCappedIncrease::test_sampling_rate_capped_increase: missing_feature
41304131
tests/test_sampling_rates.py::Test_SampleRateFunction:
41314132
- weblog_declaration:
41324133
"*": v1.49.0

utils/scripts/ci_orchestrators/workflow_data.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,7 @@ def _is_supported(library: str, weblog: str, scenario: str, _ci_environment: str
640640
"REMOTE_CONFIG_MOCKED_BACKEND_LIVE_DEBUGGING",
641641
"RUNTIME_METRICS_ENABLED",
642642
"SAMPLING",
643+
"SAMPLING_RATE_CAPPING",
643644
"SCA_STANDALONE",
644645
"SCA_STANDALONE_V2",
645646
"TELEMETRY_APP_STARTED_PRODUCTS_DISABLED",

0 commit comments

Comments
 (0)