You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rozetko
8d529d7676
|
3 years ago | |
---|---|---|
src | 3 years ago | |
.gitignore | 3 years ago | |
.prettierrc.js | 3 years ago | |
CHANGELOG.md | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 3 years ago | |
jest.config.js | 3 years ago | |
package.json | 3 years ago | |
tsconfig.json | 3 years ago | |
yarn.lock | 3 years ago |
README.md
Grafana Chartwerk Panel (beta)
Grafana Chartwerk Panel renders metrics using ChartWerk libraries. For now, it can render as a line and a series of bars. We are working on adding new visualizations.
Features
- 3 types of visualizations:
- gauge
- line-chart
- bar-chart
- ability to make panel's time range independent of dashboard's (doesn't work in Grafana 7).
- ability to display template variables inside the panel.
- "Charge" mode: green color for positive graph's slope, red color for negative graph's slope.
- confidence interval (for line).
- customizable X-axis labels.
- customizable grid interval.
Installation
Linux / Mac OS X
-
Navigate to either:
<GRAFANA_PATH>/data/plugins
(when installed from tarball or source)- or
/var/lib/grafana/plugins
(when installed from.deb
/.rpm
package)
-
Download ChartWerk panel
wget https://github.com/chartwerk/grafana-chartwerk-app/archive/0.3.3.zip
- Unpack downloaded files
unzip 0.3.3.zip
- 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
- type in
- For grafana installed via Standalone Linux Binaries:
Grafana in Docker
You can install ChartWerk panel to Grafana in Docker passing it as environment variable (as described in Grafana docs)
docker run \
-p 3000:3000 \
-e "GF_INSTALL_PLUGINS=https://github.com/chartwerk/grafana-chartwerk-app/archive/0.3.3.zip;corpglory-chartwerk-panel" \
grafana/grafana