forked from open-telemetry/opentelemetry-python-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Forked asgi,wsgi,dbapi instrumentors
- Loading branch information
1 parent
9628c03
commit bd071fb
Showing
15 changed files
with
216 additions
and
20 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
instrumentation/opentelemetry-instrumentation-asgi/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
SHELL=bash | ||
|
||
.DEFAULT_GOAL := nothing | ||
|
||
nothing: | ||
@echo -e "Welcome! Options:" | ||
@echo -e " - 'make package':" | ||
@echo -e " Build the agent package distribution (sdist and bdist)." | ||
|
||
package: | ||
@rm -rf ./dist | ||
@python3.8 -m build --outdir ./dist | ||
|
||
clean: | ||
@rm -rf dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
instrumentation/opentelemetry-instrumentation-asgi/docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
version: '2.4' | ||
|
||
services: | ||
x86_64: | ||
image: quay.io/pypa/manylinux_2_28_x86_64 | ||
user: root | ||
stdin_open: true | ||
tty: true | ||
network_mode: host | ||
cap_add: | ||
- ALL | ||
volumes: | ||
- ./:/code | ||
working_dir: /code | ||
entrypoint: ["/bin/bash", "-c"] | ||
command: | ||
- | | ||
# boto3 for interaction with AWS | ||
# twine to upload to TestPyPi | ||
# tox for automated tests | ||
python3.8 -m pip install --upgrade pip | ||
python3.8 -m pip install boto3 twine tox | ||
/bin/bash | ||
aarch64: | ||
image: quay.io/pypa/manylinux_2_28_aarch64 | ||
user: root | ||
stdin_open: true | ||
tty: true | ||
network_mode: host | ||
cap_add: | ||
- ALL | ||
volumes: | ||
- ./:/code | ||
working_dir: /code | ||
entrypoint: ["/bin/bash", "-c"] | ||
command: | ||
- | | ||
# boto3 for interaction with AWS | ||
# twine to upload to TestPyPi | ||
# tox for automated tests | ||
python3.8 -m pip install --upgrade pip | ||
python3.8 -m pip install boto3 twine tox | ||
/bin/bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
instrumentation/opentelemetry-instrumentation-dbapi/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
SHELL=bash | ||
|
||
.DEFAULT_GOAL := nothing | ||
|
||
nothing: | ||
@echo -e "Welcome! Options:" | ||
@echo -e " - 'make package':" | ||
@echo -e " Build the agent package distribution (sdist and bdist)." | ||
|
||
package: | ||
@rm -rf ./dist | ||
@python3.8 -m build --outdir ./dist | ||
|
||
clean: | ||
@rm -rf dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
instrumentation/opentelemetry-instrumentation-dbapi/docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
version: '2.4' | ||
|
||
services: | ||
x86_64: | ||
image: quay.io/pypa/manylinux_2_28_x86_64 | ||
user: root | ||
stdin_open: true | ||
tty: true | ||
network_mode: host | ||
cap_add: | ||
- ALL | ||
volumes: | ||
- ./:/code | ||
working_dir: /code | ||
entrypoint: ["/bin/bash", "-c"] | ||
command: | ||
- | | ||
# boto3 for interaction with AWS | ||
# twine to upload to TestPyPi | ||
# tox for automated tests | ||
python3.8 -m pip install --upgrade pip | ||
python3.8 -m pip install boto3 twine tox | ||
/bin/bash | ||
aarch64: | ||
image: quay.io/pypa/manylinux_2_28_aarch64 | ||
user: root | ||
stdin_open: true | ||
tty: true | ||
network_mode: host | ||
cap_add: | ||
- ALL | ||
volumes: | ||
- ./:/code | ||
working_dir: /code | ||
entrypoint: ["/bin/bash", "-c"] | ||
command: | ||
- | | ||
# boto3 for interaction with AWS | ||
# twine to upload to TestPyPi | ||
# tox for automated tests | ||
python3.8 -m pip install --upgrade pip | ||
python3.8 -m pip install boto3 twine tox | ||
/bin/bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
instrumentation/opentelemetry-instrumentation-wsgi/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
SHELL=bash | ||
|
||
.DEFAULT_GOAL := nothing | ||
|
||
nothing: | ||
@echo -e "Welcome! Options:" | ||
@echo -e " - 'make package':" | ||
@echo -e " Build the agent package distribution (sdist and bdist)." | ||
|
||
package: | ||
@rm -rf ./dist | ||
@python3.8 -m build --outdir ./dist | ||
|
||
clean: | ||
@rm -rf dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
instrumentation/opentelemetry-instrumentation-wsgi/docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
version: '2.4' | ||
|
||
services: | ||
x86_64: | ||
image: quay.io/pypa/manylinux_2_28_x86_64 | ||
user: root | ||
stdin_open: true | ||
tty: true | ||
network_mode: host | ||
cap_add: | ||
- ALL | ||
volumes: | ||
- ./:/code | ||
working_dir: /code | ||
entrypoint: ["/bin/bash", "-c"] | ||
command: | ||
- | | ||
# boto3 for interaction with AWS | ||
# twine to upload to TestPyPi | ||
# tox for automated tests | ||
python3.8 -m pip install --upgrade pip | ||
python3.8 -m pip install boto3 twine tox | ||
/bin/bash | ||
aarch64: | ||
image: quay.io/pypa/manylinux_2_28_aarch64 | ||
user: root | ||
stdin_open: true | ||
tty: true | ||
network_mode: host | ||
cap_add: | ||
- ALL | ||
volumes: | ||
- ./:/code | ||
working_dir: /code | ||
entrypoint: ["/bin/bash", "-c"] | ||
command: | ||
- | | ||
# boto3 for interaction with AWS | ||
# twine to upload to TestPyPi | ||
# tox for automated tests | ||
python3.8 -m pip install --upgrade pip | ||
python3.8 -m pip install boto3 twine tox | ||
/bin/bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters