Sha256: 1880b2994a8bf5be4ddc9de6308d538e905c99de8e4ffa8b805a3d312ae5c47f

Contents?: true

Size: 1.64 KB

Versions: 30

Compression:

Stored size: 1.64 KB

Contents

# Elasticsearch::XPack

A Ruby integration for the [X-Pack extension](https://www.elastic.co/guide/en/x-pack/current/xpack-introduction.html) for Elasticsearch.


## Installation

Install the package from [Rubygems](https://rubygems.org):

    gem install elasticsearch-xpack

To use an unreleased version, either add it to your `Gemfile` for [Bundler](http://gembundler.com):

    gem 'elasticsearch-xpack', git: 'https://github.com/elastic/elasticsearch-ruby.git'


## Usage

If you use the official [Ruby client for Elasticsearch](https://github.com/elastic/elasticsearch-ruby),
require the library in your code, and all the methods will be automatically available in the `xpack` namespace:

```ruby
require 'elasticsearch'
require 'elasticsearch/xpack'

client = Elasticsearch::Client.new url: 'http://elastic:changeme@localhost:9200'

client.xpack.info
# => {"build"=> ..., "features"=> ...}
```

The integration is designed as a standalone `Elasticsearch::XPack::API` module, so it's easy
to mix it into a different client, and the methods will be available in the top namespace.

For documentation, look into the RDoc annotations in the source files, which contain links to the
official [X-Pack for the Elastic Stack](https://www.elastic.co/guide/en/x-pack/current/index.html) documentation.

For examples, look into the [`examples`](examples) folder in this repository.

You can use the provided `test:elasticsearch` Rake task to launch
a [Docker-based](https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html)
Elasticsearch node with the full X-Pack license preinstalled.

## License

This software is licensed under the [Apache 2 license](./LICENSE).

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
elasticsearch-xpack-7.15.0 README.md
elasticsearch-xpack-7.14.1 README.md
elasticsearch-xpack-7.14.1.pre README.md
elasticsearch-xpack-7.14.0 README.md
elasticsearch-xpack-7.14.0.pre README.md
elasticsearch-xpack-7.13.3 README.md
elasticsearch-xpack-7.13.1 README.md
elasticsearch-xpack-7.13.0 README.md
elasticsearch-xpack-7.13.0.pre README.md
elasticsearch-xpack-7.12.0 README.md
elasticsearch-xpack-7.11.2 README.md
elasticsearch-xpack-7.11.1 README.md
elasticsearch-xpack-7.11.0 README.md
elasticsearch-xpack-7.11.0.pre.1 README.md
elasticsearch-xpack-7.10.1 README.md
elasticsearch-xpack-7.10.0 README.md
elasticsearch-xpack-7.10.0.pre README.md
elasticsearch-xpack-7.9.0 README.md
elasticsearch-xpack-7.8.1 README.md
elasticsearch-xpack-7.9.0.pre README.md