The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
Go to file
2014-08-05 10:15:51 +02:00
sample Dashboard schema simplifications, moved schema updates to dashboard model creation, removes irritating 'unsaved changes' dialogs that show for dashboard schema changes, Closes #532 2014-08-05 10:15:51 +02:00
src Dashboard schema simplifications, moved schema updates to dashboard model creation, removes irritating 'unsaved changes' dialogs that show for dashboard schema changes, Closes #532 2014-08-05 10:15:51 +02:00
tasks Elastic search annotations are working, need to refactor and unify datasource abstraction more, #201 2014-07-29 17:24:42 +02:00
.gitignore added saving and showing temp searches also trailing comman in default.json was causing the default to fail to load for me, #633 2014-07-31 12:37:35 -07:00
.jscs.json Adding JSCS (javascript style checker) 2014-06-07 07:05:42 +02:00
.jshintrc cleanup of unused code, small style changes 2014-05-27 18:18:05 +02:00
.travis.yml Adding travis-ci build 2014-02-01 11:26:22 +01:00
CHANGELOG.md Dashboard schema simplifications, moved schema updates to dashboard model creation, removes irritating 'unsaved changes' dialogs that show for dashboard schema changes, Closes #532 2014-08-05 10:15:51 +02:00
CONTRIBUTING.md Improved markdown formatting in the contributing page. 2014-03-12 08:23:28 +00:00
grafana.sublime-project parser and lexer is working ok 2013-12-24 11:13:50 +01:00
Gruntfile.js Skeleton API docs 2013-12-02 12:43:39 -07:00
latest.json fix jshint and updated changelog with PR #500 2014-06-17 18:09:10 +02:00
LICENSE.md updated license and added notice, hard to know how to handle attribution, and copyright, wish kibana src files had license headers 2013-12-27 11:58:35 +01:00
NOTICE.md updated license and added notice, hard to know how to handle attribution, and copyright, wish kibana src files had license headers 2013-12-27 11:58:35 +01:00
package.json Fix for build issues on windows, Fixes #574 2014-07-28 11:08:19 +02:00
README.md updated readme.md 2014-07-15 11:32:03 +02:00

Grafana Build Status Gittip

Website | Twitter | IRC | Email

Grafana is An open source, feature rich metrics dashboard and graph editor for Graphite, InfluxDB & OpenTSDB.

Features

Graphite Target Editor

  • Graphite target expression parser
  • Quickly add / edit / remove function (video demo)
  • Function parameters can be easily changed
  • Quickly navigate graphite metric structure
  • Templating
  • Integrated links to function documentation
  • Rearrange function order
  • Native Graphite PNG render support

Graphing

  • 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
  • Legend values, and formating options
  • Grid thresholds, axis labels
  • [Annotations] (https://github.com/grafana/grafana/wiki/Annotations)

Dashboards

InfluxDB

  • Use InfluxDB as metric datasource
  • Query editor with series and column typeahead, easy group by and function selection

OpenTSDB

  • Query editor with metric name typeahead and tag filtering

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

  • Download and extract the latest release.
  • 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.
  • Point your browser to the installation.

To run from master:

  • Clone this repository
  • Start a web server in src folder
  • Or create a optimized & minified build:
  • npm install (requires nodejs)
  • grunt build (requires grunt-cli)

If you use ansible for provisioning and deployment ansible-grafana should get you started.

When you have Grafana up an running, read the Getting started guide for an introduction on how to use Grafana and/or watch this video for a guide in creating a new dashboard and for creating templated dashboards.

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"

Note that using "*" leaves your graphite instance quite open so you might want to consider using "http://my.graphite-dom.ain" in place of "*"

Here is the same thing, in nginx format:

add_header  "Access-Control-Allow-Origin" "*";
add_header  "Access-Control-Allow-Credentials" "true";
add_header  "Access-Control-Allow-Methods" "GET, OPTIONS";
add_header  "Access-Control-Allow-Headers" "Authorization, origin, accept";

If your Graphite web is protected 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:

Header set Access-Control-Allow-Origin "http://mygrafana.com:5656"
Header set Access-Control-Allow-Credentials true

<Location />
    AuthName "graphs restricted"
    AuthType Basic
    AuthUserFile /etc/apache2/htpasswd
    <LimitExcept OPTIONS>
      require valid-user
    </LimitExcept>
</Location>

And in nginx:

auth_basic            "Restricted";
auth_basic_user_file  /path/to/my/htpasswd/file;
if ($http_origin ~* (https?://[^/]*\.somedomain\.com(:[0-9]+)?)) {  #Test if request is from allowed domain, you can use multiple if
    set $cors "true";                                               #statements to allow multiple domains, simply setting $cors to true in each one.
}
if ($cors = 'true') {
    add_header  Access-Control-Allow-Origin $http_origin;           #this mirrors back whatever domain the request came from as authorized, as
    add_header  "Access-Control-Allow-Credentials" "true";          #as long as it matches one of your if statements
    add_header  "Access-Control-Allow-Methods" "GET, OPTIONS";
    add_header  "Access-Control-Allow-Headers" "Authorization, origin, accept";
}

Roadmap

  • Improve and refine the target parser and editing
  • Improve graphite import feature
  • Refine and simplify common tasks
  • More panel types (not just graphs)
  • Use elasticsearch to search for metrics
  • Improve template support
  • Annotate graph by querying ElasticSearch for events (or other event sources)

Contribute

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!

Clone repository:

  • npm install
  • grunt server (starts development web server in src folder)
  • grunt (runs jshint and less -> css compilation)

Notice

This software is based on the great log dashboard kibana.

License

Grafana is distributed under Apache 2.0 License.