Kibiter is a custom soft fork of Kibana which empowers GrimoireLab Panels with metrics & data visualizations.
There are several ways for installing Kibiter on your system: from releases, Docker images or source code.
There are four Docker images of Kibiter, they have the following tags:
bitergia/kibiter:community-v6.8.6-X
(being X the version of the release), the image that corresponds to the community version of Kibiter.bitergia/kibiter:optimized-v6.8.6-X
(being X the version of the release), the image that corresponds to the optimized version of Kibiter.bitergia/kibiter:secured-v6.8.6-X
(being X the version of the release), the image that corresponds to the secured (with Search Guard) version of Kibiter.There are docker env variables for the secured image (bitergia/kibiter:secured-v6.8.6-X
) that should be defined:
ELASTICSEARCH_URL
: This env variable defines the URL or URL's of the ElasticSearch that Kibiter will connect. This env variable must be an array of the endpoints, each one must be a string.BASE_PATH
: Enables you to specify a path to mount Kibiter at if you are running behind a proxy.PROJECT_NAME
: The name of the project that will be in the menu top bar and the page title.ELASTICSEARCH_USER
: Username that will use Kibiter to connect to ElasticSearch.ELASTICSEARCH_PASSWORD
: Password of the username that will use Kibiter to connect to ElasticSearch.ANONYMOUS_USER
: If true, the anonymous user will be activated. If not defined or false, the anonymous user will be deactivated. ElasticSearch with SearchGuard plugin must have activated the anonymous authentication (ANONYMOUS_USER
if using Bitergia ElasticSearch image).LOGIN_BRANDIMAGE
: This env variable must be an URL to an image, this image will be the logo of the login form. If not defined, the Bitergia logo will appear.LOGIN_TITLE
: A string (or HTML) that will define the title of the login. If not defined, the title will be: Please login to Bitergia Analytics Dashboard
.LOGIN_SUBTITLE
: A string (or HTML) that will define the subtitle of the login. If not defined, the subtitle will be: If you have forgotten your username or password, please contact the <a href="https://github.com/chaoss/grimoirelab-kibiter/blob/integration-community-6.8.6/mailto:support@bitergia.com?Subject=Credentials" target="_top">Bitergia staff</a>
.Clone the repository from the branch integration-6.8.6-<version>
, where version can be empty or //community//.
git clone https://github.com/chaoss/grimoirelab-kibiter -b integration-6.8.6-<version>
Install the npm dependencies
cd grimoirelab-kibiter
yarn kbn bootstrap
Launch Kibiter
./bin/kibana --oss
Kibiter provides several features, not present in Kibana, that have been developed for GrimoireLab. The most important ones are described below.
If you are using Kibiter with the GrimoireLab tools, you will see a quick menu at the top of the page, like the one below:
This menu allows you to navigate through the GrimoireLab panels, see its structure below:
Kibiter has several plugins installed by default, they improve the user customization and add more information to the dashboards. Clearly, they are all open source. The plugins are listed below:
Following the Kibana docs, you should be running Elasticsearch and Kibiter with matching version numbers. However, Kibiter will run (and log a warning) in case your Elasticsearch has a newer minor or patch number. Note that Kibiter won't be able to run, if your Elasticsearch has an older version number or a newer major number.
The table below shows some examples to illustrate the relationships between different types of version numbers.
Situation | Example Kibiter version | Example ES version | Outcome |
---|---|---|---|
Versions are the same. | 5.1.2 | 5.1.2 | 💚 OK |
ES patch number is newer. | 5.1.2 | 5.1.5 | ⚠️ Logged warning |
ES minor number is newer. | 5.1.2 | 5.5.0 | ⚠️ Logged warning |
ES major number is newer. | 5.1.2 | 6.0.0 | 🚫 Fatal error |
ES patch number is older. | 5.1.2 | 5.1.0 | ⚠️ Logged warning |
ES minor number is older. | 5.1.2 | 5.0.0 | 🚫 Fatal error |
ES major number is older. | 5.1.2 | 4.0.0 | 🚫 Fatal error |
We happily accept contributions, and we will help you in case you need. We follow the same contribution process that Kibana provides, thus have a look at:
If you find a bug or want to request a new feature, please open a issue on GitHub. To avoid duplicated issues, check the existing issues to make sure someone else hasn't already created a similar one.