本文档介绍了 Fuchsia 基准测试结果所必须具备的 JSON 架构 才能上传到效果信息中心。
JSON 说明
[
{
"label": string // Name of the test case in the performance dashboard.
"test_suite": string // Name of the test suite in the performance dashboard.
"unit": string // One of the supported units (see below)
"values": [v1, v2..] // Numeric values collected in this test case
},
{
...
}
]
支持的单位
为了将基准结果转换为性能所需的格式
则 unit
必须是以下字符串之一,用于描述单位
该结果的 values
的正值。
nanoseconds
或ns
milliseconds
或ms
bytes/second
bytes
示例
[
{
"label": "Channel/WriteRead/64bytes",
"test_suite": "fuchsia.microbenchmarks",
"unit": "nanoseconds",
"values": [105.45, 697.916667, 672.743056]
},
{
"label": "Channel/WriteRead/1024bytes",
"test_suite": "fuchsia.microbenchmarks",
"unit": "nanoseconds",
"values": [102.23, 1004.340278, 906.250000]
}
]
另请参阅
- Fuchsiaperf 生产方:
生成
fuchsiaperf
个文件。 - Fuchsiaperf 使用方:
使用
fuchsiaperf
文件。