Skip to content
Snippets Groups Projects
README.md 5.9 KiB
Newer Older
Kyle Doherty's avatar
Kyle Doherty committed
# Metabase
Kyle Doherty's avatar
Kyle Doherty committed
Metabase is the easy, open source way for everyone in your company to ask questions and learn from data.

![Metabase Product Screenshot](docs/metabase-product-screenshot.png)
[![Latest Release](https://img.shields.io/github/release/metabase/metabase.svg?label=latest%20release)](https://github.com/metabase/metabase/releases)
[![GitHub license](https://img.shields.io/badge/license-AGPL-05B8CC.svg)](https://raw.githubusercontent.com/metabase/metabase/master/LICENSE.txt)
Allen Gilliland's avatar
Allen Gilliland committed
[![Circle CI](https://circleci.com/gh/metabase/metabase.svg?style=svg&circle-token=3ccf0aa841028af027f2ac9e8df17ce603e90ef9)](https://circleci.com/gh/metabase/metabase)
[![codecov](https://codecov.io/gh/metabase/metabase/branch/master/graph/badge.svg)](https://codecov.io/gh/metabase/metabase)
Tom Robinson's avatar
Tom Robinson committed
[![Gitter chat](https://badges.gitter.im/metabase/metabase.png)](https://gitter.im/metabase/metabase)
Kyle Doherty's avatar
Kyle Doherty committed
# Features
Cam Saul's avatar
Cam Saul committed
- 5 minute [setup](https://metabase.com/docs/latest/setting-up-metabase.html) (We're not kidding)
- Let anyone on your team [ask questions](https://metabase.com/docs/latest/users-guide/04-asking-questions.html) without knowing SQL
- Rich beautiful [dashboards](https://metabase.com/docs/latest/users-guide/06-sharing-answers.html) with auto refresh and fullscreen
Kyle Doherty's avatar
Kyle Doherty committed
- SQL Mode for analysts and data pros
Cam Saul's avatar
Cam Saul committed
- Create canonical [segments and metrics](https://metabase.com/docs/latest/administration-guide/07-segments-and-metrics.html) for your team to use
- Send data to Slack or email on a schedule with [Pulses](https://metabase.com/docs/latest/users-guide/10-pulses.html)
- View data in Slack anytime with [MetaBot](https://metabase.com/docs/latest/users-guide/11-metabot.html)
- [Humanize data](https://metabase.com/docs/latest/administration-guide/03-metadata-editing.html) for your team by renaming, annotating and hiding fields
- See changes in your data with [alerts](https://www.metabase.com/docs/latest/users-guide/15-alerts.html)
Allen Gilliland's avatar
Allen Gilliland committed

Flamber Hansen's avatar
Flamber Hansen committed
For more information check out [metabase.com](https://metabase.com/)
Allen Gilliland's avatar
Allen Gilliland committed

Kyle Doherty's avatar
Kyle Doherty committed
## Supported databases
Allen Gilliland's avatar
Allen Gilliland committed

Kyle Doherty's avatar
Kyle Doherty committed
- Postgres
- MySQL
Kyle Doherty's avatar
Kyle Doherty committed
- Druid
- SQL Server
Kyle Doherty's avatar
Kyle Doherty committed
- Redshift
- MongoDB
- Google BigQuery
Kyle Doherty's avatar
Kyle Doherty committed
- SQLite
Kyle Doherty's avatar
Kyle Doherty committed
- H2
Cam Saül's avatar
Cam Saül committed
- Oracle
William Turner's avatar
William Turner committed
- Presto
Kyle Doherty's avatar
Kyle Doherty committed
Don't see your favorite database? File an issue to let us know.
Allen Gilliland's avatar
Allen Gilliland committed

Kyle Doherty's avatar
Kyle Doherty committed
## Installation
Allen Gilliland's avatar
Allen Gilliland committed

Metabase can be run just about anywhere so checkout our [Installation Guides](https://metabase.com/docs/latest/operations-guide/start.html#installing-and-running-metabase) for detailed instructions for various deployments. Here's the TLDR:
Kyle Doherty's avatar
Kyle Doherty committed
### Docker

To run Metabase via Docker, just type
Kyle Doherty's avatar
Kyle Doherty committed
```sh
docker run -d -p 3000:3000 --name metabase metabase/metabase
```
Kyle Doherty's avatar
Kyle Doherty committed
### JVM Jar
Allen Gilliland's avatar
Allen Gilliland committed
To run the jar you will need to have a Java Runtime installed. As a quick check to see if you system already has one, try
Kyle Doherty's avatar
Kyle Doherty committed
```sh
Kyle Doherty's avatar
Kyle Doherty committed
java -version
Kyle Doherty's avatar
Kyle Doherty committed
```
Allen Gilliland's avatar
Allen Gilliland committed
If you see something like
Kyle Doherty's avatar
Kyle Doherty committed
```sh
java version "1.8.0_51"
Java(TM) SE Runtime Environment (build 1.8.0_51-b16)
Java HotSpot(TM) 64-Bit Server VM (build 25.51-b03, mixed mode)
```
you are good to go. Otherwise, download the Java Runtime Environment at http://java.com/
Flamber Hansen's avatar
Flamber Hansen committed
Go to the [Metabase Download Page](https://metabase.com/start/) and download the current build. Place the downloaded jar into a newly created directory (as it will create some files when it is run), and run it on the command line:
Kyle Doherty's avatar
Kyle Doherty committed
```sh
Kyle Doherty's avatar
Kyle Doherty committed
java -jar metabase.jar
Kyle Doherty's avatar
Kyle Doherty committed
```
Allen Gilliland's avatar
Allen Gilliland committed
Now, open a browser and go to [http://localhost:3000](http://localhost:3000) , and you will be asked a set of questions that will set up a user account, and then you can add a database connection. For this to work you will need to get some information about which database you want to connect to, such as the Host Name and Port that it is running on, the Database Name and the User and Password that you will be using.
Allen Gilliland's avatar
Allen Gilliland committed
Once you have added this connection, you will be taken into the app and you'll be ready to ask your first question.
For a more detailed walkthrough, check out our [Getting Started](docs/getting-started.md) guide.
Sameer Al-Sakran's avatar
Sameer Al-Sakran committed
# Frequently Asked Questions

Some questions come up over and over again. Check here first:
[FAQ](docs/faq.md)

Kyle Doherty's avatar
Kyle Doherty committed
# Security Disclosure

Security is very important to us. If you discover any issue regarding security, please disclose the information responsibly by sending an email to security@metabase.com and not by creating a GitHub issue.
Kyle Doherty's avatar
Kyle Doherty committed

Cam Saül's avatar
Cam Saül committed

To get started with a development installation of the Metabase, follow the instructions at our [Developers Guide](docs/developers-guide.md).

Sameer Al-Sakran's avatar
Sameer Al-Sakran committed
Then take a look at our [Contribution Guide](docs/contributing.md) for information about our process and where you can fit in!
# Internationalization

We want Metabase to be available in as many languages as possible. See what translations are available and help contribute to internationalization using our project over at [POEditor](https://poeditor.com/join/project/ynjQmwSsGh). You can also check out our [policies on translations](docs/faq/general/what-languages-can-be-used-with-metabase.md).
Tom Robinson's avatar
Tom Robinson committed

Sameer Al-Sakran's avatar
Sameer Al-Sakran committed
# Extending and Deep Integrations

Metabase also allows you to hit our Query API directly from Javascript to integrate the simple analytics we provide with your own application or third party services to do things like:

- Build moderation interfaces
- Export subsets of your users to third party marketing automation software
- Provide a specialized customer lookup application for the people in your company
Sameer Al-Sakran's avatar
Sameer Al-Sakran committed

Cam Saul's avatar
Cam Saul committed
The button below will deploy the branch where this README.md lives onto Heroku. Metabase developers use it to deploy branches of Metabase to test our PRs, etc. We DO NOT recommend you using this for production. Instead, please use a [stable build](https://metabase.com/start).
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)

Unless otherwise noted, all Metabase source files are made available under the terms of the GNU Affero General Public License (AGPL).
Allen Gilliland's avatar
Allen Gilliland committed

See [LICENSE.txt](https://github.com/metabase/metabase/blob/master/LICENSE.txt) for details and exceptions.
Allen Gilliland's avatar
Allen Gilliland committed

Cam Saul's avatar
Cam Saul committed
Unless otherwise noted, all files © 2019 Metabase, Inc.