crimson/common: use the value_map passed to dump_metric_value_map()
dump_metric_value_map() takes a value_map by const reference but ignored it
and iterated seastar::scollectd::get_value_map() instead. Both callers already
fetch the map and pass it in, so the map was fetched twice per call and the
argument was dead.
Iterate vmap. The output is unchanged, since the callers pass get_value_map(),
but the parameter now means what it says and the redundant fetch is gone.