mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-20 08:35:09 +00:00
- Update CORE_LOGGING_LEVEL to FABRIC_LOGGING_SPEC - Add port as an argument in case default port is used Change-Id: I29725a100a095b2b6f2ec6262e7b70730445385e Signed-off-by: Wenjian Qiao <wenjianq@gmail.com>
31 lines
740 B
Bash
Executable file
31 lines
740 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# This script uses the logspout and http stream tools to let you watch the docker containers
|
|
# in action.
|
|
#
|
|
# More information at https://github.com/gliderlabs/logspout/tree/master/httpstream
|
|
|
|
if [ -z "$1" ]; then
|
|
DOCKER_NETWORK=basicnetwork_basic
|
|
else
|
|
DOCKER_NETWORK="$1"
|
|
fi
|
|
|
|
if [ -z "$2" ]; then
|
|
PORT=8000
|
|
else
|
|
PORT="$2"
|
|
fi
|
|
|
|
echo Starting monitoring on all containers on the network ${DOCKER_NETWORK}
|
|
|
|
docker kill logspout 2> /dev/null 1>&2 || true
|
|
docker rm logspout 2> /dev/null 1>&2 || true
|
|
|
|
docker run -d --name="logspout" \
|
|
--volume=/var/run/docker.sock:/var/run/docker.sock \
|
|
--publish=127.0.0.1:${PORT}:80 \
|
|
--network ${DOCKER_NETWORK} \
|
|
gliderlabs/logspout
|
|
sleep 3
|
|
curl http://127.0.0.1:${PORT}/logs
|