Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🧐 Install DDTrace #1042

Merged
merged 1 commit into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
289 changes: 288 additions & 1 deletion app/poetry.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ pyjwt = "~2.9.0"
PyYAML = "~6.0.2"
typing-extensions = "~4.12.0"
uvicorn = { version = "~0.30.5", extras = ["standard"] }
ddtrace = "^2.12.2"

[tool.poetry.dev-dependencies]
anyio = "~4.4.0"
Expand Down
5 changes: 4 additions & 1 deletion dockerfiles/agents/Dockerfile.agent
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ FROM ghcr.io/didx-xyz/aries-cloudagent-bbs:py3.12-1.0.0b1

USER root
# install redis-events plugin
RUN pip3 install git+https://github.com/didx-xyz/aries-acapy-plugins@v1-2024-08-30#subdirectory=redis_events
RUN pip install --no-cache-dir git+https://github.com/didx-xyz/aries-acapy-plugins@v1-2024-08-30#subdirectory=redis_events
# Install ddtrace
ARG DDTRACE_VERSION=2.12.2
RUN pip install --no-cache-dir ddtrace==${DDTRACE_VERSION}

COPY scripts/startup.sh startup.sh
RUN chmod +x ./startup.sh
Expand Down
7 changes: 5 additions & 2 deletions dockerfiles/agents/Dockerfile.author.agent
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ FROM ghcr.io/didx-xyz/aries-cloudagent-bbs:py3.12-1.0.0b1
USER root

# Install wallet group id plugin
RUN pip3 install git+https://github.com/didx-xyz/acapy-wallet-groups-plugin@1.0.0b1
RUN pip install --no-cache-dir git+https://github.com/didx-xyz/acapy-wallet-groups-plugin@1.0.0b1

# install redis-events plugin
RUN pip3 install git+https://github.com/didx-xyz/aries-acapy-plugins@v1-2024-08-30#subdirectory=redis_events
RUN pip install --no-cache-dir git+https://github.com/didx-xyz/aries-acapy-plugins@v1-2024-08-30#subdirectory=redis_events
# Install ddtrace
ARG DDTRACE_VERSION=2.12.2
RUN pip install --no-cache-dir ddtrace==${DDTRACE_VERSION}

COPY scripts/startup.sh startup.sh
RUN chmod +x ./startup.sh
Expand Down
289 changes: 288 additions & 1 deletion endorser/poetry.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions endorser/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ orjson = "~3.10.7"
pydantic = "~2.9.0"
redis = "~=5.0.8"
uvicorn = { version = "~0.30.5", extras = ["standard"] }
ddtrace = "^2.12.2"

[tool.poetry.dev-dependencies]
anyio = "~4.4.0"
Expand Down
289 changes: 288 additions & 1 deletion trustregistry/poetry.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions trustregistry/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ psycopg2-binary = "~=2.9.6"
pydantic = "~2.9.0"
sqlalchemy = "~=2.0.19"
uvicorn = { version = "~0.30.5", extras = ["standard"] }
ddtrace = "^2.12.2"

[tool.poetry.dev-dependencies]
anyio = "~4.4.0"
Expand Down
289 changes: 288 additions & 1 deletion webhooks/poetry.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions webhooks/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ redis = "~=5.0.8"
sse-starlette = "~=2.1.3"
typing-extensions = "~=4.12.0"
uvicorn = { version = "~0.30.5", extras = ["standard"] }
ddtrace = "^2.12.2"

[tool.poetry.dev-dependencies]
anyio = "~4.4.0"
Expand Down
Loading