DEV Community

Muskan Ali
Muskan Ali

Posted on

5 Minutes With SigNoz Saved Me 3 Hours Of Debugging

Introduction

I was working on a [Node.js/Python/Go] application and users reported that the dashboard was loading slowly.
Before SigNoz, I was stuck adding console.log everywhere.
After 30 minutes with SigNoz, I found the exact bottleneck.

This is what I learned self-hosting SigNoz for the Agents Hackathon.

1. Setting up SigNoz

I self-hosted SigNoz using Docker:


bash
git clone https://github.com/SigNoz/signoz.git
cd signoz/deploy/docker
docker compose -f docker-compose.yaml up -d
Enter fullscreen mode Exit fullscreen mode

Top comments (0)