forked from grafana/grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v2.0.x' into temp_merge_point
* v2.0.x: (1178 commits) New direct query text box Add a brand new opentsdb M panel Create new module and controller for opentsdbM Add a drop down to select function Change some style for textbox Add opentsdb M function explanations Create pid file before runtime init, Fixes grafana#1990 Fixed XSS issue with file based dashboards, was really casued by an issue with alertSrv accepting html in message alerts fixed version in package.json Updated config sample.ini with oauth allow_sign_up Corrected SQL migration for snapshot table column type change, grafana#1880 fixes grafana#1880 dashboard_snapshot table does not have a data column fixes grafana#1880 correct mysql statement for modifying column data type updated version to 2.1.0-pre1 Replaced slug dependency with one that did not use gopkgs.com Firefox/IE issue, invisible text in dashboard search fixed, Fixes grafana#1872 Added units for voltage, current and frequency Documented units for timepicker Restored sql integration tests to use in mem sqlite3 MySQL: Dashboard.data column type changed to mediumtext (sql migration added), Fixes grafana#1863 Fix and update documents /api/login/ping Fix for issue when behind reverse proxy and subpath, Fixes grafana#1857 Remove exit 0 at the end of init.d script Updated install docs with 2.0.2 version updated changelog ... Conflicts: public/app/panels/graph/module.js public/app/plugins/datasource/opentsdb/datasource.js src/app/controllers/all.js src/app/partials/graphite/editor.html src/app/partials/opentsdb/editor.html src/app/services/datasourceSrv.js src/app/services/panelSrv.js src/css/less/grafana.less src/css/less/panel.less
- Loading branch information
Showing
1,247 changed files
with
345,302 additions
and
14,089 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[run] | ||
init_cmds = [ | ||
["go", "build", "-o", "./bin/grafana-server"], | ||
["./bin/grafana-server"] | ||
] | ||
watch_all = true | ||
watch_dirs = [ | ||
"$WORKDIR/pkg", | ||
"$WORKDIR/public/views", | ||
"$WORKDIR/conf", | ||
] | ||
watch_exts = [".go", ".ini"] | ||
build_delay = 1500 | ||
cmds = [ | ||
["go", "build", "-o", "./bin/grafana-server"], | ||
["./bin/grafana-server"] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,29 @@ | ||
node_modules | ||
coverage/ | ||
.aws-config.json | ||
dist | ||
awsconfig | ||
/dist | ||
/tmp | ||
|
||
docs/AWS_S3_BUCKET | ||
docs/GIT_BRANCH | ||
docs/VERSION | ||
docs/GITCOMMIT | ||
docs/changed-files | ||
docs/changed-files | ||
|
||
# locally required config files | ||
web.config | ||
config.js | ||
src/css/*.min.css | ||
public/css/*.min.css | ||
|
||
# Editor junk | ||
*.sublime-workspace | ||
*.swp | ||
.idea/ | ||
*.iml | ||
|
||
/data/* | ||
/bin/* | ||
|
||
conf/custom.ini | ||
fig.yml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
test -z "$(gofmt -s -l . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)" | ||
if [ $? -gt 0 ]; then | ||
echo "Some files aren't formatted, please run 'go fmt ./pkg/...' to format your source code before committing" | ||
exit 1 | ||
fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.