chore: move otel config files to subdir (#1396)

This commit is contained in:
cthomas
2025-03-25 10:19:24 -07:00
committed by GitHub
parent 71a18ff2ff
commit 312def47dd
8 changed files with 6 additions and 3 deletions

View File

@@ -54,8 +54,8 @@ RUN apt-get update && apt-get install -y \
&& mkdir -p /etc/otel && mkdir -p /etc/otel
# Add OpenTelemetry Collector configs # Add OpenTelemetry Collector configs
COPY otel-collector-config-file.yaml /etc/otel/config-file.yaml COPY otel/otel-collector-config-file.yaml /etc/otel/config-file.yaml
COPY otel-collector-config-clickhouse.yaml /etc/otel/config-clickhouse.yaml COPY otel/otel-collector-config-clickhouse.yaml /etc/otel/config-clickhouse.yaml
ARG LETTA_ENVIRONMENT=PRODUCTION ARG LETTA_ENVIRONMENT=PRODUCTION
ENV LETTA_ENVIRONMENT=${LETTA_ENVIRONMENT} \ ENV LETTA_ENVIRONMENT=${LETTA_ENVIRONMENT} \

View File

@@ -26,7 +26,10 @@
"dev": { "dev": {
"executor": "@nxlv/python:run-commands", "executor": "@nxlv/python:run-commands",
"options": { "options": {
"commands": ["./start-otel-collector.sh", "poetry run letta server"], "commands": [
"./otel/start-otel-collector.sh",
"poetry run letta server"
],
"parallel": true, "parallel": true,
"cwd": "apps/core" "cwd": "apps/core"
} }