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 f8c6a4df6d
commit cbb562208f
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
# Add OpenTelemetry Collector configs
COPY 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-file.yaml /etc/otel/config-file.yaml
COPY otel/otel-collector-config-clickhouse.yaml /etc/otel/config-clickhouse.yaml
ARG LETTA_ENVIRONMENT=PRODUCTION
ENV LETTA_ENVIRONMENT=${LETTA_ENVIRONMENT} \

View File

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