mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-14 18:09:59 +00:00
24 lines
571 B
Bash
Executable File
24 lines
571 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# shellcheck disable=SC1091
|
|
. ./config.sh
|
|
|
|
start_suite "Test long connections (procspy) between processes"
|
|
|
|
weave_on "$HOST1" launch
|
|
scope_on "$HOST1" launch --probe.ebpf.connections=false
|
|
|
|
server_on "$HOST1"
|
|
weave_proxy_on "$HOST1" run -dti --name client alpine /bin/sh -c "while true; do \
|
|
nc nginx.weave.local 80 || true; \
|
|
sleep 1; \
|
|
done"
|
|
|
|
wait_for processes "$HOST1" 60 "nginx: worker process" nc
|
|
|
|
has processes "$HOST1" "nginx: worker process"
|
|
has processes "$HOST1" nc
|
|
has_connection processes "$HOST1" nc "nginx: worker process"
|
|
|
|
scope_end_suite
|