Neko Docs

Grafana

https://grafana.com/

Setup

https://grafana.com/docs/grafana/latest/setup-grafana/installation/debian/

Install Grafana on Debian/Ubuntu:

apt-get install -y apt-transport-https software-properties-common wget
mkdir -p /etc/apt/keyrings/
wget -q -O - https://apt.grafana.com/gpg.key | gpg --dearmor | sudo tee /etc/apt/keyrings/grafana.gpg > /dev/null
echo "deb [signed-by=/etc/apt/keyrings/grafana.gpg] https://apt.grafana.com stable main" | tee -a /etc/apt/sources.list.d/grafana.list
# Updates the list of available packages
sudo apt-get update
# Installs the latest OSS release:
sudo apt-get install grafana

Optional: To remove the Grafana repository:

rm -i /etc/apt/sources.list.d/grafana.list

https://grafana.com/docs/grafana/latest/setup-grafana/start-restart-grafana/

On this page