Skip to content

Commit

Permalink
Merge branch 'main' into 3184-support-for-env-var-otel-sdk-disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Mar 20, 2024
2 parents b5a3018 + 6dd85fc commit 1582401
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/examples/logs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Start the Collector locally to see data being exported. Write the following file
exporters:
logging:
verbosity: detailed
service:
pipelines:
Expand Down
4 changes: 2 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ set -ev
# Get the latest versions of packaging tools
python3 -m pip install --upgrade pip build setuptools wheel

BASEDIR=$(dirname $(readlink -f $(dirname $0)))
BASEDIR=$(dirname "$(readlink -f "$(dirname $0)")")
DISTDIR=dist

(
cd $BASEDIR
mkdir -p $DISTDIR
rm -rf $DISTDIR/*
rm -rf ${DISTDIR:?}/*

for d in opentelemetry-api/ opentelemetry-sdk/ opentelemetry-proto/ opentelemetry-semantic-conventions/ exporter/*/ shim/opentelemetry-opentracing-shim/ propagator/*/ tests/opentelemetry-test-utils/; do
(
Expand Down
3 changes: 0 additions & 3 deletions scripts/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ function cov {
fi
}

PYTHON_VERSION=$(python -c 'import sys; print(".".join(map(str, sys.version_info[:3])))')
PYTHON_VERSION_INFO=(${PYTHON_VERSION//./ })

coverage erase

cov opentelemetry-api
Expand Down

0 comments on commit 1582401

Please sign in to comment.