Graphing Data and Metrics with Influx and Grafana
If you wish to deploy Grafana for alternative graphs, follow the steps below.
Grafana
is an analytics platform that can provide alternative graphs for ultrafeeder
.
In this guide we will be using InfluxDB
as the data repository.
Using Grafana and InfluxDB in this configuration does not require a plan, account, or credentials for their respective cloud offerings.
Create docker volumes
Open the docker-compose.yml
file that was created when deploying ultrafeeder
.
Add the following lines to the volumes:
section at the top of the file (below the version:
section, and before the services:
section):
This creates the volumes that will contain influxdb
and grafana
’s application data.
Deploying influxdb
and grafana
containers
influxdb
and grafana
containersOpen the .env
file that was created when deploying ultrafeeder
.
Append the following lines to the end of the file; avoid using surrounding "" for the variables, which can be set to any value you like and token should be thought of as a very strong password:
Open the docker-compose.yml
file that was created when deploying ultrafeeder
.
Add the following lines to the environment
section of the ultrafeeder
container definition (in the ultrafeeder:
section, below environment:
and before the volumes:
section):
Append the following lines to the end of the file:
Once the file has been updated, issue the command docker compose up -d
in the application directory to apply the changes and bring up the influxdb
and grafana
containers. This will also restart the ultrafeeder
container, which will now use telegraf
to feed data to influxdb
.
You should also be able to point your web browser at:
http://docker.host.ip.addr:8086/
to access theinfluxdb
console, use the credentials from your.env
file.http://docker.host.ip.addr:3000/
to access thegrafana
console, use admin/admin as initial credentials, you should be prompted to change the password on first login.
Remember to change docker.host.ip.addr
to the IP address of your docker host.
Configuring data source and dashboard in Grafana
After you have logged into the grafana
console the following manual steps are required to connect to influxdb
as the data source
Click
Add your first data source
in the main panelClick
InfluxDB
from the list of options providedInput or select the following options, if the option is not listed, do not input anything for that option (for
Value
the wordToken
must be included in the input:
Clicking Save & Test
should return a green message indicating success. The dashboard can now be imported with the following steps
Hover over the
four squares
icon in the sidebar, click+ Import
Enter
13168
into theImport via grafana.com
section and clickLoad
Select
ultrafeeder
from the bottom drop down listClick
Import
on the subsequent dialogue box
At this point you should see a very nice dashboard that was created by Mike (Thanks!). The final step is to add the radar plugin required by this dashboard:
Hover over the
cog
icon in the lower area of the sidebar, clickPlugins
Enter
radar
into theSearch Grafana plugins
box, at this pointRadar Graph
should appear belowClick on
Radar Graph
in the main sectionClick
Install
Full functionality of the dashboard is now available, you can find it under General
in the Dashboards
section.
Last updated