// Counters,
// then we get the CounterGroup, then we get the Counter, then we
// get the count.
Counters counters = mrState.getCounters();
CounterGroup counterGroup = counters.getGroup("CommentWords");
Counter counter = counterGroup.findCounter("count");
long wordCount = counter.getValue(); // Finally!
// Let's create a special datastore Entity for this value so
// we can reference it on the ViewComments page
Entity totalCountEntity = new Entity("TotalWordCount",