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
2016-04-11 12:21:48 -04:00
.github github(pr_template): minor guide for PRs 2016-03-09 12:42:36 +01:00
.hooks feat(hooks): add grunt test to pre commit 2016-01-18 14:37:53 +01:00
benchmarks/ab Fixed light theme condition, Fixes #1462 2015-02-11 15:32:19 +01:00
conf feat(update checks): started work on update checks 2016-04-11 12:21:48 -04:00
docker feat(templating): prometheus now works with new template variable formating/escaping, #2918 2016-03-01 16:11:05 +01:00
docs Fixed typos, lang 2016-04-06 07:26:22 -07:00
emails feat(signup): progress on new sign up and email verification flow, #2353 2015-08-28 13:45:16 +02:00
examples docs(examples): move app example into new repo 2016-03-11 10:06:44 +01:00
Godeps Merge pull request #4461 from dfwarden/ldap_nested_groups 2016-03-28 11:19:28 +02:00
packaging fix(postgres): fixed issue with postgres caused by wrong prefrences table types, dropped table and created it with correct column types, fixes #4558 2016-04-05 11:24:21 -04:00
pkg feat(update checks): started work on update checks 2016-04-11 12:21:48 -04:00
public Merge branch 'master' of github.com:grafana/grafana 2016-04-10 14:59:03 -04:00
tasks tech(): changed deps in package.json 2016-03-30 08:10:22 -07:00
tests feat(plugins): added prometheus dashboard to prometheus data source, #4298 2016-03-12 10:40:55 +01:00
vendor/phantomjs fix(panel): fixed issues with png rendering, also fixed #4260 2016-03-06 12:51:36 +01:00
.bowerrc Added bowerrc file 2015-06-13 20:43:12 +02:00
.bra.toml fix(bra): fix bra runner 2016-02-15 13:19:03 +01:00
.editorconfig feat(editorconfig): add config for go files 2016-03-08 14:31:31 +01:00
.gitignore fix(examples): ignore dist folder 2016-03-02 10:45:17 +01:00
.jscs.json Adding JSCS (javascript style checker) 2014-06-07 07:05:42 +02:00
.jsfmtrc SharePanelModal: working on share feature, #864 2014-09-30 14:42:59 +02:00
.jshintrc feat(templating): lots of progress on template variable context specific formats, #2918, all elasticsearch / lucene use cases seem to work now 2016-03-01 08:43:54 +01:00
appveyor.yml build(): trying to fix windows build on appveyor 2016-03-31 06:47:50 -07:00
bower.json tech(): updated angularjs 2016-03-28 17:08:31 +02:00
build.go build(): build fix 2016-03-30 12:02:44 -07:00
CHANGELOG.md fix(graph): Fixed issue with legend height in table mode with few series, affected iframe embedding as well, fixes #4640 2016-04-10 14:58:52 -04:00
circle.yml feat(circleci): triggers grafana packer after successful build 2016-01-27 20:18:51 +01:00
Gruntfile.js build(): build fix 2016-03-30 12:02:44 -07:00
karma.conf.js trying to fix karma issue 2016-04-03 09:43:33 -04:00
latest.json feat(update checks): started work on update checks 2016-04-11 12:21:48 -04:00
LICENSE.md Updated copyright to 2016 2016-01-01 01:30:43 +00: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(): updated changelog and version to beta3 2016-04-05 11:29:12 -04:00
README.md docs(): updated readme, again 2016-04-06 13:19:06 -04:00
symlink_git_hooks.sh feat(hooks): improve symlinks script 2016-01-21 14:39:32 +01:00
test.sh Worked on golang code coverage via coveralls 2015-05-02 17:24:03 +02:00
trigger_grafana_packer.sh feat(circleci): triggers grafana packer after successful build 2016-01-27 20:18:51 +01:00
tsconfig.json tech(systemjs): ok, moving forward 2015-12-17 14:27:34 +01:00
tsd.json minor progress 2015-12-16 17:01:34 +01:00
tslint.json feat(tslint): remove two space requirements for comments 2016-03-18 13:20:49 +01:00

Grafana Circle CI Coverage Status

Website | Twitter | IRC | Slack | Email

Grafana is an open source, feature rich metrics dashboard and graph editor for Graphite, Elasticsearch, OpenTSDB, Prometheus and InfluxDB.

Features

Graphite Target Editor

  • Graphite target expression parser
  • Feature rich query composer
  • Quickly add and edit functions & parameters
  • Templated queries
  • See it in action

Graphing

  • Fast rendering, even over large timespans
  • Click and drag to zoom
  • Multiple Y-axis, logarithmic scales
  • Bars, Lines, Points
  • Smart Y-axis formatting
  • Series toggles & color selector
  • Legend values, and formatting options
  • Grid thresholds, axis labels
  • Annotations
  • Any panel can be rendered to PNG (server side using phantomjs)

Dashboards

Elasticsearch

  • Feature rich query editor UI

InfluxDB

  • Use InfluxDB as a metric data source, annotation source
  • Query editor with series and column typeahead, easy group by and function selection

OpenTSDB

  • Use as metric data source
  • Query editor with metric name typeahead and tag filtering

Requirements

There are no dependencies except an external time series data store. For dashboards and user accounts Grafana can use an embedded database (sqlite3) or you can use an external SQL data base like MySQL or Postgres.

Installation

Head to grafana.org and download the latest release.

If you have any problems please read the troubleshooting guide.

Documentation & Support

Be sure to read the getting started guide and the other feature guides.

Run from master

If you want to build a package yourself, or contribute. Here is a guide for how to do that. You can always find the latest master builds here

Dependencies

Get Code

go get github.com/grafana/grafana

Building the backend

Replace X.Y.Z by actual version number.

cd $GOPATH/src/github.com/grafana/grafana
go run build.go setup            (only needed once to install godep)
godep restore                    (will pull down all golang lib dependencies in your current GOPATH)
go run build.go build

Building frontend assets

To build less to css for the frontend you will need a recent version of of node (v0.12.0), npm (v2.5.0) and grunt (v0.4.5). Run the following:

npm install
npm install -g grunt-cli
grunt

Recompile backend on source change

To rebuild on source change (requires that you executed godep restore)

go get github.com/Unknwon/bra
bra run

Running

./bin/grafana-server

Open grafana in your browser (default http://localhost:3000) and login with admin user (default user/pass = admin/admin).

Dev config

Create a custom.ini in the conf directory to override default configuration options. You only need to add the options you want to override. Config files are applied in the order of:

  1. grafana.ini
  2. dev.ini (if found)
  3. custom.ini

Create a pull request

Before or after you create a pull request, sign the contributor license agreement.

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!

Before creating a pull request be sure that "grunt test" runs without any style or unit test errors, also please sign the CLA

License

Grafana is distributed under Apache 2.0 License. Work in progress Grafana 2.0 (with included Grafana backend)