Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

flexmonster/pivot-kibana

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flexmonster Pivot Table & Charts plugin for Kibana

⚠️ NOTICE: Plugin development is ceased

Due to breaking changes in last versions of Kibana, there are numerous issues with maintaining the working version. Therefore, the further development of the plugin is currently ceased.

Still, the currently available groundwork is free to use for your own custom integrations.


Flexmonster Pivot Table & Charts

Flexmonster Pivot is a powerful JavaScript tool for interactive web reporting. It allows you to visualize and analyze data from JSON, CSV, SQL, NoSQL, Elasticsearch, and OLAP data sources quickly and conveniently. Flexmonster is designed to integrate seamlessly with any client-side framework and can be easily embedded into your application.

This repository contains the Flexmonster Pivot plugin for Kibana.

Requirements

The version of Kibana should be compatible with Elasticsearch. For more details, check the support matrix.

For the latest versions, please make changes in package.json and/or other files if necessary.

The following is the most recent working configuration:

Step 1. Install the Flexmonster Pivot plugin

Navigate to the Kibana bin/ folder and run the following commands in the console:

kibana-plugin install https://github.com/flexmonster/pivot-kibana/releases/download/v1.21/flexmonster_pivot-v1.21.zip
cd plugins/flexmonster_pivot
yarn add [email protected] --flat
yarn add [email protected] --flat

Step 2. Add the license key for Flexmonster

Specify the license key in FlexmonsterPivotTable.js as follows:

<FlexmonsterReact.Pivot
  ref="pivot"
  toolbar={true}
  componentFolder="https://cdn.flexmonster.com/" 
  report={this.props.report}
  licenseKey="XXXX-XXXX-XXXX-XXXX-XXXX"
/>

Note that licenseKey is your license or trial key, so replace XXXX-XXXX-XXXX-XXXX-XXXX with an actual key. If you don’t have a license key, contact our team.

Step 3. Enable CORS for Elasticsearch

Open elasticsearch.yml and add the following configurations:

http.cors.enabled : true
http.cors.allow-origin : "*"
http.cors.allow-credentials: true
http.cors.allow-methods : OPTIONS,HEAD,GET,POST,PUT,DELETE
http.cors.allow-headers : kbn-version,Origin,X-Requested-With,Content-Type,Accept,Engaged-Auth-Token,Content-Length,Authorization

Step 4. Enable CORS for Kibana

Open kibana.yml and add the following configurations:

elasticsearch.hosts: ["http://localhost:9200"]
server.cors: true
server.cors.origin: ['*']

Step 5. See the results

A new tab with Flexmonster Pivot will be available if you open Kibana:

Pivot in Kibana

Resources