Browse Source

First release #43

master
rozetko 6 years ago
parent
commit
54aeb6c78a
  1. 1
      .gitignore
  2. 23
      README.md
  3. 8159
      package-lock.json
  4. 2
      package.json

1
.gitignore vendored

@ -8,6 +8,7 @@ awsconfig
/public_gen /public_gen
/tmp /tmp
vendor/phantomjs/phantomjs vendor/phantomjs/phantomjs
package-lock.json
docs/AWS_S3_BUCKET docs/AWS_S3_BUCKET
docs/GIT_BRANCH docs/GIT_BRANCH

23
README.md

@ -17,14 +17,22 @@ A better version of Grafana's default Graph Panel. Able to render Anomalies & mo
- Download hastic graph panel - Download hastic graph panel
``` ```
wget [PLACEHOLDER] wget https://github.com/hastic/hastic-grafana-graph-panel/releases/download/0.1.0/hastic-graph-panel-0.1.0.tar.gz
``` ```
- Unpack downloaded files - Unpack downloaded files
``` ```
tar -zxvf [PLACEHOLDER] tar -zxvf hastic-graph-panel-0.1.0.tar.gz
``` ```
- Restart grafana-server
- For grafana installed via Standalone Linux Binaries:
- Stop any running instances of grafana-server
- Start grafana-server by:
```$GRAFANA_PATH/bin/grafana-server```
- For grafana installed via Package Manager:
- type in ```systemctl restart grafana-server```
# Installation from source # Installation from source
**Note, that <GRAFANA_PATH>/data/plugins directory will NOT be present until grafana-server was started at least once!** **Note, that <GRAFANA_PATH>/data/plugins directory will NOT be present until grafana-server was started at least once!**
@ -106,10 +114,13 @@ npm run build
# Changelog # Changelog
[Improvements] ### [0.1.0] - 2018-07-17
#### Changed
* You can zoom during update - Supports only hastic-server of versions **0.2.0-alpha or greater**
#### Fixed
- Choosing custom color for analytic unit [#31](https://github.com/hastic/hastic-grafana-graph-panel/issues/31)
- Deleting any analytic unit only deletes the first one [#33](https://github.com/hastic/hastic-grafana-graph-panel/issues/33)
- Problems with Singlestat and Piechart panels [#42](https://github.com/hastic/hastic-grafana-graph-panel/issues/42)
# Credits # Credits

8159
package-lock.json generated

File diff suppressed because it is too large Load Diff

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "hastic-graph-panel", "name": "hastic-graph-panel",
"version": "0.1.1", "version": "0.1.0",
"description": "Hastic default panel for rendering graph and anomalies", "description": "Hastic default panel for rendering graph and anomalies",
"main": "dist/module", "main": "dist/module",
"scripts": { "scripts": {

Loading…
Cancel
Save