Right now benchmarks output map[string]interface{}, but this makes summarizing results difficult. I'd like to define some common fields in a struct, while keeping one field as map[string]interface{} for extra data which is unique to a specific benchmark.
Right now benchmarks output
map[string]interface{}
, but this makes summarizing results difficult. I'd like to define some common fields in a struct, while keeping one field asmap[string]interface{}
for extra data which is unique to a specific benchmark.