Java Code Examples for org.elasticsearch.ElasticsearchException#toXContent()

The following examples show how to use org.elasticsearch.ElasticsearchException#toXContent() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BytesRestResponse.java    From Elasticsearch with Apache License 2.0 5 votes vote down vote up
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;
}
 
Example 2
Source File: BytesRestResponse.java    From Elasticsearch with Apache License 2.0 5 votes vote down vote up
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;
}
 
Example 3
Source File: IndicesShardStoresResponse.java    From Elasticsearch with Apache License 2.0 5 votes vote down vote up
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
    node.toXContent(builder, params);
    builder.field(Fields.VERSION, version);
    builder.field(Fields.ALLOCATED, allocation.value());
    if (storeException != null) {
        builder.startObject(Fields.STORE_EXCEPTION);
        ElasticsearchException.toXContent(builder, params, storeException);
        builder.endObject();
    }
    return builder;
}
 
Example 4
Source File: ShardSearchFailure.java    From Elasticsearch with Apache License 2.0 5 votes vote down vote up
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
    builder.field("shard", shardId());
    builder.field("index", index());
    if (shardTarget != null) {
        builder.field("node", shardTarget.nodeId());
    }
    if (cause != null) {
        builder.field("reason");
        builder.startObject();
        ElasticsearchException.toXContent(builder, params, cause);
        builder.endObject();
    }
    return builder;
}
 
Example 5
Source File: TaskOperationFailure.java    From Elasticsearch with Apache License 2.0 5 votes vote down vote up
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
    builder.field("task_id", getTaskId());
    builder.field("node_id", getNodeId());
    builder.field("status", status.name());
    if (reason != null) {
        builder.field("reason");
        builder.startObject();
        ElasticsearchException.toXContent(builder, params, reason);
        builder.endObject();
    }
    return builder;

}
 
Example 6
Source File: DefaultShardOperationFailedException.java    From Elasticsearch with Apache License 2.0 5 votes vote down vote up
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
    builder.field("shard", shardId());
    builder.field("index", index());
    builder.field("status", status.name());
    if (reason != null) {
        builder.field("reason");
        builder.startObject();
        ElasticsearchException.toXContent(builder, params, reason);
        builder.endObject();
    }
    return builder;

}
 
Example 7
Source File: ActionWriteResponse.java    From Elasticsearch with Apache License 2.0 5 votes vote down vote up
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
    builder.startObject();
    builder.field(Fields._INDEX, index);
    builder.field(Fields._SHARD, shardId);
    builder.field(Fields._NODE, nodeId);
    builder.field(Fields.REASON);
    builder.startObject();
    ElasticsearchException.toXContent(builder, params, cause);
    builder.endObject();
    builder.field(Fields.STATUS, status);
    builder.field(Fields.PRIMARY, primary);
    builder.endObject();
    return builder;
}
 
Example 8
Source File: BulkItemResponse.java    From Elasticsearch with Apache License 2.0 5 votes vote down vote up
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
    builder.field(INDEX_FIELD, index);
    builder.field(TYPE_FIELD, type);
    if (id != null) {
        builder.field(ID_FIELD, id);
    }
    builder.startObject(CAUSE_FIELD);
    ElasticsearchException.toXContent(builder, params, cause);
    builder.endObject();
    builder.field(STATUS_FIELD, status.getStatus());
    return builder;
}