Otmane Fettal
01/30/2022, 7:16 PMOMKAR GUJJA
02/10/2022, 6:42 PMAndrei Georgescu
02/17/2022, 5:11 AMSourabh
02/20/2022, 3:26 AMAxay Sagathiya
02/20/2022, 9:46 AMUdasi Tharani
02/20/2022, 8:18 PMlocalhost:8080
even after running this:
sudo docker-compose -f docker/clickhouse-setup/docker-compose.yaml up -d
What am I doing wrong?Hardik Agrawal
02/21/2022, 4:26 PMPranay
Tushar Pahuja
02/24/2022, 7:25 PM<test environment URL>
for frontend development in Signoz?Rishit
03/11/2022, 6:48 PMKartikey Sahu
04/13/2022, 8:01 AMAADYAA SRIVASTAva
04/23/2022, 10:07 AMHercules Gabriel da Silva e Mazucato
05/02/2022, 2:29 PMMin Htet Oo
05/09/2022, 5:28 PMFunke Olasupo
05/09/2022, 6:26 PMJulius Grybauskas
05/21/2022, 5:52 PM<test environment URL>
@Pranay šTemidayo
06/08/2022, 3:16 PMhashfyre
06/23/2022, 9:01 AMShiwam Jaiswal
07/02/2022, 4:59 PMShiwam Jaiswal
07/03/2022, 10:47 AM2022-07-03T16:08:21.434+0530 ERROR clickhouseReader/reader.go:108error connecting to primary db: dial tcp 127.0.0.1:9001: connect: connection refused
Probably this requires clickhouse up and running, so I tried to setup clickhouse first, there I change the clickhouse-setup/docker-compose.yaml as follows:
services:
clickhouse:
image: clickhouse/clickhouse-server:22.4.5-alpine
expose:
- "9000"
ports:
- "9001:9000"
# - "8123:8123"
tty: true
volumes:
- ./clickhouse-config.xml:/etc/clickhouse-server/config.xml
- ./clickhouse-users.xml:/etc/clickhouse-server/users.xml
# - ./clickhouse-storage.xml:/etc/clickhouse-server/config.d/storage.xml
- ./data/clickhouse/:/var/lib/clickhouse/
restart: on-failure
logging:
options:
max-size: 50m
max-file: "3"
healthcheck:
# "clickhouse", "client", "-u ${CLICKHOUSE_USER}", "--password ${CLICKHOUSE_PASSWORD}", "-q 'SELECT 1'"
test: ["CMD", "wget", "--spider", "-q", "localhost:8123/ping"]
interval: 30s
timeout: 5s
retries: 3
alertmanager:
image: signoz/alertmanager:0.23.0-0.1
volumes:
- ./data/alertmanager:/data
depends_on:
query-service:
condition: service_healthy
restart: on-failure
command:
- --queryService.url=<http://query-service:8085>
- --storage.path=/data
# Notes for Maintainers/Contributors who will change Line Numbers of Frontend & Query-Section. Please Update Line Numbers in `./scripts/commentLinesForSetup.sh` & `./CONTRIBUTING.md`
# query-service:
# image: signoz/query-service:0.9.1
# container_name: query-service
# command: ["-config=/root/config/prometheus.yml"]
# ports:
# - "6060:6060" # pprof port
# - "8080:8080" # query-service port
# volumes:
# - ./prometheus.yml:/root/config/prometheus.yml
# - ../dashboards:/root/config/dashboards
# - ./data/signoz/:/var/lib/signoz/
# environment:
# - ClickHouseUrl=<tcp://clickhouse:9000/?database=signoz_traces>
# - STORAGE=clickhouse
# - GODEBUG=netdns=go
# - TELEMETRY_ENABLED=true
# - DEPLOYMENT_TYPE=docker-standalone-amd
# restart: on-failure
# healthcheck:
# test: ["CMD", "wget", "--spider", "-q", "localhost:8080/api/v1/version"]
# interval: 30s
# timeout: 5s
# retries: 3
# depends_on:
# clickhouse:
# condition: service_healthy
# frontend:
# image: signoz/frontend:0.9.1
# container_name: frontend
# restart: on-failure
# depends_on:
# - alertmanager
# - query-service
# ports:
# - "3301:3301"
# volumes:
# - ../common/nginx-config.conf:/etc/nginx/conf.d/default.conf
and then I run
sudo make run-x86
I get the following error saying query-service is a pre-requisite for alertmanager.
ERROR: Service 'alertmanager' depends on service 'query-service' which is undefined.
make: *** [Makefile:83: run-x86] Error 1
Can anyone please confirm if I am following the correct setup page? If so what am I doing wrong?Shiwam Jaiswal
07/04/2022, 11:46 AMchange baseURL to <test environment URL> in file src/constants/env.ts
Please provide the baseURL.Usman Ali
07/04/2022, 2:23 PMShiwam Jaiswal
07/10/2022, 8:24 PMAkshay
07/11/2022, 1:27 PMJan Bessels
07/11/2022, 6:16 PMJan Bessels
07/12/2022, 2:19 PMTanul
07/12/2022, 7:03 PMGarrett Wilkerson
07/14/2022, 2:35 PMShiwam Jaiswal
07/16/2022, 8:49 AMShiwam Jaiswal
07/18/2022, 4:52 PM