From 940788afb5867c0e4dc9f16e8ca391cb09ec5ba8 Mon Sep 17 00:00:00 2001 From: Ankit Nayan Date: Sun, 3 Jan 2021 17:32:59 +0530 Subject: [PATCH] first commit --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000000..8e8a5122ad2c --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# Steps to Deploy SigNoz + +1. git clone https://gitlab.com/signoz-oss/signoz.git && cd signoz +2. helm dependency update deploy/kubernetes/platform +3. kubectl create ns platform +4. helm -n platform install signoz deploy/kubernetes/platform +5. kubectl -n platform apply -Rf deploy/kubernetes/jobs +6. kubectl -n platform apply -f deploy/kubernetes/otel-collector + + +## Test HotROD application with SigNoz + +1. kubectl create ns sample-application +2. kubectl -n sample-application apply -Rf sample-apps/hotrod/ + + +### How to generate load + +- kubectl -n sample-application run strzal --image=djbingham/curl --restart='OnFailure' -i --tty --rm --command -- curl -X POST -F 'locust_count=6' -F 'hatch_rate=2' http://locust-master:8089/swarm + + +### How to stop load + +- kubectl -n sample-application run strzal --image=djbingham/curl --restart='OnFailure' -i --tty --rm --command -- curl http://locust-master:8089/stop \ No newline at end of file