Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

log JSON queries built through ElasticSearch High Level Java Client for debugging?

I use ElasticSearch High-Level Client Java API in my Spring Boot application. I want to log the queries built using High-Level client API for debugging purposes.

My question is what kind of settings required in my application.properties file to turn on JSON queries built from my application?

I tried out the following properties to the application.properties file. However, it does not print the JSON queries built using various query builders.

logging.level.org.elasticsearch.client=TRACE
logging.level.org.elasticsearch.client.sniffer=TRACE
logging.level.org.elasticsearch=TRACE
like image 605
user1250720 Avatar asked Mar 25 '20 13:03

user1250720


People also ask

How to get Elasticsearch logs?

To access logs, run docker logs . For Debian installations, Elasticsearch writes logs to /var/log/elasticsearch . For RPM installations, Elasticsearch writes logs to /var/log/elasticsearch .

What is Elasticsearch rest high level client?

High level REST client that wraps an instance of the low level RestClient and allows to build requests and read responses. The RestClient instance is internally built based on the provided RestClientBuilder and it gets closed automatically when closing the RestHighLevelClient instance that wraps it.

How to change log Level in Elasticsearch?

Elasticsearch logging levels can be adjusted by changing the corresponding logger. {name}. level to the desired level. Each logger accepts Log4j 2's built-in log levels, from least to most verbose: OFF , FATAL , ERROR , WARN , INFO , DEBUG , and TRACE .

How do I print an elastic search query in Java?

source(sourceBuilder); log.info("Search JSON query: {}", searchRequest. source(). toString()); The first line, is used to create a search request and second line is used to print the search JSON , Note searchRequest.


2 Answers

es logging doc seems too ambiguous, but it mentions tracer:

Enable trace logging for the tracer package to have such log lines printed out.

If you dive into the es client code, there is a class called org.apache.http.util.EntityUtils.RequestLogger, which logs all the requests and responses detail into a logger named tracer:

private static final Log tracer = LogFactory.getLog("tracer");

In method logResponse, you can see that it logs debug info into normal package logger, trace info into tracer logger.

So the right way to show request & response trace info is to configure a logger named tracer, and enable TRACE level for it.

Using logback.xml for example:

    <appender name="ES_REQ_RES_TRACER" class="ch.qos.logback.core.rolling.RollingFileAppender">
        <file>logs/es-trace</file>
        <append>true</append>
        <rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
            <fileNamePattern>logs/es-trace.%d{yyyy-MM-dd}.%i</fileNamePattern>
            <maxHistory>3</maxHistory>
            <maxFileSize>500MB</maxFileSize>
        </rollingPolicy>
        <encoder>
            <pattern>%date %level [%thread] %logger{10} [%file:%line] %msg%n</pattern>
        </encoder>
    </appender>

    <logger name="tracer" additivity="false" level="trace">
        <appender-ref ref="ES_REQ_RES_TRACER" />
    </logger>

Now you can find trace details in logs/es-trace file. It will contains a curl request and a json response.

TRACE level for tracer logger can also be configured in application.properties if you use spring boot:

logging.level.tracer=TRACE
like image 152
puppylpg Avatar answered Sep 18 '22 23:09

puppylpg


You can simply log the queries built using the rest-high level client, using the below code in your logger.

You can also have control of which types of queries you want to log and what types of levels (TRACE, INFO, DEBUG) you want to set in specific cases.

Code to get and log the search JSON

SearchRequest searchRequest = new SearchRequest("employee").source(sourceBuilder);
log.info("Search JSON query: {}", searchRequest.source().toString());

The first line, is used to create a search request and second line is used to print the search JSON, Note searchRequest.source().toString()) which is used to get the search JSON string.

Let me know if you face any issue, I do this all the time using the rest-high-level client.

like image 31
Amit Avatar answered Sep 17 '22 23:09

Amit