Bencher 메트릭 포맷(BMF)


내장된 벤치마크 하네스 어댑터는 벤치마크 출력을 Bencher Metric Format (BMF) JSON으로 변환합니다. 사용자 정의 벤치마킹 하네스는 BMF JSON으로 결과를 출력하고 json 어댑터를 사용해야 합니다. 전체 개요에 대해서는 사용자 정의 벤치마크 추적 방법을 참조하세요.

벤처 메트릭 포맷(BMF) JSON 스키마

이것은 벤처 메트릭 포맷(BMF) JSON을 위한 JSON 스키마입니다:

{
"$id": "https://bencher.dev/bmf.json",
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"patternProperties": {
".+": {
"type": "object",
"patternProperties": {
".+": {
"type": "object",
"properties": {
"value": {
"type": "number"
},
"lower_value": {
"type": "number"
},
"upper_value": {
"type": "number"
}
},
"required": ["value"]
}
}
}
}
}


Published: Sun, May 12, 2024 at 3:12:00 PM UTC