Search in sources :

Example 31 with PathMappingCA

use of org.codelibs.fess.es.config.cbean.ca.PathMappingCA in project fess by codelibs.

the class BsPathMappingCA method setUserAgent_Missing.

public void setUserAgent_Missing(String name, ConditionOptionCall<MissingAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) {
    MissingAggregationBuilder builder = regMissingA(name, "userAgent");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        PathMappingCA ca = new PathMappingCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : PathMappingCA(org.codelibs.fess.es.config.cbean.ca.PathMappingCA) MissingAggregationBuilder(org.elasticsearch.search.aggregations.bucket.missing.MissingAggregationBuilder)

Example 32 with PathMappingCA

use of org.codelibs.fess.es.config.cbean.ca.PathMappingCA in project fess by codelibs.

the class BsPathMappingCA method setRegex_IpRange.

public void setRegex_IpRange(String name, ConditionOptionCall<IpRangeAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) {
    IpRangeAggregationBuilder builder = regIpRangeA(name, "regex");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        PathMappingCA ca = new PathMappingCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : IpRangeAggregationBuilder(org.elasticsearch.search.aggregations.bucket.range.ip.IpRangeAggregationBuilder) PathMappingCA(org.codelibs.fess.es.config.cbean.ca.PathMappingCA)

Example 33 with PathMappingCA

use of org.codelibs.fess.es.config.cbean.ca.PathMappingCA in project fess by codelibs.

the class BsPathMappingCA method setProcessType_IpRange.

public void setProcessType_IpRange(String name, ConditionOptionCall<IpRangeAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) {
    IpRangeAggregationBuilder builder = regIpRangeA(name, "processType");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        PathMappingCA ca = new PathMappingCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : IpRangeAggregationBuilder(org.elasticsearch.search.aggregations.bucket.range.ip.IpRangeAggregationBuilder) PathMappingCA(org.codelibs.fess.es.config.cbean.ca.PathMappingCA)

Example 34 with PathMappingCA

use of org.codelibs.fess.es.config.cbean.ca.PathMappingCA in project fess by codelibs.

the class BsPathMappingCA method setRegex_SignificantTerms.

public void setRegex_SignificantTerms(String name, ConditionOptionCall<SignificantTermsAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) {
    SignificantTermsAggregationBuilder builder = regSignificantTermsA(name, "regex");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        PathMappingCA ca = new PathMappingCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : PathMappingCA(org.codelibs.fess.es.config.cbean.ca.PathMappingCA) SignificantTermsAggregationBuilder(org.elasticsearch.search.aggregations.bucket.significant.SignificantTermsAggregationBuilder)

Example 35 with PathMappingCA

use of org.codelibs.fess.es.config.cbean.ca.PathMappingCA in project fess by codelibs.

the class BsPathMappingCA method setUserAgent_IpRange.

public void setUserAgent_IpRange(String name, ConditionOptionCall<IpRangeAggregationBuilder> opLambda, OperatorCall<BsPathMappingCA> aggsLambda) {
    IpRangeAggregationBuilder builder = regIpRangeA(name, "userAgent");
    if (opLambda != null) {
        opLambda.callback(builder);
    }
    if (aggsLambda != null) {
        PathMappingCA ca = new PathMappingCA();
        aggsLambda.callback(ca);
        ca.getAggregationBuilderList().forEach(builder::subAggregation);
    }
}
Also used : IpRangeAggregationBuilder(org.elasticsearch.search.aggregations.bucket.range.ip.IpRangeAggregationBuilder) PathMappingCA(org.codelibs.fess.es.config.cbean.ca.PathMappingCA)

Aggregations

PathMappingCA (org.codelibs.fess.es.config.cbean.ca.PathMappingCA)36 SignificantTermsAggregationBuilder (org.elasticsearch.search.aggregations.bucket.significant.SignificantTermsAggregationBuilder)12 MissingAggregationBuilder (org.elasticsearch.search.aggregations.bucket.missing.MissingAggregationBuilder)9 IpRangeAggregationBuilder (org.elasticsearch.search.aggregations.bucket.range.ip.IpRangeAggregationBuilder)9 TermsAggregationBuilder (org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder)6 HistogramAggregationBuilder (org.elasticsearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder)3 RangeAggregationBuilder (org.elasticsearch.search.aggregations.bucket.range.RangeAggregationBuilder)3 PathMappingCQ (org.codelibs.fess.es.config.cbean.cq.PathMappingCQ)1 BsPathMappingCQ (org.codelibs.fess.es.config.cbean.cq.bs.BsPathMappingCQ)1 FilterAggregationBuilder (org.elasticsearch.search.aggregations.bucket.filter.FilterAggregationBuilder)1 GlobalAggregationBuilder (org.elasticsearch.search.aggregations.bucket.global.GlobalAggregationBuilder)1 SamplerAggregationBuilder (org.elasticsearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder)1