/** * Copyright 2015-2017 The OpenZipkin Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package zipkin.storage.elasticsearch.http.internal.client; import java.util.Collections; import java.util.LinkedHashMap; import java.util.Map; public class Aggregation { transient final String field; AggTerms terms; Map<String, String> nested; Map<String, String> min; Map<String, Aggregation> aggs; Aggregation(String field) { this.field = field; } public static Aggregation nestedTerms(String field) { Aggregation result = new Aggregation(field); result.nested = Collections.singletonMap("path", field.substring(0, field.indexOf('.'))); result.addSubAggregation(terms(field, Integer.MAX_VALUE)); return result; } public static Aggregation terms(String field, int size) { Aggregation result = new Aggregation(field); result.terms = new AggTerms(field, size); return result; } public Aggregation orderBy(String subAgg, String direction) { terms.order(subAgg, direction); return this; } public static Aggregation min(String field) { Aggregation result = new Aggregation(field); result.min = Collections.singletonMap("field", field); return result; } static class AggTerms { AggTerms(String field, int size) { this.field = field; this.size = size; } final String field; int size; Map<String, String> order; AggTerms order(String agg, String direction) { order = Collections.singletonMap(agg, direction); return this; } } public Aggregation addSubAggregation(Aggregation agg) { if (aggs == null) aggs = new LinkedHashMap<>(); aggs.put(agg.field, agg); return this; } }