hostContainerCounts.setCount(host, count);
}
public int incrementProfileCount(String host, String profileId) {
CountingMap countingMap = profileCounts(host);
return countingMap.increment(profileId);
}
public CountingMap profileCounts(String host) {
CountingMap countingMap = hostToProfileCounts.get(host);
if (countingMap == null) {