How to Install Hubleys Dashboard on Windows 11
Hubleys is an open-source dashboard that helps you monitor your containerized applications using multiple common services, such as Prometheus, Grafana, and Alertmanager. In this tutorial, we will guide you through the process of installing Hubleys on Windows 11 via Github.
Prerequisites
Before starting the installation process, you will need to ensure that your system meets the following prerequisites:
- Windows 11 installed
- Git installed on your system
- Docker Desktop installed and running
- Basic knowledge of Docker and Docker Compose
Installation Steps
To get started, you need to clone the Hubleys repository from Github by running the following command in the command prompt:
git clone https://github.com/knrdl/hubleys-dashboard.gitNext, navigate to the downloaded repository directory using the command prompt:
cd hubleys-dashboardNow, you will need to create an
.envfile in thehubleys-dashboarddirectory using the following command:cp .env.example .envOnce you have created the
.envfile, open it using any text editor and make sure to configure the parameters based on your environment.# Hubleys environment settings GRAFANA_CHART_VERSION=v6.1.6 PROMETHEUS_CHART_VERSION=v11.13.1 ALERTMANAGER_CHART_VERSION=v2.19.0 ALERTMANAGER_CONFIG_VERSION=v0.18.1 ENABLED_COLLECTORS=kubernetes CONFIG_DIR=./alertmanager ALERT_UI_DOMAIN=localhost ALERT_UI_PORT=8086The default values should work in most cases, but you may need to modify the
ALERT_UI_DOMAINandALERT_UI_PORTsettings based on your requirements.After the configuration, you can run the following command to start the Hubleys dashboard on your Windows 11 machine:
docker-compose up -dThis command will start all the necessary services and expose the Hubleys dashboard at http://localhost:3000.
Finally, to stop the Hubleys dashboard and all the related services, use the following command:
docker-compose downThis will stop and remove all containers, networks, and volumes related to the Hubleys dashboard.
Conclusion
In this tutorial, you learned how to install the Hubleys dashboard on Windows 11 using Github. We hope this guide helped you get started with Hubleys and showed you how easy it is to set up and use. If you encounter any issues during the installation process, don't hesitate to consult the official documentation or contact the Hubleys community for support.