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
1.8 KiB

2 years ago
# Grafana Chartwerk Panel (beta)
<p align="center"><img src="https://user-images.githubusercontent.com/66464000/84520316-6c6fab00-ace4-11ea-9bfc-29ca73e5105e.png" width="150" height="150" /></div>
[![Build Status](https://travis-ci.org/chartwerk/grafana-chartwerk-app.svg?branch=master)](https://travis-ci.org/chartwerk/grafana-chartwerk-app)
**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
![image](/uploads/1b850f0bde1045697cd2f35c05d884b7/image.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
- Gauge: options to add icons
- Gauge: reversed options
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)
- Download ChartWerk panel
2 years ago
```
wget https://github.com/chartwerk/grafana-chartwerk-app/archive/0.3.3.zip
```
- Unpack downloaded files
2 years ago
```
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`
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))
```bash
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
```