Files
mongo/etc/performance_thresholds.yml
Shin Yee Tan 14cd0646d6 SERVER-88496 Raise SEP instructions_per_iteration_mean threshold using 0.2% buffer (#20438)
GitOrigin-RevId: 6014a4bf0404f8a634979be50396acd16f24fc9f
2024-03-26 23:51:31 +00:00

58 lines
2.6 KiB
YAML

########################################################################################################
# This file contains thresholds for performance tests run by resmoke. These correspond to #
# the GenerateAndCheckPerfResults hook. Thresholds are set on a per variant basis. #
# Make sure to set the --variantName flag when running benchmarks in resmoke. #
# #
# Each entry should follow the format below #
########################################################################################################
#
# tests:
# test1:
# variant1:
# - thread_level: {thread_level_value}
# metrics:
# - name: {name of the metric to check}
# value: {Whatever the threshold to check against is}
# bound_direction: {What the threshold direction should be. Must be one of upper or lower}
# - thread_level: {thread_level_value}
# metrics:
# - name: {name of the metric to check}
# value: {Whatever the threshold to check against is}
# bound_direction: {What the threshold direction should be. Must be one of upper or lower}
# test2:
# variant1:
# - thread_level: {thread_level_value}
# metrics:
# - name: {name of the metric to check}
# value: {Whatever the threshold to check against is}
# bound_direction: {What the threshold direction should be. Must be one of upper or lower}
# - thread_level: {thread_level_value}
# metrics:
# - name: {name of the metric to check}
# value: {Whatever the threshold to check against is}
# bound_direction: {What the threshold direction should be. Must be one of upper or lower}
#
#
#
#
# Bound direction upper means that the value reported by the test must be BELOW the threshold value.
# Bound direction lower means that the value reported by the test must be ABOVE the threshold value.
#
#
########################################################################################################
tests:
ServiceEntryPointCommonBenchmarkFixture/BM_SEP_PING:
al2023-arm64-sep-benchmark:
- thread_level: 1
metrics:
- name: instructions_per_iteration_mean
value: 38200
bound_direction: upper
- thread_level: 32
metrics:
- name: instructions_per_iteration_mean
value: 38254
bound_direction: upper