Package org.elasticsearch.client
Class EqlClient
java.lang.Object
org.elasticsearch.client.EqlClient
public final class EqlClient
extends java.lang.Object
A wrapper for the
RestHighLevelClient that provides methods for
accessing the Elastic EQL related functions
See the EQL APIs on elastic.co for more information.
-
Method Summary
Modifier and Type Method Description EqlSearchResponsesearch(EqlSearchRequest request, RequestOptions options)Executes the eql search query.CancellablesearchAsync(EqlSearchRequest request, RequestOptions options, ActionListener<EqlSearchResponse> listener)Asynchronously executes the eql search query.EqlStatsResponsestats(EqlStatsRequest request, RequestOptions options)Get the eql stats See the docs for more.CancellablestatsAsync(EqlStatsRequest request, RequestOptions options, ActionListener<EqlStatsResponse> listener)Asynchronously get the eql stats See the docs for more.
-
Method Details
-
search
public EqlSearchResponse search(EqlSearchRequest request, RequestOptions options) throws java.io.IOExceptionExecutes the eql search query.See the docs for more.
- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException- in case there is a problem sending the request or parsing back the response
-
searchAsync
public Cancellable searchAsync(EqlSearchRequest request, RequestOptions options, ActionListener<EqlSearchResponse> listener)Asynchronously executes the eql search query.See the docs for more.
- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion- Returns:
- cancellable that may be used to cancel the request
-
stats
public EqlStatsResponse stats(EqlStatsRequest request, RequestOptions options) throws java.io.IOExceptionGet the eql stats See the docs for more.- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customized- Returns:
- the response
- Throws:
java.io.IOException- in case there is a problem sending the request or parsing back the response
-
statsAsync
public Cancellable statsAsync(EqlStatsRequest request, RequestOptions options, ActionListener<EqlStatsResponse> listener)Asynchronously get the eql stats See the docs for more.- Parameters:
request- the requestoptions- the request options (e.g. headers), useRequestOptions.DEFAULTif nothing needs to be customizedlistener- the listener to be notified upon request completion- Returns:
- cancellable that may be used to cancel the request
-