mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 10:41:14 +00:00
Add DynamoDB based collector
- Store compressed reports in dynamodb
Add SQS based control router.
- Uses a queue per probe and a queue per UI for control requests & responses.
Add Consul-based, horizontally-scalable, multi-tenant pipe router.
- Uses consul to coordinate each end of pipe connections replicas of a pipe service.
12 lines
186 B
Makefile
12 lines
186 B
Makefile
BUILD_IN_CONTAINER=true
|
|
|
|
all: .frontend.uptodate
|
|
|
|
.frontend.uptodate: frontend/*
|
|
docker build -t weaveworks/scope-frontend frontend/
|
|
touch $@
|
|
|
|
clean:
|
|
go clean ./..
|
|
rm -f .*.uptodate
|