A Monitoring service to identify possible cascading failures in a microservice based system.
137
To use this service you need a postgres server, below is an example docker-compose file which aggregates postgres with watchmap monitor server
version: '3.8'
volumes:
postgres-data:
networks:
watchmap:
driver: bridge
services:
monitor:
container_name: watchmap-monitor
image: sudipmondal2002/watchmap:0.0.1-dev
volumes:
- ..:/workspace:cached
networks:
- watchmap
ports:
- "3000:3000"
environment:
DATABASE_URL: postgres://postgres:postgres@db:5432/postgres
PROJECT_HOST: http://localhost:3000
depends_on:
- db
db:
container_name: watchmap-db
image: postgres:latest
restart: unless-stopped
volumes:
- postgres-data:/var/lib/postgresql/data
networks:
- watchmap
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: postgres
ports:
- "5432:5432"
Content type
Image
Digest
sha256:ae66008c7…
Size
322 MB
Last updated
over 3 years ago
docker pull sudipmondal2002/watchmap:0.0.4-dev