2014-02-01 06:16:39 -06:00
[Grafana ](http://grafana.org ) [![Build Status ](https://api.travis-ci.org/torkelo/grafana.png )](https://travis-ci.org/torkelo/grafana)
=================
2014-02-19 05:56:06 -06:00
A beautiful, easy to use and feature rich Graphite dashboard replacement and graph editor. Visit [grafana.org ](http://grafana.org ) for screenshots, videos and feature descriptions.
2013-01-25 22:10:28 -06:00
2014-01-23 12:19:56 -06:00
![](http://grafana.org/assets/img/edit_dashboards.png)
2014-03-09 12:02:04 -05:00
## Features
### Graphite Target Editor
2014-01-19 10:16:57 -06:00
- Graphite target expression parser
2014-03-09 13:12:02 -05:00
- Quickly add / edit / remove function ([video demo](http://youtu.be/I90WHRwE1ZM))
2014-01-19 10:16:57 -06:00
- Function parameters can be easily changed
- Quickly navigate graphite metric structure
- Templating
2014-03-09 12:02:04 -05:00
- Integrated links to function documentation
- Rearrange function order
2014-02-08 13:47:04 -06:00
- Native Graphite PNG render support
2014-01-19 10:16:57 -06:00
2014-03-09 12:02:04 -05:00
### Graphing
2014-01-19 10:16:57 -06:00
- Fast rendering, even over large timespans.
- Click and drag to zoom.
- Multiple Y-axis.
- Bars, Lines, Points.
- Smart Y-axis formating
- Series toggles & color selector
- Axis labels
2014-02-21 07:27:38 -06:00
- Grid thresholds, axis labels
- [Annotations] (https://github.com/torkelo/grafana/wiki/Annotations)
2014-01-19 10:16:57 -06:00
2014-03-09 12:02:04 -05:00
### Dashboards
2014-01-19 10:16:57 -06:00
- Create and edit dashboards
- Drag and drop graphs to rearrange
- Set column spans and row heights
2014-02-19 05:56:06 -06:00
- Save & [search dashboards ](https://github.com/torkelo/grafana/wiki/Search-features )
2014-01-19 10:16:57 -06:00
- Import & export dashboard (json file)
- Import dashboard from Graphite
- Templating
2014-02-08 13:45:01 -06:00
- [Scripted dashboards ](https://github.com/torkelo/grafana/wiki/Scripted-dashboards ) (generate from js script and url parameters)
2014-02-19 05:56:06 -06:00
- Flexible [time range controls ](https://github.com/torkelo/grafana/wiki/Time-range-controls )
2014-03-09 12:02:04 -05:00
- [Dashboard playlists ](https://github.com/torkelo/grafana/wiki/Dashboard-playlist )
### InfluxDB
- [Use InfluxDB ](https://github.com/torkelo/grafana/wiki/InfluxDB ) as metric datasource
2014-01-19 10:16:57 -06:00
# Requirements
Grafana is very easy to install. It is a client side web app with no backend. Any webserver will do. Optionally you will need ElasticSearch if you want to be able to save and load dashboards quickly instead of json files or local storage.
# Installation
2014-01-20 04:51:50 -06:00
- Download and extract the [latest release ](https://github.com/torkelo/grafana/releases ).
2014-03-31 09:22:55 -05:00
- Rename `config.sample.js` to `config.js` , then change `graphiteUrl` and `elasticsearch` to point to the correct urls. The urls entered here must be reachable by your browser.
2014-01-19 10:38:34 -06:00
- Point your browser to the installation.
2014-01-19 10:16:57 -06:00
2014-01-20 03:57:59 -06:00
To run from master:
2014-01-20 04:00:07 -06:00
- Clone this repository
2014-01-20 03:57:59 -06:00
- Start a web server in src folder
2014-01-21 01:38:30 -06:00
- Or create a optimized & minified build:
2014-01-25 10:25:21 -06:00
- npm install (requires nodejs)
- grunt build
2014-01-20 03:57:59 -06:00
2014-01-23 12:19:56 -06:00
When you have Grafana up an running, read the [Getting started ](https://github.com/torkelo/grafana/wiki/Getting-started ) guide for
2014-02-17 12:42:26 -06:00
an introduction on how to use Grafana and/or watch [this video ](https://www.youtube.com/watch?v=OUvJamHeMpw ) for a guide in creating a new dashboard and for creating
templated dashboards.
2014-01-23 12:19:56 -06:00
2014-01-19 10:16:57 -06:00
# Graphite server config
If you haven't used an alternative dashboard for graphite before you need to enable cross-domain origin request. For Apache 2.x:
```
Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Methods "GET, OPTIONS"
Header set Access-Control-Allow-Headers "origin, authorization, accept"
2014-01-19 10:38:34 -06:00
```
2014-01-19 10:16:57 -06:00
2014-01-23 04:58:59 -06:00
If your Graphite web is proteced by basic authentication, you have to enable the HTTP verb OPTIONS, origin
(no wildcards are allowed in this case) and add Access-Control-Allow-Credentials. This looks like the following for Apache:
2014-01-19 10:16:57 -06:00
```
2014-01-23 04:58:59 -06:00
Header set Access-Control-Allow-Origin "http://mygrafana.com:5656"
Header set Access-Control-Allow-Credentials true
2014-01-19 10:16:57 -06:00
< Location / >
AuthName "graphs restricted"
AuthType Basic
AuthUserFile /etc/apache2/htpasswd
< LimitExcept OPTIONS >
require valid-user
< / LimitExcept >
< / Location >
```
# Roadmap
- Improve and refine the target parser and editing
- Improve graphite import feature
- Refine and simplify common tasks
2014-01-19 10:38:34 -06:00
- More panel types (not just graphs)
2014-01-19 10:16:57 -06:00
- Use elasticsearch to search for metrics
2014-01-19 10:38:34 -06:00
- Improve template support
2014-01-20 11:45:22 -06:00
- Annotate graph by querying ElasticSearch for events (or other event sources)
2014-01-19 10:38:34 -06:00
- Add support for other time series databases like InfluxDB
2014-01-19 10:16:57 -06:00
# Contribute
2014-01-21 01:38:30 -06:00
If you have any idea for an improvement or found a bug do not hesitate to open an issue. And if you have time clone this repo and submit a pull request and help me make Grafana the kickass metrics & devops dashboard we all dream about!
2014-01-19 10:16:57 -06:00
2014-01-20 04:00:07 -06:00
Clone repository:
2014-01-20 03:57:59 -06:00
- npm install
- grunt server (starts development web server in src folder)
2014-01-20 04:00:07 -06:00
- grunt (runs jshint and less -> css compilation)
2014-01-20 03:57:59 -06:00
2014-01-19 10:16:57 -06:00
# Notice
This software is based on the great log dashboard [kibana ](https://github.com/elasticsearch/kibana ).
# License
2014-03-31 09:22:55 -05:00
Grafana is distributed under Apache 2.0 License.