* aggregate metrics represent the sum of the requested metrics across all
* of the entries selected by the query and not just the rows returned.
*/
public void printFeedAggregates() {
System.out.println("\n-------- Aggregate Metric Values --------");
Aggregates aggregates = feed.getAggregates();
for (Metric metric : aggregates.getMetrics()) {
System.out.println(
"\nMetric Name = " + metric.getName() +
"\nMetric Value = " + metric.getValue() +
"\nMetric Type = " + metric.getType() +
"\nMetric CI = " + metric.getConfidenceInterval().toString());