Getting started with Grafana on WSL

less than 1 minute read

Grafana

Grafana is an open-source data visualization and monitoring tool that integrates with complex data from sources like Prometheus, InfluxDB, Graphite, and ElasticSearch. Grafana lets you create alerts, notifications, and ad-hoc filters for your data while also making collaboration with your teammates easier through built-in sharing features.

Prerequisites

sudo apt-get install -y apt-transport-https
sudo apt-get install -y software-properties-common wget
wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -
echo "deb https://packages.grafana.com/enterprise/deb stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list

Installing Grafana

sudo apt-get update
sudo apt-get install grafana-enterprise

Starting and Stopping Grafana Server

sudo /etc/init.d/grafana-server start
sudo /etc/init.d/grafana-server status
sudo /etc/init.d/grafana-server stop

Note:- Reference source Grafana Installation

Leave a comment