Skip to content

Commit

Permalink
🧐 Install DDTrace (#1042)
Browse files Browse the repository at this point in the history
  • Loading branch information
rblaine95 authored Sep 18, 2024
1 parent 5dfd6d7 commit a86fb4a
Show file tree
Hide file tree
Showing 10 changed files with 1,165 additions and 7 deletions.
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

0 comments on commit a86fb4a

Please sign in to comment.