mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-25 06:04:30 +08:00

I preserved the existing interfaces, so: `docker compose -f docker/clickhouse-setup/docker-compose.yaml up -d`, would run the same set of services (with the testing app). The interface that was added is: `docker compose -f docker/clickhouse-setup/docker-compose-minimal.yaml up -d`, which won't run testing app.
27 lines
675 B
YAML
27 lines
675 B
YAML
services:
|
|
hotrod:
|
|
image: jaegertracing/example-hotrod:1.30
|
|
container_name: hotrod
|
|
logging:
|
|
options:
|
|
max-size: 50m
|
|
max-file: "3"
|
|
command: [ "all" ]
|
|
environment:
|
|
- JAEGER_ENDPOINT=http://otel-collector:14268/api/traces
|
|
|
|
load-hotrod:
|
|
image: "signoz/locust:1.2.3"
|
|
container_name: load-hotrod
|
|
hostname: load-hotrod
|
|
environment:
|
|
ATTACKED_HOST: http://hotrod:8080
|
|
LOCUST_MODE: standalone
|
|
NO_PROXY: standalone
|
|
TASK_DELAY_FROM: 5
|
|
TASK_DELAY_TO: 30
|
|
QUIET_MODE: "${QUIET_MODE:-false}"
|
|
LOCUST_OPTS: "--headless -u 10 -r 1"
|
|
volumes:
|
|
- ../common/locust-scripts:/locust
|