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, retries : Int32 = 5, log : Log = Log.for("elasticsearch")) #

[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 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 = nil, &block : HTTP::Client::Response -> ) #

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

[View source]
def refresh #

[View source]
def reindex(source : String, dest destination : String) #

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

[View source]
def search(index_name : String | Enumerable(String), *, match_all, fields = nil, from = nil, sort = nil, size = nil, aggregations = nil, profile = 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, fields : Array(String) | Nil = nil, aggregations = nil, from = nil, profile = nil, size = nil, sort = nil, source = 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, aggregations = nil, fields = nil, from = nil, profile = nil, size = nil, sort = nil, source = nil, as type : T.class = JSON::Any) forall T #

[View source]