Skip to content

Commit

Permalink
Handle error properly
Browse files Browse the repository at this point in the history
  • Loading branch information
safchain committed Apr 2, 2019
1 parent 5f22f10 commit 4e9b0b7
Show file tree
Hide file tree
Showing 17 changed files with 169 additions and 56 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = function(grunt) {

grunt.initConfig({

clean: ["dist"],
clean: ["dist/*"],

copy: {
src_to_dist: {
Expand Down
8 changes: 8 additions & 0 deletions dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ Skydive Datasource for Grafana 3.x.

## Installation

### Docker

```console
docker run -d --name=grafana -p 3000:3000 skydive/skydive-grafana-datasource
```

### Sources

```console
$ git clone https://github.com/skydive-project/skydive-grafana-datasource.git
$ cd skydive-grafana-datasource
Expand Down
9 changes: 6 additions & 3 deletions dist/config_ctrl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/config_ctrl.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

43 changes: 37 additions & 6 deletions dist/datasource.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/datasource.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/module.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 12 additions & 10 deletions dist/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@
"name": "Skydive",
"id": "skydive-datasource",
"type": "datasource",

"staticRoot": ".",

"metrics": true,
"annotations": false,

"info": {
"description": "Skydive datasource",
"author": {
Expand All @@ -19,15 +16,20 @@
"large": "img/skydive-logo.png"
},
"links": [
{"name": "GitHub", "url": "https://github.com/skydive-project/skydive-grafana-datasource"},
{"name": "MIT License", "url": "https://github.com/skydive-project/skydive-grafana-datasource/blob/master/LICENSE"}
{
"name": "GitHub",
"url": "https://github.com/skydive-project/skydive-grafana-datasource"
},
{
"name": "MIT License",
"url": "https://github.com/skydive-project/skydive-grafana-datasource/blob/master/LICENSE"
}
],
"version": "1.1.0",
"updated": "2017-08-10"
"version": "1.2.0",
"updated": "2019-03-29"
},

"dependencies": {
"grafanaVersion": "3.x.x",
"plugins": [ ]
"plugins": []
}
}
}
23 changes: 15 additions & 8 deletions dist/query_ctrl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4e9b0b7

Please sign in to comment.