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.

60 lines
2.0 KiB

2 years ago
# Grafana Chartwerk Panel (beta)
2 years ago
![image](https://gitlab.com/chartwerk/grafana-chartwerk-panel/uploads/7a9a1150832c0d9184cbe44c8a70ce40/logo.png)
2 years ago
[![Build Status](https://travis-ci.org/chartwerk/grafana-chartwerk-app.svg?branch=master)](https://travis-ci.org/chartwerk/grafana-chartwerk-app)
2 years ago
**Grafana Chartwerk Panel** renders metrics using Chartwerk libraries. For now, it can render as Gauge. We are working on adding new visualizations.
2 years ago
2 years ago
![image](https://gitlab.com/chartwerk/grafana-chartwerk-panel/uploads/357c076a8f5d9e3a9d218e589d5b1b27/gauge.png)
2 years ago
## Features
2 years ago
- 3 types of visualizations:
- gauge
- line-chart (coming soon)
- bar-chart (coming soon)
- Gauge: dynamic thresholds and min/max
2 years ago
- Gauge: display icons on conditions
- Gauge: ability to reverse direction
2 years ago
## Installation
2 years ago
### Linux / Mac OS X
- Navigate to either:
- `<GRAFANA_PATH>/data/plugins` (when installed from tarball or source)
2 years ago
- or `/var/lib/grafana/plugins` (when installed from `.deb`/`.rpm` package)
2 years ago
- Download Chartwerk panel
2 years ago
```
2 years ago
wget https://gitlab.com/chartwerk/grafana-chartwerk-panel/uploads/84b82bad6167661991ba8f31ad574079/corpglory-chartwerk-panel-0.4.0.zip
2 years ago
```
- Unpack downloaded files
2 years ago
```
2 years ago
unzip corpglory-chartwerk-panel-0.4.0.zip
2 years ago
```
- 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`
2 years ago
- For grafana installed via Package Manager:
- type in `systemctl restart grafana-server`
2 years ago
### Grafana in Docker
2 years ago
You can install Chartwerk panel to Grafana in Docker passing it as environment variable (as described in [Grafana docs](http://docs.grafana.org/installation/docker/#installing-plugins-from-other-sources))
2 years ago
```bash
docker run \
-p 3000:3000 \
2 years ago
-e "GF_INSTALL_PLUGINS=https://gitlab.com/chartwerk/grafana-chartwerk-panel/uploads/84b82bad6167661991ba8f31ad574079/corpglory-chartwerk-panel-0.4.0.zip;corpglory-chartwerk-panel" \
2 years ago
grafana/grafana
```