Skip to content

Commit 55c0407

Browse files
committed
fix: define metric dimensions as strings in A/B ignore list
All EMF dimensions are strings, but the allow list for ignoring block metrics on m8g due to volatility used integers, causing the ignoring to fail. Change to strings. Signed-off-by: Patrick Roy <[email protected]>
1 parent 005e345 commit 55c0407

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/ab_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
# boot time metrics
5454
{"performance_test": "test_boottime", "metric": "resume_time"},
5555
# block throughput on m8g
56-
{"fio_engine": "libaio", "vcpus": 2, "instance": "m8g.metal-24xl"},
57-
{"fio_engine": "libaio", "vcpus": 2, "instance": "m8g.metal-48xl"},
56+
{"fio_engine": "libaio", "vcpus": "2", "instance": "m8g.metal-24xl"},
57+
{"fio_engine": "libaio", "vcpus": "2", "instance": "m8g.metal-48xl"},
5858
]
5959

6060

0 commit comments

Comments
 (0)