Skip to content

Files

Latest commit

 

History

History

deploy

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Deploy

Check that you have cloned signoz/signoz and currently are in signoz/deploy folder.

Docker

If you don't have docker set up, please follow this guide to set up docker before proceeding with the next steps.

Using Install Script

Now run the following command to install:

./install.sh

Using Docker Compose

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.

Docker Swarm

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.

Uninstall/Troubleshoot?

Go to our official documentation site signoz.io/docs for more.