Kibana as an Aptible app. This app automatically detects your Elasticsearch version and starts Kibana 4.1 or 4.4 accordingly.
This app is configured through two environment variables: AUTH_CREDENTIALS
and DATABASE_URL
. The former is used to authenticate Kibana users, and the
latter is used to make requests to a backend Elasticsearch instance.
In other words, any user that can log in to Kibana can execute queries against the upstream Elasticsearch instance using Kibana's credentials.
This is probably what you want if you're deploying Kibana, but it means you
should make sure you choose strong passwords for AUTH_CREDENTIALS
.
To run as an app on Aptible:
-
Create an app in your Aptible dashboard for Kibana. In the steps that follow, we'll use <YOUR_KIBANA_APP_HANDLE> anywhere that you should substitute the actual app handle the results from this step in the instructions.
-
Use the Aptible CLI to set AUTH_CREDENTIALS to the username/password you want to use to access the app. To set the user to "foo" and password to "bar", run:
aptible config:set AUTH_CREDENTIALS=foo:bar --app <YOUR_KIBANA_APP_HANDLE>
-
Use the Aptible CLI to set DATABASE_URL to the URL of your Elasticsearch instance on Aptible (this is just the connection string presented in the Aptible dashboard when you select your Elasticsearch instance). If your URL is http://user:[email protected], run:
aptible config:set DATABASE_URL=http://user:[email protected] --app <YOUR_KIBANA_APP_HANDLE>
-
(Optional) Update your configuration to specify a Kibana version. If you are using Elasticsearch 1.x, then use Kibana 4.1, otherwise, use Kibana 4.4. If you don't set this, this app will auto-detect your Elasticsearch version from
DATABASE_URL
, so it's entirely fine to leave it empty.# For Elasticsearch 1.x aptible config:set KIBANA_ACTIVE_VERSION=41 --app <YOUR_KIBANA_APP_HANDLE> # For Elasticsearch 2.x aptible config:set KIBANA_ACTIVE_VERSION=44 --app <YOUR_KIBANA_APP_HANDLE>
If you don't specify a version, this app will try to guess one based on your
DATABASE_URL
, or fall back to the most recent Kibana version. -
(Optional) Kibana config options can be set for
default_route
andkibana_index
which are then saved to the config.js:aptible config:set DEFAULT_ROUTE=/path/to/default --app <YOUR_KIBANA_APP_HANDLE> aptible config:set KIBANA_INDEX=your_index --app <YOUR_KIBANA_APP_HANDLE>
-
Clone this repository and push it to your Aptible app:
git clone https://github.com/aptible/docker-kibana.git cd docker-kibana git remote add aptible [email protected]:<YOUR_KIBANA_APP_HANDLE>.git git push aptible master
You should be up and running now. If you have a default *.on-aptible.com
VHOST, you're done. If not, add a custom VHOST to expose your Kibaba app to the Internet.
If you're new to Kibana, try working through the Kibana 10 minute walk through as an introduction. To jump in to a view of your recent log messages, you can start by clicking the "Discover" tab, which should default to viewing all log messages, most recent first.
MIT License, see LICENSE for details.
Copyright (c) 2014 Aptible and contributors.