Check that you have cloned signoz/signoz
and currently are in signoz/deploy
folder.
If you don't have docker set up, please follow this guide to set up docker before proceeding with the next steps.
Now run the following command to install:
./install.sh
If you don't have docker compose set up, please follow this guide to set up docker compose before proceeding with the next steps.
cd deploy/docker
docker compose up -d
Open http://localhost:3301 in your favourite browser.
To start collecting logs and metrics from your infrastructure, run the following command:
cd generator/infra
docker compose up -d
To start generating sample traces, run the following command:
cd generator/hotrod
docker compose up -d
In a couple of minutes, you should see the data generated from hotrod in SigNoz UI.
For more details, please refer to the SigNoz documentation.
To install SigNoz using Docker Swarm, run the following command:
cd deploy/docker-swarm
docker stack deploy -c docker-compose.yaml signoz
Open http://localhost:3301 in your favourite browser.
To start collecting logs and metrics from your infrastructure, run the following command:
cd generator/infra
docker stack deploy -c docker-compose.yaml infra
To start generating sample traces, run the following command:
cd generator/hotrod
docker stack deploy -c docker-compose.yaml hotrod
In a couple of minutes, you should see the data generated from hotrod in SigNoz UI.
For more details, please refer to the SigNoz documentation.
Go to our official documentation site signoz.io/docs for more.