EnergyLink App para mostrar información del mercado y resultados de las operaciones

Torkel Ödegaard 3ab7b5c3f7 Merge branch 'master' of /home/torkel/dev/go/src/github.com/torkelo/backend 11 years ago
Godeps 9e58921b23 Updated godeps file 11 years ago
conf 3752379106 Worked on event system, needs a little more work 11 years ago
data b876d193c4 updated 11 years ago
docker 8bb9126b77 added postgres support for db migrations 11 years ago
grafana @ d5471c153a 076905d14e Added isStarred to search result hit, very inefficient loading right now but can be cached later on 11 years ago
pkg 076905d14e Added isStarred to search result hit, very inefficient loading right now but can be cached later on 11 years ago
src 6b6b97c8d8 Minor bug fix for rememeber refresh interval after zooming two or more times, Fixes #1408 11 years ago
tasks 858d7be8cf Migrated from ngmin to ngAnnotate 11 years ago
vendor 4786e0f882 Changed name for vendor folder 11 years ago
.bra.toml 4131b75562 updated build script and readme with build instructions 11 years ago
.gitignore 3ab7b5c3f7 Merge branch 'master' of /home/torkel/dev/go/src/github.com/torkelo/backend 11 years ago
.gitmodules 8154b4f60d search and save are 'working', barely 11 years ago
.jscs.json ce8bdabab8 Adding JSCS (javascript style checker) 11 years ago
.jsfmtrc 2c85205259 SharePanelModal: working on share feature, #864 11 years ago
.jshintrc e2dae1f484 cleanup of unused code, small style changes 11 years ago
.travis.yml 7fc1fed91e make CI build faster 11 years ago
CHANGELOG.md ea5da627af Panel: Different time periods, panels can override dashboard relative time and/or add a time shift, #171, only works for graph panel for now, need feedback for how to do it for singlestat panel 11 years ago
CONTRIBUTING.md a76d9b87f0 Improved markdown formatting in the contributing page. 12 years ago
Gruntfile.js aec9a42ee1 Skeleton API docs 12 years ago
LICENSE.md 35326e1d92 Worked a little on anonymous access, needs more work 11 years ago
NOTICE.md c679a24c03 updated license and added notice, hard to know how to handle attribution, and copyright, wish kibana src files had license headers 12 years ago
README.md 3ab7b5c3f7 Merge branch 'master' of /home/torkel/dev/go/src/github.com/torkelo/backend 11 years ago
build.go 12f2ca9262 updated build file 11 years ago
latest.json d9386cc2c3 Updated lastest.json 11 years ago
main.go d95c5e6674 Basic import of json dashboards is working, needs more work to handle updates, and continous watching, #22 11 years ago
model.txt f1996a9f1f Initial work on seperation between user and account 11 years ago
package.json 858d7be8cf Migrated from ngmin to ngAnnotate 11 years ago
todo.txt 05f9e5eef1 rendering 11 years ago
wercker.yml d06174fb56 Added build script written in go that adds build symbols for version, commit and build date 11 years ago

README.md

Grafana Build Status Coverage Status Gitter

Website | Twitter | IRC | Email

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

Grafana 2.0 Branch

wercker status

building and running

Before trying to build make sure the grafana frontend git submodule is loaded.

By clone recursive

git clone --recursive <this_repo>

In case of after clone

git submodule update --init

Building

go run build.go setup (only needed once to install godep)
go run build.go build

For quicker builds:

godep restore (will pull down all golang lib dependecies in your current GOPATH)
go build -o ./bin/grafana .

To build less to css for frontend:

cd grafana
npm install
npm install -g grunt-cli
grunt

To rebuild on source change:

go get github.com/Unknwon/bra

bra run

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.
  • Bars, Lines, Points.
  • Smart Y-axis formating
  • Series toggles & color selector
  • Legend values, and formating options
  • Grid thresholds, axis labels
  • Annotations

Dashboards

  • Create, edit, save & search dashboards
  • Change column spans and row heights
  • Drag and drop panels to rearrange
  • Use InfluxDB or Elasticsearch as dashboard storage
  • Import & export dashboard (json file)
  • Import dashboard from Graphite
  • Templating
  • Scripted dashboards
  • Dashboard playlists
  • Time range controls

InfluxDB

  • Use InfluxDB as a metric data source, annotation source and for dashboard storage
  • 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, Grafana is a client side application that runs in your browser. It only needs a time series store where it can fetch metrics. If you use InfluxDB Grafana can use it to store dashboards. If you use Graphite or OpenTSDB you can use Elasticsearch to store dashboards or just use json files stored on disk.

Installation

Head to grafana.org and download the latest release.

Then follow the quick setup & config guide. 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

Grafana uses nodejs and grunt for asset management (css & javascript), unit test runner and javascript syntax verification.

  • clone repository
  • install nodejs
  • npm install (in project root)
  • npm install -g grunt-cli
  • grunt (runt default task that will generate css files)
  • grunt build (creates optimized & minified release)
  • grunt release (same as grunt build but will also create tar & zip package)
  • grunt test (executes jshint and unit tests)

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)