feat: Migrate the service call tracing to use otlphttp or otlpgrpc for reporting (#3001)

This commit is contained in:
houseme
2023-10-09 07:09:20 -05:00
committed by GitHub
parent 1efdb72990
commit 35e5f1f204
14 changed files with 332 additions and 1012 deletions

View File

@ -28,7 +28,7 @@ for file in `find . -name go.mod`; do
# package example needs golang >= v1.19
if [ "example" = $(basename $dirpath) ]; then
if ! go version|grep -q "1.19"; then
if ! go version|grep -q "1.20"; then
echo "ignore example as go version: $(go version)"
continue 1
fi