Skip to content

Latest commit

 

History

History
187 lines (108 loc) · 9.32 KB

clsbwlpi6000009jrdlzpc4zv.md

File metadata and controls

187 lines (108 loc) · 9.32 KB
title datePublished cuid slug cover ogImage tags
Day 75 - Sending Docker Log to Grafana
Wed Feb 07 2024 14:47:19 GMT+0000 (Coordinated Universal Time)
clsbwlpi6000009jrdlzpc4zv
day-75-sending-docker-log-to-grafana
cloud, monitoring, devops, loki, grafana, 90daysofdevops, promtail

We learned how to install and start Grafana, set up Loki and Promtail via Docker, and configure Loki as a data source in Grafana.

Armed with these insights, you’re now well-prepared to navigate the world of efficient data visualization and comprehensive system monitoring. Stay tuned for more exciting explorations in our upcoming blogs!

For installation and Setup Grafana Server

Checkout my 73 day blog. "Grafana Installation"

Install Loki & Promtail using Docker.

  • Before installing Loki & Promtail make sure you have docker installed in your instance.
sudo apt-get update

sudo apt-get install docker.io -y

 # Giving docker permission to current user
  sudo usermod -aG docker $USER
  sudo reboot
# verfiy the installation of docker
  docker --version

sudo systemctl enable docker
sudo systemctl start docker
sudo systemctl docker status

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1707305811284/c94a7f73-bacf-4ed7-b883-6757da4554ea.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1707306106870/022210d0-f6fe-4687-8c2b-28d837411b23.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1707306123384/b2d4eb48-f408-4478-bde6-4c56d2d83860.png align="center")