class Elasticsearch::Client

Defined in:

client.cr
data_streams.cr
documents.cr
ilm.cr
index_templates.cr
indices.cr
mappings.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(uri : URI = URI.parse(ENV.fetch("ELASTICSEARCH_URL", "http://localhost:9200/")), tls : HTTP::Client::TLSContext = uri.scheme == "https", max_idle_connections = 25) #

[View source]

Instance Method Detail

def data_streams #

[View source]
def delete(path : String) #

[View source]
def docs #

[View source]
def documents #

[View source]
def get(path : String, &block : HTTP::Client::Response -> ) #

[View source]
def get(path : String) #

[View source]
def ilm #

[View source]
def index_templates #

[View source]
def indexes #

DEPRECATED Elasticsearch uses #indices as the plural for 'index', so please Use the #indices method instead.


[View source]
def indices #

[View source]
def mappings #

[View source]
def post(path : String, body : String | IO) #

[View source]
def post(path : String, body : String | IO, &) #

[View source]
def put(path : String, body : String? = nil, &block : HTTP::Client::Response -> ) #

[View source]
def put(path : String, body : String? = nil) #

[View source]
def search(index_name : String | Enumerable(String), query, *, as type : T.class, from : Int? = nil, size : Int? = nil, aggregations = nil, sort = nil) forall T #

[View source]
def search(index_name : String | Enumerable(String), *, match_all, from = nil, sort = nil, size = nil, aggregations = nil, as type : T.class = JSON::Any) forall T #

[View source]
def search(index_name : String | Enumerable(String), *, simple_query_string query : String, default_operator = nil, analyzer = nil, from = nil, sort = nil, size = nil, aggregations = nil, as type : T.class = JSON::Any) forall T #

[View source]
def search(index_name : String | Enumerable(String), *, query_string query : String, query_string_options = NamedTuple.new, from = nil, sort = nil, size = nil, aggregations = nil, as type : T.class = JSON::Any) forall T #

[View source]