☝️Small business or a startup? See if you qualify for our special offer.
+
All documentation
Connecting to data source
  1. Supported data sources
  2. Connecting to other data sources

Connecting to Elasticsearch

This article illustrates how to build a report based on data from Elasticsearch.

Prerequisites

  • Elasticsearch version 6.x or later
  • Flexmonster Pivot version 2.7.0 or later
    Note If your Elasticsearch version is 8.x or later, ensure to use Flexmonster Pivot 2.9.26 or later.

Step 1. Set up Elasticsearch

Skip this step if you have already set up Elasticsearch. Otherwise, start from this guide: Download Elasticsearch.

Step 2. Enable cross-origin resource sharing (CORS)

By default, Elasticsearch blocks cross-domain requests. To allow Flexmonster to connect to your Elasticsearch index, you must enable CORS in Elasticsearch.

To enable CORS, open the elasticsearch.yml file. Then, add or update the following lines:

http.cors.enabled: true
# On production, use the domain where Flexmonster is running
http.cors.allow-origin: "*"
http.cors.allow-credentials: true
http.cors.allow-headers: "X-Requested-With, Content-Type, Content-Length, Authorization"

Note To allow a connection to the Elasticsearch server from a different machine, open an appropriate port in the firewall. The default port is 9200, but it may be different depending on your configuration in the elasticsearch.yml file.

Step 3. Embed the component into your webpage

If Flexmonster is not yet embedded, set up an empty component in your webpage:

In pure JavaScript

Complete the Integrating Flexmonster guide. Your code should look similar to the following example:

const pivot = new Flexmonster({
  container: "pivotContainer",
 toolbar: true
});

In React

Complete the Integration with React guide. Your code should look similar to the following example:

<FlexmonsterReact.Pivot
 toolbar={true}
/>

In Angular

Complete the Integration with Angular guide. Your code should look similar to the following example:

<fm-pivot
 [toolbar]="true">
</fm-pivot>

In Vue

Complete the Integration with Vue guide. Your code should look similar to the following example:

<Pivot
 toolbar
/>

Step 4. Configure the report

On the client side, configure the report as follows:

const pivot = new Flexmonster({
container: "pivotContainer",
toolbar: true,
report: {
dataSource: {
type: "elasticsearch",
// Your secured Elasticsearch endpoint
node: "https://localhost:9200",
// The name of your Elasticsearch index
index: "fm-product-sales",
// Your credentials to authenticate Flexmonster requests
requestHeaders: {
Authorization: "Basic " + btoa("<your_username>:<your_password>")
}
}
}
});

Notice the Authorization header in the dataSource.requestHeaders property. This header contains Base64-encoded credentials, which are required for connecting to Elasticsearch with security enabled. Learn more about securing HTTP client applications.

See the full list of properties you can specify in the dataSource object for Elasticsearch.

List of supported configuration parameters

When connecting to data from Elasticsearch, you can use the following properties of the DataSourceObject:

List of properties
Property/TypeDescription
type
String
The data source type. When connecting to data from Elasticsearch, set the type to "elasticsearch".
node
String
The URL to the Elasticsearch endpoint.
index
Boolean
The name of the Elasticsearch index.
mapping
MappingObject | String
optional Defines how fields from the data source are treated and presented within the component. For example, you can specify the field’s captions or hide the field from the dataset. Read more about configuring the mapping in Elasticsearch.
It can be either an inline MappingObject or a URL to a JSON file with the mapping Live example.
subquery
BoolQueryObject
optional Sets a server-side filter to decrease the size of the response from the server Live example.
requestHeaders
Object
optional Adds custom request headers. Consists of "key": "value" pairs, where "key" is a header name and "value" is its value Live example.
Note The requestHeaders property is not saved when obtaining the report via save() and getReport() API calls.
withCredentials
Boolean
optional Indicates whether cross-site Access-Control requests should be made using credentials such as authorization headers (true) or not (false). For more details, refer to MDN web docs.
Setting the withCredentials flag to true is recommended when using Windows authentication and other types of server authentication. When set to false, the browser does not ask for credentials and does not include them in outgoing requests.
Default value: false.

Step 5. See the result

Open your webpage in the browser to see Flexmonster with your Elasticsearch data Live example.

If you run into any issues, visit our troubleshooting page.

Optimize data loading

To decrease the data loading time, you can use the dataSource.subquery property. It sets a server-side filter, so Flexmonster will get only the needed part of the data. This approach also allows you to define which data is shown on the grid.

The example below demonstrates how to load specific members of Category and Color fields:

report: {
  dataSource: {
    type: "elasticsearch",
    node: "https://olap.flexmonster.com:9200",
    index: "fm-product-sales",
    subquery: {
      bool: {
        filter: [{
          terms: {
            "Category.keyword": ["Bikes", "Accessories"],
          }
        },
        {
         terms: {
           "Color.keyword": ["blue", "red"]
          }
        }]
      }
    }
  }
}

Live example

Custom security layer

If you need to add custom authentication or manually handle requests on the backend, try out our sample project, which connects Flexmonster to Elasticsearch using a proxy server.

See also