當前位置: 首頁>>代碼示例>>Java>>正文


Java ToXContent.DelegatingMapParams方法代碼示例

本文整理匯總了Java中org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams方法的典型用法代碼示例。如果您正苦於以下問題:Java ToXContent.DelegatingMapParams方法的具體用法?Java ToXContent.DelegatingMapParams怎麽用?Java ToXContent.DelegatingMapParams使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.elasticsearch.common.xcontent.ToXContent的用法示例。


在下文中一共展示了ToXContent.DelegatingMapParams方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: build

import org.elasticsearch.common.xcontent.ToXContent; //導入方法依賴的package包/類
private static XContentBuilder build(RestChannel channel, RestStatus status, Exception e) throws IOException {
    ToXContent.Params params = channel.request();
    if (params.paramAsBoolean("error_trace", !REST_EXCEPTION_SKIP_STACK_TRACE_DEFAULT)) {
        params =  new ToXContent.DelegatingMapParams(singletonMap(REST_EXCEPTION_SKIP_STACK_TRACE, "false"), params);
    } else if (e != null) {
        Supplier<?> messageSupplier = () -> new ParameterizedMessage("path: {}, params: {}",
                channel.request().rawPath(), channel.request().params());

        if (status.getStatus() < 500) {
            SUPPRESSED_ERROR_LOGGER.debug(messageSupplier, e);
        } else {
            SUPPRESSED_ERROR_LOGGER.warn(messageSupplier, e);
        }
    }

    XContentBuilder builder = channel.newErrorBuilder().startObject();
    ElasticsearchException.generateFailureXContent(builder, params, e, channel.detailedErrorsEnabled());
    builder.field(STATUS, status.getStatus());
    builder.endObject();
    return builder;
}
 
開發者ID:justor,項目名稱:elasticsearch_my,代碼行數:22,代碼來源:BytesRestResponse.java

示例2: toXContent

import org.elasticsearch.common.xcontent.ToXContent; //導入方法依賴的package包/類
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
    params = new ToXContent.DelegatingMapParams(singletonMap("reduce_mappings", "true"), params);
    builder.startObject();
    for (IndexTemplateMetaData indexTemplateMetaData : getIndexTemplates()) {
        IndexTemplateMetaData.Builder.toXContent(indexTemplateMetaData, builder, params);
    }
    builder.endObject();
    return builder;
}
 
開發者ID:justor,項目名稱:elasticsearch_my,代碼行數:11,代碼來源:GetIndexTemplatesResponse.java

示例3: convert

import org.elasticsearch.common.xcontent.ToXContent; //導入方法依賴的package包/類
private static XContentBuilder convert(RestChannel channel, RestStatus status, Throwable t) throws IOException {
    XContentBuilder builder = channel.newErrorBuilder().startObject();
    if (t == null) {
        builder.field("error", "unknown");
    } else if (channel.detailedErrorsEnabled()) {
        final ToXContent.Params params;
        if (channel.request().paramAsBoolean("error_trace", !ElasticsearchException.REST_EXCEPTION_SKIP_STACK_TRACE_DEFAULT)) {
            params =  new ToXContent.DelegatingMapParams(Collections.singletonMap(ElasticsearchException.REST_EXCEPTION_SKIP_STACK_TRACE, "false"), channel.request());
        } else {
            if (status.getStatus() < 500) {
                SUPPRESSED_ERROR_LOGGER.debug("{} Params: {}", t, channel.request().path(), channel.request().params());
            } else {
                SUPPRESSED_ERROR_LOGGER.warn("{} Params: {}", t, channel.request().path(), channel.request().params());
            }
            params = channel.request();
        }
        builder.field("error");
        builder.startObject();
        final ElasticsearchException[] rootCauses = ElasticsearchException.guessRootCauses(t);
        builder.field("root_cause");
        builder.startArray();
        for (ElasticsearchException rootCause : rootCauses){
            builder.startObject();
            rootCause.toXContent(builder, new ToXContent.DelegatingMapParams(Collections.singletonMap(ElasticsearchException.REST_EXCEPTION_SKIP_CAUSE, "true"), params));
            builder.endObject();
        }
        builder.endArray();

        ElasticsearchException.toXContent(builder, params, t);
        builder.endObject();
    } else {
        builder.field("error", simpleMessage(t));
    }
    builder.field("status", status.getStatus());
    builder.endObject();
    return builder;
}
 
開發者ID:baidu,項目名稱:Elasticsearch,代碼行數:38,代碼來源:BytesRestResponse.java


注:本文中的org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。