mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-28 04:34:01 +08:00
Remove support for 3.6 (#853)
This commit is contained in:
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
@ -6,31 +6,30 @@ on:
|
|||||||
- 'release/*'
|
- 'release/*'
|
||||||
pull_request:
|
pull_request:
|
||||||
env:
|
env:
|
||||||
CORE_REPO_SHA: ece57231cde5bb5656775a62f027cab0b1c76fce
|
CORE_REPO_SHA: b3b0ba3a47dbdd844b524c46db22a60549364071
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
env:
|
env:
|
||||||
# We use these variables to convert between tox and GHA version literals
|
# We use these variables to convert between tox and GHA version literals
|
||||||
py36: 3.6
|
|
||||||
py37: 3.7
|
py37: 3.7
|
||||||
py38: 3.8
|
py38: 3.8
|
||||||
py39: 3.9
|
py39: 3.9
|
||||||
py310: "3.10"
|
py310: "3.10"
|
||||||
pypy3: pypy3
|
pypy3: "pypy3.7"
|
||||||
RUN_MATRIX_COMBINATION: ${{ matrix.python-version }}-${{ matrix.package }}-${{ matrix.os }}
|
RUN_MATRIX_COMBINATION: ${{ matrix.python-version }}-${{ matrix.package }}-${{ matrix.os }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
|
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [ py36, py37, py38, py39, py310, pypy3 ]
|
python-version: [ py37, py38, py39, py310, pypy3 ]
|
||||||
package: ["instrumentation", "distro", "exporter", "sdkextension", "propagator"]
|
package: ["instrumentation", "distro", "exporter", "sdkextension", "propagator"]
|
||||||
os: [ ubuntu-20.04 ]
|
os: [ ubuntu-20.04 ]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
|
- name: Checkout Contrib Repo @ SHA - ${{ github.sha }}
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: Set up Python ${{ env[matrix.python-version] }}
|
- name: Set up Python ${{ env[matrix.python-version] }}
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: ${{ env[matrix.python-version] }}
|
python-version: ${{ env[matrix.python-version] }}
|
||||||
- name: Install tox
|
- name: Install tox
|
||||||
|
@ -34,14 +34,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -16,13 +16,13 @@ import collections
|
|||||||
import logging
|
import logging
|
||||||
import threading
|
import threading
|
||||||
import typing
|
import typing
|
||||||
|
from time import time_ns
|
||||||
|
|
||||||
from opentelemetry.context import Context, attach, detach, set_value
|
from opentelemetry.context import Context, attach, detach, set_value
|
||||||
from opentelemetry.instrumentation.utils import _SUPPRESS_INSTRUMENTATION_KEY
|
from opentelemetry.instrumentation.utils import _SUPPRESS_INSTRUMENTATION_KEY
|
||||||
from opentelemetry.sdk.trace import Span, SpanProcessor
|
from opentelemetry.sdk.trace import Span, SpanProcessor
|
||||||
from opentelemetry.sdk.trace.export import SpanExporter
|
from opentelemetry.sdk.trace.export import SpanExporter
|
||||||
from opentelemetry.trace import INVALID_TRACE_ID
|
from opentelemetry.trace import INVALID_TRACE_ID
|
||||||
from opentelemetry.util._time import _time_ns
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -128,9 +128,9 @@ class DatadogExportSpanProcessor(SpanProcessor):
|
|||||||
break
|
break
|
||||||
|
|
||||||
# substract the duration of this export call to the next timeout
|
# substract the duration of this export call to the next timeout
|
||||||
start = _time_ns()
|
start = time_ns()
|
||||||
self.export()
|
self.export()
|
||||||
end = _time_ns()
|
end = time_ns()
|
||||||
duration = (end - start) / 1e9
|
duration = (end - start) / 1e9
|
||||||
timeout = self.schedule_delay_millis / 1e3 - duration
|
timeout = self.schedule_delay_millis / 1e3 - duration
|
||||||
|
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6.3
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,12 +28,11 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -33,14 +33,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -143,6 +143,7 @@ API
|
|||||||
|
|
||||||
from logging import getLogger
|
from logging import getLogger
|
||||||
from sys import exc_info
|
from sys import exc_info
|
||||||
|
from time import time_ns
|
||||||
from typing import Collection
|
from typing import Collection
|
||||||
|
|
||||||
import falcon
|
import falcon
|
||||||
@ -164,7 +165,6 @@ from opentelemetry.instrumentation.utils import (
|
|||||||
)
|
)
|
||||||
from opentelemetry.semconv.trace import SpanAttributes
|
from opentelemetry.semconv.trace import SpanAttributes
|
||||||
from opentelemetry.trace.status import Status
|
from opentelemetry.trace.status import Status
|
||||||
from opentelemetry.util._time import _time_ns
|
|
||||||
from opentelemetry.util.http import get_excluded_urls, get_traced_request_attrs
|
from opentelemetry.util.http import get_excluded_urls, get_traced_request_attrs
|
||||||
|
|
||||||
_logger = getLogger(__name__)
|
_logger = getLogger(__name__)
|
||||||
@ -253,7 +253,7 @@ class _InstrumentedFalconAPI(getattr(falcon, _instrument_app)):
|
|||||||
if self._otel_excluded_urls.url_disabled(env.get("PATH_INFO", "/")):
|
if self._otel_excluded_urls.url_disabled(env.get("PATH_INFO", "/")):
|
||||||
return super().__call__(env, start_response)
|
return super().__call__(env, start_response)
|
||||||
|
|
||||||
start_time = _time_ns()
|
start_time = time_ns()
|
||||||
|
|
||||||
span, token = _start_internal_or_server_span(
|
span, token = _start_internal_or_server_span(
|
||||||
tracer=self._otel_tracer,
|
tracer=self._otel_tracer,
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -141,6 +141,7 @@ API
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
from logging import getLogger
|
from logging import getLogger
|
||||||
|
from time import time_ns
|
||||||
from timeit import default_timer
|
from timeit import default_timer
|
||||||
from typing import Collection
|
from typing import Collection
|
||||||
|
|
||||||
@ -157,7 +158,6 @@ from opentelemetry.instrumentation.propagators import (
|
|||||||
from opentelemetry.instrumentation.utils import _start_internal_or_server_span
|
from opentelemetry.instrumentation.utils import _start_internal_or_server_span
|
||||||
from opentelemetry.metrics import get_meter
|
from opentelemetry.metrics import get_meter
|
||||||
from opentelemetry.semconv.trace import SpanAttributes
|
from opentelemetry.semconv.trace import SpanAttributes
|
||||||
from opentelemetry.util._time import _time_ns
|
|
||||||
from opentelemetry.util.http import get_excluded_urls, parse_excluded_urls
|
from opentelemetry.util.http import get_excluded_urls, parse_excluded_urls
|
||||||
|
|
||||||
_logger = getLogger(__name__)
|
_logger = getLogger(__name__)
|
||||||
@ -191,7 +191,7 @@ def _rewrapped_app(
|
|||||||
# In theory, we could start the span here and use
|
# In theory, we could start the span here and use
|
||||||
# update_name later but that API is "highly discouraged" so
|
# update_name later but that API is "highly discouraged" so
|
||||||
# we better avoid it.
|
# we better avoid it.
|
||||||
wrapped_app_environ[_ENVIRON_STARTTIME_KEY] = _time_ns()
|
wrapped_app_environ[_ENVIRON_STARTTIME_KEY] = time_ns()
|
||||||
start = default_timer()
|
start = default_timer()
|
||||||
attributes = otel_wsgi.collect_request_attributes(wrapped_app_environ)
|
attributes = otel_wsgi.collect_request_attributes(wrapped_app_environ)
|
||||||
active_requests_count_attrs = (
|
active_requests_count_attrs = (
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,7 +28,6 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,7 +28,6 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from logging import getLogger
|
from logging import getLogger
|
||||||
|
from time import time_ns
|
||||||
|
|
||||||
from pyramid.events import BeforeTraversal
|
from pyramid.events import BeforeTraversal
|
||||||
from pyramid.httpexceptions import HTTPException, HTTPServerError
|
from pyramid.httpexceptions import HTTPException, HTTPServerError
|
||||||
@ -27,7 +28,6 @@ from opentelemetry.instrumentation.propagators import (
|
|||||||
from opentelemetry.instrumentation.pyramid.version import __version__
|
from opentelemetry.instrumentation.pyramid.version import __version__
|
||||||
from opentelemetry.instrumentation.utils import _start_internal_or_server_span
|
from opentelemetry.instrumentation.utils import _start_internal_or_server_span
|
||||||
from opentelemetry.semconv.trace import SpanAttributes
|
from opentelemetry.semconv.trace import SpanAttributes
|
||||||
from opentelemetry.util._time import _time_ns
|
|
||||||
from opentelemetry.util.http import get_excluded_urls
|
from opentelemetry.util.http import get_excluded_urls
|
||||||
|
|
||||||
TWEEN_NAME = "opentelemetry.instrumentation.pyramid.trace_tween_factory"
|
TWEEN_NAME = "opentelemetry.instrumentation.pyramid.trace_tween_factory"
|
||||||
@ -144,7 +144,7 @@ def trace_tween_factory(handler, registry):
|
|||||||
return handler(request)
|
return handler(request)
|
||||||
|
|
||||||
request.environ[_ENVIRON_ENABLED_KEY] = True
|
request.environ[_ENVIRON_ENABLED_KEY] = True
|
||||||
request.environ[_ENVIRON_STARTTIME_KEY] = _time_ns()
|
request.environ[_ENVIRON_STARTTIME_KEY] = time_ns()
|
||||||
|
|
||||||
response = None
|
response = None
|
||||||
status = None
|
status = None
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -27,14 +27,13 @@ classifiers =
|
|||||||
Intended Audience :: Developers
|
Intended Audience :: Developers
|
||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -156,6 +156,7 @@ API
|
|||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
from functools import partial
|
from functools import partial
|
||||||
from logging import getLogger
|
from logging import getLogger
|
||||||
|
from time import time_ns
|
||||||
from typing import Collection
|
from typing import Collection
|
||||||
|
|
||||||
import tornado.web
|
import tornado.web
|
||||||
@ -179,7 +180,6 @@ from opentelemetry.instrumentation.utils import (
|
|||||||
from opentelemetry.propagators import textmap
|
from opentelemetry.propagators import textmap
|
||||||
from opentelemetry.semconv.trace import SpanAttributes
|
from opentelemetry.semconv.trace import SpanAttributes
|
||||||
from opentelemetry.trace.status import Status, StatusCode
|
from opentelemetry.trace.status import Status, StatusCode
|
||||||
from opentelemetry.util._time import _time_ns
|
|
||||||
from opentelemetry.util.http import (
|
from opentelemetry.util.http import (
|
||||||
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST,
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST,
|
||||||
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE,
|
OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE,
|
||||||
@ -290,7 +290,7 @@ def _wrap(cls, method_name, wrapper):
|
|||||||
|
|
||||||
|
|
||||||
def _prepare(tracer, request_hook, func, handler, args, kwargs):
|
def _prepare(tracer, request_hook, func, handler, args, kwargs):
|
||||||
start_time = _time_ns()
|
start_time = time_ns()
|
||||||
request = handler.request
|
request = handler.request
|
||||||
if _excluded_urls.url_disabled(request.uri):
|
if _excluded_urls.url_disabled(request.uri):
|
||||||
return func(*args, **kwargs)
|
return func(*args, **kwargs)
|
||||||
@ -423,7 +423,7 @@ def _finish_span(tracer, handler, error=None):
|
|||||||
if isinstance(error, tornado.web.HTTPError):
|
if isinstance(error, tornado.web.HTTPError):
|
||||||
status_code = error.status_code
|
status_code = error.status_code
|
||||||
if not ctx and status_code == 404:
|
if not ctx and status_code == 404:
|
||||||
ctx = _start_span(tracer, handler, _time_ns())
|
ctx = _start_span(tracer, handler, time_ns())
|
||||||
else:
|
else:
|
||||||
status_code = 500
|
status_code = 500
|
||||||
reason = None
|
reason = None
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import functools
|
import functools
|
||||||
|
from time import time_ns
|
||||||
|
|
||||||
from tornado.httpclient import HTTPError, HTTPRequest
|
from tornado.httpclient import HTTPError, HTTPRequest
|
||||||
|
|
||||||
@ -21,7 +22,6 @@ from opentelemetry.instrumentation.utils import http_status_to_status_code
|
|||||||
from opentelemetry.propagate import inject
|
from opentelemetry.propagate import inject
|
||||||
from opentelemetry.semconv.trace import SpanAttributes
|
from opentelemetry.semconv.trace import SpanAttributes
|
||||||
from opentelemetry.trace.status import Status
|
from opentelemetry.trace.status import Status
|
||||||
from opentelemetry.util._time import _time_ns
|
|
||||||
from opentelemetry.util.http import remove_url_credentials
|
from opentelemetry.util.http import remove_url_credentials
|
||||||
|
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ def _normalize_request(args, kwargs):
|
|||||||
|
|
||||||
|
|
||||||
def fetch_async(tracer, request_hook, response_hook, func, _, args, kwargs):
|
def fetch_async(tracer, request_hook, response_hook, func, _, args, kwargs):
|
||||||
start_time = _time_ns()
|
start_time = time_ns()
|
||||||
|
|
||||||
# Return immediately if no args were provided (error)
|
# Return immediately if no args were provided (error)
|
||||||
# or original_request is set (meaning we are in a redirect step).
|
# or original_request is set (meaning we are in a redirect step).
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -14,14 +14,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir =
|
package_dir =
|
||||||
=src
|
=src
|
||||||
packages = find_namespace:
|
packages = find_namespace:
|
||||||
|
@ -28,13 +28,12 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Typing :: Typed
|
Typing :: Typed
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
@ -28,14 +28,13 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
100
tox.ini
100
tox.ini
@ -6,30 +6,30 @@ envlist =
|
|||||||
; for specifying supported Python versions per package.
|
; for specifying supported Python versions per package.
|
||||||
|
|
||||||
; opentelemetry-sdk-extension-aws
|
; opentelemetry-sdk-extension-aws
|
||||||
py3{6,7,8,9,10}-test-sdkextension-aws
|
py3{7,8,9,10}-test-sdkextension-aws
|
||||||
pypy3-test-sdkextension-aws
|
pypy3-test-sdkextension-aws
|
||||||
|
|
||||||
; opentelemetry-distro
|
; opentelemetry-distro
|
||||||
py3{6,7,8,9,10}-test-distro
|
py3{7,8,9,10}-test-distro
|
||||||
pypy3-test-distro
|
pypy3-test-distro
|
||||||
|
|
||||||
; opentelemetry-instrumentation
|
; opentelemetry-instrumentation
|
||||||
py3{6,7,8,9,10}-test-opentelemetry-instrumentation
|
py3{7,8,9,10}-test-opentelemetry-instrumentation
|
||||||
pypy3-test-opentelemetry-instrumentation
|
pypy3-test-opentelemetry-instrumentation
|
||||||
|
|
||||||
; opentelemetry-instrumentation-aiohttp-client
|
; opentelemetry-instrumentation-aiohttp-client
|
||||||
py3{6,7,8,9,10}-test-instrumentation-aiohttp-client
|
py3{7,8,9,10}-test-instrumentation-aiohttp-client
|
||||||
pypy3-test-instrumentation-aiohttp-client
|
pypy3-test-instrumentation-aiohttp-client
|
||||||
|
|
||||||
; opentelemetry-instrumentation-aiopg
|
; opentelemetry-instrumentation-aiopg
|
||||||
py3{6,7,8,9,10}-test-instrumentation-aiopg
|
py3{7,8,9,10}-test-instrumentation-aiopg
|
||||||
; instrumentation-aiopg intentionally excluded from pypy3
|
; instrumentation-aiopg intentionally excluded from pypy3
|
||||||
|
|
||||||
; opentelemetry-instrumentation-aws-lambda
|
; opentelemetry-instrumentation-aws-lambda
|
||||||
py3{6,7,8,9}-test-instrumentation-aws-lambda
|
py3{7,8,9}-test-instrumentation-aws-lambda
|
||||||
|
|
||||||
; opentelemetry-instrumentation-botocore
|
; opentelemetry-instrumentation-botocore
|
||||||
py3{6,7,8,9,10}-test-instrumentation-botocore
|
py3{7,8,9,10}-test-instrumentation-botocore
|
||||||
pypy3-test-instrumentation-botocore
|
pypy3-test-instrumentation-botocore
|
||||||
|
|
||||||
; opentelemetry-instrumentation-boto3sqs
|
; opentelemetry-instrumentation-boto3sqs
|
||||||
@ -40,121 +40,119 @@ envlist =
|
|||||||
; Only officially supported Python versions are tested for each Django
|
; Only officially supported Python versions are tested for each Django
|
||||||
; major release. Updated list can be found at:
|
; major release. Updated list can be found at:
|
||||||
; https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
|
; https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
|
||||||
py3{6,7}-test-instrumentation-django1
|
py3{7}-test-instrumentation-django1
|
||||||
py3{6,7,8,9}-test-instrumentation-django2
|
py3{7,8,9}-test-instrumentation-django2
|
||||||
py3{6,7,8,9,10}-test-instrumentation-django3
|
py3{7,8,9,10}-test-instrumentation-django3
|
||||||
py3{8,9,10}-test-instrumentation-django4
|
py3{8,9,10}-test-instrumentation-django4
|
||||||
pypy3-test-instrumentation-django{1,2,3}
|
pypy3-test-instrumentation-django{1,2,3}
|
||||||
|
|
||||||
; opentelemetry-instrumentation-dbapi
|
; opentelemetry-instrumentation-dbapi
|
||||||
py3{6,7,8,9,10}-test-instrumentation-dbapi
|
py3{7,8,9,10}-test-instrumentation-dbapi
|
||||||
pypy3-test-instrumentation-dbapi
|
pypy3-test-instrumentation-dbapi
|
||||||
|
|
||||||
; opentelemetry-instrumentation-boto
|
; opentelemetry-instrumentation-boto
|
||||||
py3{6,7,8,9,10}-test-instrumentation-boto
|
py3{7,8,9,10}-test-instrumentation-boto
|
||||||
pypy3-test-instrumentation-boto
|
pypy3-test-instrumentation-boto
|
||||||
|
|
||||||
; opentelemetry-instrumentation-elasticsearch
|
; opentelemetry-instrumentation-elasticsearch
|
||||||
py3{6,7,8,9,10}-test-instrumentation-elasticsearch{2,6}
|
py3{7,8,9,10}-test-instrumentation-elasticsearch{2,6}
|
||||||
pypy3-test-instrumentation-elasticsearch{2,6}
|
pypy3-test-instrumentation-elasticsearch{2,6}
|
||||||
|
|
||||||
; opentelemetry-instrumentation-elasticsearch5
|
; opentelemetry-instrumentation-elasticsearch5
|
||||||
py3{6,7,8,9}-test-instrumentation-elasticsearch5
|
py3{7,8,9}-test-instrumentation-elasticsearch5
|
||||||
pypy3-test-instrumentation-elasticsearch5
|
pypy3-test-instrumentation-elasticsearch5
|
||||||
|
|
||||||
; opentelemetry-instrumentation-falcon
|
; opentelemetry-instrumentation-falcon
|
||||||
; py310 does not work with falcon 1
|
; py310 does not work with falcon 1
|
||||||
py3{6,7,8,9}-test-instrumentation-falcon1
|
py3{7,8,9}-test-instrumentation-falcon1
|
||||||
py3{6,7,8,9,10}-test-instrumentation-falcon{2,3}
|
py3{7,8,9,10}-test-instrumentation-falcon{2,3}
|
||||||
pypy3-test-instrumentation-falcon{1,2,3}
|
pypy3-test-instrumentation-falcon{1,2,3}
|
||||||
|
|
||||||
; opentelemetry-instrumentation-fastapi
|
; opentelemetry-instrumentation-fastapi
|
||||||
; fastapi only supports 3.6 and above.
|
py3{7,8,9,10}-test-instrumentation-fastapi
|
||||||
py3{6,7,8,9,10}-test-instrumentation-fastapi
|
|
||||||
pypy3-test-instrumentation-fastapi
|
pypy3-test-instrumentation-fastapi
|
||||||
|
|
||||||
; opentelemetry-instrumentation-flask
|
; opentelemetry-instrumentation-flask
|
||||||
py3{6,7,8,9,10}-test-instrumentation-flask
|
py3{7,8,9,10}-test-instrumentation-flask
|
||||||
pypy3-test-instrumentation-flask
|
pypy3-test-instrumentation-flask
|
||||||
|
|
||||||
; opentelemetry-instrumentation-urllib
|
; opentelemetry-instrumentation-urllib
|
||||||
py3{6,7,8,9,10}-test-instrumentation-urllib
|
py3{7,8,9,10}-test-instrumentation-urllib
|
||||||
pypy3-test-instrumentation-urllib
|
pypy3-test-instrumentation-urllib
|
||||||
|
|
||||||
; opentelemetry-instrumentation-urllib3
|
; opentelemetry-instrumentation-urllib3
|
||||||
py3{6,7,8,9,10}-test-instrumentation-urllib3
|
py3{7,8,9,10}-test-instrumentation-urllib3
|
||||||
pypy3-test-instrumentation-urllib3
|
pypy3-test-instrumentation-urllib3
|
||||||
|
|
||||||
; opentelemetry-instrumentation-requests
|
; opentelemetry-instrumentation-requests
|
||||||
py3{6,7,8,9,10}-test-instrumentation-requests
|
py3{7,8,9,10}-test-instrumentation-requests
|
||||||
pypy3-test-instrumentation-requests
|
pypy3-test-instrumentation-requests
|
||||||
|
|
||||||
; opentelemetry-instrumentation-starlette.
|
; opentelemetry-instrumentation-starlette.
|
||||||
; starlette only supports 3.6 and above.
|
py3{7,8,9,10}-test-instrumentation-starlette
|
||||||
py3{6,7,8,9,10}-test-instrumentation-starlette
|
|
||||||
pypy3-test-instrumentation-starlette
|
pypy3-test-instrumentation-starlette
|
||||||
|
|
||||||
; opentelemetry-instrumentation-jinja2
|
; opentelemetry-instrumentation-jinja2
|
||||||
py3{6,7,8,9,10}-test-instrumentation-jinja2
|
py3{7,8,9,10}-test-instrumentation-jinja2
|
||||||
pypy3-test-instrumentation-jinja2
|
pypy3-test-instrumentation-jinja2
|
||||||
|
|
||||||
; opentelemetry-instrumentation-logging
|
; opentelemetry-instrumentation-logging
|
||||||
py3{6,7,8,9,10}-test-instrumentation-logging
|
py3{7,8,9,10}-test-instrumentation-logging
|
||||||
pypy3-test-instrumentation-logging
|
pypy3-test-instrumentation-logging
|
||||||
|
|
||||||
; opentelemetry-exporter-richconsole
|
; opentelemetry-exporter-richconsole
|
||||||
py3{6,7,8,9,10}-test-exporter-richconsole
|
py3{7,8,9,10}-test-exporter-richconsole
|
||||||
|
|
||||||
; opentelemetry-instrumentation-mysql
|
; opentelemetry-instrumentation-mysql
|
||||||
py3{6,7,8,9,10}-test-instrumentation-mysql
|
py3{7,8,9,10}-test-instrumentation-mysql
|
||||||
pypy3-test-instrumentation-mysql
|
pypy3-test-instrumentation-mysql
|
||||||
|
|
||||||
; opentelemetry-instrumentation-psycopg2
|
; opentelemetry-instrumentation-psycopg2
|
||||||
py3{6,7,8,9,10}-test-instrumentation-psycopg2
|
py3{7,8,9,10}-test-instrumentation-psycopg2
|
||||||
; ext-psycopg2 intentionally excluded from pypy3
|
; ext-psycopg2 intentionally excluded from pypy3
|
||||||
|
|
||||||
; opentelemetry-instrumentation-pymemcache
|
; opentelemetry-instrumentation-pymemcache
|
||||||
py3{6,7,8,9,10}-test-instrumentation-pymemcache{135,200,300,342}
|
py3{7,8,9,10}-test-instrumentation-pymemcache{135,200,300,342}
|
||||||
pypy3-test-instrumentation-pymemcache{135,200,300,342}
|
pypy3-test-instrumentation-pymemcache{135,200,300,342}
|
||||||
|
|
||||||
; opentelemetry-instrumentation-pymongo
|
; opentelemetry-instrumentation-pymongo
|
||||||
py3{6,7,8,9,10}-test-instrumentation-pymongo
|
py3{7,8,9,10}-test-instrumentation-pymongo
|
||||||
pypy3-test-instrumentation-pymongo
|
pypy3-test-instrumentation-pymongo
|
||||||
|
|
||||||
; opentelemetry-instrumentation-pymysql
|
; opentelemetry-instrumentation-pymysql
|
||||||
py3{6,7,8,9,10}-test-instrumentation-pymysql
|
py3{7,8,9,10}-test-instrumentation-pymysql
|
||||||
pypy3-test-instrumentation-pymysql
|
pypy3-test-instrumentation-pymysql
|
||||||
|
|
||||||
; opentelemetry-instrumentation-pyramid
|
; opentelemetry-instrumentation-pyramid
|
||||||
py3{6,7,8,9,10}-test-instrumentation-pyramid
|
py3{7,8,9,10}-test-instrumentation-pyramid
|
||||||
pypy3-test-instrumentation-pyramid
|
pypy3-test-instrumentation-pyramid
|
||||||
|
|
||||||
; opentelemetry-instrumentation-asgi
|
; opentelemetry-instrumentation-asgi
|
||||||
py3{6,7,8,9,10}-test-instrumentation-asgi
|
py3{7,8,9,10}-test-instrumentation-asgi
|
||||||
pypy3-test-instrumentation-asgi
|
pypy3-test-instrumentation-asgi
|
||||||
|
|
||||||
; opentelemetry-instrumentation-asyncpg
|
; opentelemetry-instrumentation-asyncpg
|
||||||
py3{6,7,8,9,10}-test-instrumentation-asyncpg
|
py3{7,8,9,10}-test-instrumentation-asyncpg
|
||||||
; ext-asyncpg intentionally excluded from pypy3
|
; ext-asyncpg intentionally excluded from pypy3
|
||||||
|
|
||||||
; opentelemetry-instrumentation-sqlite3
|
; opentelemetry-instrumentation-sqlite3
|
||||||
py3{6,7,8,9,10}-test-instrumentation-sqlite3
|
py3{7,8,9,10}-test-instrumentation-sqlite3
|
||||||
pypy3-test-instrumentation-sqlite3
|
pypy3-test-instrumentation-sqlite3
|
||||||
|
|
||||||
; opentelemetry-instrumentation-wsgi
|
; opentelemetry-instrumentation-wsgi
|
||||||
py3{6,7,8,9,10}-test-instrumentation-wsgi
|
py3{7,8,9,10}-test-instrumentation-wsgi
|
||||||
pypy3-test-instrumentation-wsgi
|
pypy3-test-instrumentation-wsgi
|
||||||
|
|
||||||
; opentelemetry-instrumentation-grpc
|
; opentelemetry-instrumentation-grpc
|
||||||
py3{6,7,8,9,10}-test-instrumentation-grpc
|
py3{7,8,9,10}-test-instrumentation-grpc
|
||||||
|
|
||||||
; opentelemetry-instrumentation-sqlalchemy
|
; opentelemetry-instrumentation-sqlalchemy
|
||||||
py3{6,7}-test-instrumentation-sqlalchemy{11}
|
py3{7}-test-instrumentation-sqlalchemy{11}
|
||||||
py3{6,7,8,9,10}-test-instrumentation-sqlalchemy{14}
|
py3{7,8,9,10}-test-instrumentation-sqlalchemy{14}
|
||||||
pypy3-test-instrumentation-sqlalchemy{11,14}
|
pypy3-test-instrumentation-sqlalchemy{11,14}
|
||||||
|
|
||||||
; opentelemetry-instrumentation-redis
|
; opentelemetry-instrumentation-redis
|
||||||
py3{6,7,8,9,10}-test-instrumentation-redis
|
py3{7,8,9,10}-test-instrumentation-redis
|
||||||
pypy3-test-instrumentation-redis
|
pypy3-test-instrumentation-redis
|
||||||
|
|
||||||
; opentelemetry-instrumentation-remoulade
|
; opentelemetry-instrumentation-remoulade
|
||||||
@ -163,42 +161,42 @@ envlist =
|
|||||||
; instrumentation-remoulade intentionally excluded from pypy3
|
; instrumentation-remoulade intentionally excluded from pypy3
|
||||||
|
|
||||||
; opentelemetry-instrumentation-celery
|
; opentelemetry-instrumentation-celery
|
||||||
py3{6,7,8,9,10}-test-instrumentation-celery
|
py3{7,8,9,10}-test-instrumentation-celery
|
||||||
pypy3-test-instrumentation-celery
|
pypy3-test-instrumentation-celery
|
||||||
|
|
||||||
; opentelemetry-instrumentation-sklearn
|
; opentelemetry-instrumentation-sklearn
|
||||||
py3{6,7,8}-test-instrumentation-sklearn
|
py3{7,8}-test-instrumentation-sklearn
|
||||||
|
|
||||||
; opentelemetry-instrumentation-system-metrics
|
; opentelemetry-instrumentation-system-metrics
|
||||||
py3{6,7,8,9,10}-test-instrumentation-system-metrics
|
py3{6,7,8,9,10}-test-instrumentation-system-metrics
|
||||||
; instrumentation-system-metrics intentionally excluded from pypy3
|
; instrumentation-system-metrics intentionally excluded from pypy3
|
||||||
|
|
||||||
; opentelemetry-instrumentation-tornado
|
; opentelemetry-instrumentation-tornado
|
||||||
py3{6,7,8,9,10}-test-instrumentation-tornado
|
py3{7,8,9,10}-test-instrumentation-tornado
|
||||||
pypy3-test-instrumentation-tornado
|
pypy3-test-instrumentation-tornado
|
||||||
|
|
||||||
; opentelemetry-instrumentation-httpx
|
; opentelemetry-instrumentation-httpx
|
||||||
py3{6,7,8,9,10}-test-instrumentation-httpx{18,21}
|
py3{7,8,9,10}-test-instrumentation-httpx{18,21}
|
||||||
pypy3-test-instrumentation-httpx{18,21}
|
pypy3-test-instrumentation-httpx{18,21}
|
||||||
|
|
||||||
; opentelemetry-util-http
|
; opentelemetry-util-http
|
||||||
py3{6,7,8,9,10}-test-util-http
|
py3{7,8,9,10}-test-util-http
|
||||||
pypy3-test-util-http
|
pypy3-test-util-http
|
||||||
|
|
||||||
; opentelemetry-propagator-aws-xray
|
; opentelemetry-propagator-aws-xray
|
||||||
py3{6,7,8,9,10}-test-propagator-aws-xray
|
py3{7,8,9,10}-test-propagator-aws-xray
|
||||||
pypy3-test-propagator-aws-xray
|
pypy3-test-propagator-aws-xray
|
||||||
|
|
||||||
; opentelemetry-propagator-ot-trace
|
; opentelemetry-propagator-ot-trace
|
||||||
py3{6,7,8,9,10}-test-propagator-ot-trace
|
py3{7,8,9,10}-test-propagator-ot-trace
|
||||||
pypy3-test-propagator-ot-trace
|
pypy3-test-propagator-ot-trace
|
||||||
|
|
||||||
; opentelemetry-instrumentation-pika
|
; opentelemetry-instrumentation-pika
|
||||||
py3{6,7,8,9,10}-test-instrumentation-pika{0,1}
|
py3{7,8,9,10}-test-instrumentation-pika{0,1}
|
||||||
pypy3-test-instrumentation-pika{0,1}
|
pypy3-test-instrumentation-pika{0,1}
|
||||||
|
|
||||||
; opentelemetry-instrumentation-kafka-python
|
; opentelemetry-instrumentation-kafka-python
|
||||||
py3{6,7,8,9,10}-test-instrumentation-kafka-python
|
py3{7,8,9,10}-test-instrumentation-kafka-python
|
||||||
pypy3-test-instrumentation-kafka-python
|
pypy3-test-instrumentation-kafka-python
|
||||||
|
|
||||||
lint
|
lint
|
||||||
@ -303,7 +301,7 @@ changedir =
|
|||||||
|
|
||||||
commands_pre =
|
commands_pre =
|
||||||
; Install without -e to test the actual installation
|
; Install without -e to test the actual installation
|
||||||
py3{6,7,8,9,10}: python -m pip install -U pip setuptools wheel
|
py3{7,8,9,10}: python -m pip install -U pip setuptools wheel
|
||||||
; Install common packages for all the tests. These are not needed in all the
|
; Install common packages for all the tests. These are not needed in all the
|
||||||
; cases but it saves a lot of boilerplate in this file.
|
; cases but it saves a lot of boilerplate in this file.
|
||||||
test: pip install "opentelemetry-api[test] @ {env:CORE_REPO}#egg=opentelemetry-api&subdirectory=opentelemetry-api"
|
test: pip install "opentelemetry-api[test] @ {env:CORE_REPO}#egg=opentelemetry-api&subdirectory=opentelemetry-api"
|
||||||
|
@ -28,17 +28,16 @@ classifiers =
|
|||||||
License :: OSI Approved :: Apache Software License
|
License :: OSI Approved :: Apache Software License
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.6
|
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
python_requires = >=3.6
|
python_requires = >=3.7
|
||||||
package_dir=
|
package_dir=
|
||||||
=src
|
=src
|
||||||
packages=find_namespace:
|
packages=find_namespace:
|
||||||
|
|
||||||
[options.packages.find]
|
[options.packages.find]
|
||||||
where = src
|
where = src
|
||||||
|
Reference in New Issue
Block a user