/*
* convert from a result set record to an object
*/
private static DfsThroughput createDfsThroughput(ResultSet rs) {
DfsThroughput obj = null;
try {
obj = new DfsThroughput(
rs.getTimestamp("timestamp"),
rs.getInt("host"),
rs.getDouble("block_reports_avg_time"),
rs.getDouble("block_reports_num_ops"),
rs.getDouble("block_verification_failures"),