instrumentation/falcon: Added Falcon 2.0+ instrumentation (#1039)
This commit is contained in:
parent
7ab5cb4416
commit
96c91e16f4
9
tox.ini
9
tox.ini
|
|
@ -56,6 +56,10 @@ envlist =
|
||||||
py3{5,6,7,8}-test-instrumentation-elasticsearch{2,5,6,7}
|
py3{5,6,7,8}-test-instrumentation-elasticsearch{2,5,6,7}
|
||||||
pypy3-test-instrumentation-elasticsearch{2,5,6,7}
|
pypy3-test-instrumentation-elasticsearch{2,5,6,7}
|
||||||
|
|
||||||
|
; opentelemetry-instrumentation-falcon
|
||||||
|
py3{4,5,6,7,8}-test-instrumentation-falcon
|
||||||
|
pypy3-test-instrumentation-falcon
|
||||||
|
|
||||||
; opentelemetry-instrumentation-fastapi
|
; opentelemetry-instrumentation-fastapi
|
||||||
; fastapi only supports 3.6 and above.
|
; fastapi only supports 3.6 and above.
|
||||||
py3{6,7,8}-test-instrumentation-fastapi
|
py3{6,7,8}-test-instrumentation-fastapi
|
||||||
|
|
@ -208,6 +212,7 @@ changedir =
|
||||||
test-instrumentation-django: instrumentation/opentelemetry-instrumentation-django/tests
|
test-instrumentation-django: instrumentation/opentelemetry-instrumentation-django/tests
|
||||||
test-instrumentation-example-app: docs/examples/opentelemetry-example-app/tests
|
test-instrumentation-example-app: docs/examples/opentelemetry-example-app/tests
|
||||||
test-instrumentation-elasticsearch{2,5,6,7}: instrumentation/opentelemetry-instrumentation-elasticsearch/tests
|
test-instrumentation-elasticsearch{2,5,6,7}: instrumentation/opentelemetry-instrumentation-elasticsearch/tests
|
||||||
|
test-instrumentation-falcon: instrumentation/opentelemetry-instrumentation-falcon/tests
|
||||||
test-instrumentation-fastapi: instrumentation/opentelemetry-instrumentation-fastapi/tests
|
test-instrumentation-fastapi: instrumentation/opentelemetry-instrumentation-fastapi/tests
|
||||||
test-instrumentation-flask: instrumentation/opentelemetry-instrumentation-flask/tests
|
test-instrumentation-flask: instrumentation/opentelemetry-instrumentation-flask/tests
|
||||||
test-instrumentation-grpc: instrumentation/opentelemetry-instrumentation-grpc/tests
|
test-instrumentation-grpc: instrumentation/opentelemetry-instrumentation-grpc/tests
|
||||||
|
|
@ -251,7 +256,7 @@ commands_pre =
|
||||||
|
|
||||||
grpc: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-grpc[test]
|
grpc: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-grpc[test]
|
||||||
|
|
||||||
wsgi,flask,django,pyramid: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-wsgi
|
wsgi,falcon,flask,django,pyramid: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-wsgi
|
||||||
asgi,starlette,fastapi: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-asgi
|
asgi,starlette,fastapi: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-asgi
|
||||||
|
|
||||||
asyncpg: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-asyncpg
|
asyncpg: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-asyncpg
|
||||||
|
|
@ -259,6 +264,8 @@ commands_pre =
|
||||||
boto: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-botocore[test]
|
boto: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-botocore[test]
|
||||||
boto: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-boto[test]
|
boto: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-boto[test]
|
||||||
|
|
||||||
|
falcon: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-falcon[test]
|
||||||
|
|
||||||
flask: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-flask[test]
|
flask: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-flask[test]
|
||||||
|
|
||||||
botocore: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-botocore[test]
|
botocore: pip install {toxinidir}/instrumentation/opentelemetry-instrumentation-botocore[test]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue