use of org.ovirt.engine.api.model.BlockStatistics in project ovirt-engine by oVirt.
the class GlusterVolumeProfileInfoMapper method mapBlockStats.
private static void mapBlockStats(ProfileDetail profileDetail, StatsInfo statsInfo) {
for (BlockStats blockStat : statsInfo.getBlockStats()) {
BlockStatistic bStat = new BlockStatistic();
bStat.setStatistics(new Statistics());
bStat.getStatistics().getStatistics().add(StatisticResourceUtils.setDatum(clone(BLOCK_SIZE), blockStat.getSize()));
bStat.getStatistics().getStatistics().add(StatisticResourceUtils.setDatum(clone(BYTES_BLOCK_READ), blockStat.getBlockRead()));
bStat.getStatistics().getStatistics().add(StatisticResourceUtils.setDatum(clone(BYTES_BLOCK_WRITE), blockStat.getBlockWrite()));
profileDetail.setBlockStatistics(new BlockStatistics());
profileDetail.getBlockStatistics().getBlockStatistics().add(bStat);
}
}
use of org.ovirt.engine.api.model.BlockStatistics in project ovirt-engine by oVirt.
the class V3ProfileDetailInAdapter method adapt.
@Override
public ProfileDetail adapt(V3ProfileDetail from) {
ProfileDetail to = new ProfileDetail();
if (from.isSetBlockStatistic()) {
to.setBlockStatistics(new BlockStatistics());
to.getBlockStatistics().getBlockStatistics().addAll(adaptIn(from.getBlockStatistic()));
}
if (from.isSetDuration()) {
to.setDuration(from.getDuration());
}
if (from.isSetFopStatistic()) {
to.setFopStatistics(new FopStatistics());
to.getFopStatistics().getFopStatistics().addAll(adaptIn(from.getFopStatistic()));
}
if (from.isSetProfileType()) {
to.setProfileType(from.getProfileType());
}
if (from.isSetStatistic()) {
to.setStatistics(new Statistics());
to.getStatistics().getStatistics().addAll(adaptIn(from.getStatistic()));
}
return to;
}
Aggregations