mirror of
https://github.com/community-unscripted/telemetry-service.git
synced 2026-07-01 20:54:03 -04:00
1e0127d51a
- Go microservice for anonymous telemetry collection - PocketBase integration for data storage - Rate limiting and caching support - SMTP alerts for failure rate monitoring - Built-in dashboard for visualization - Migration tool for data import - GDPR/DSGVO compliant (no personal data, no IP logging)
53 lines
1.5 KiB
Docker
53 lines
1.5 KiB
Docker
FROM golang:1.25-alpine AS build
|
|
WORKDIR /src
|
|
COPY go.mod go.sum* ./
|
|
RUN go mod download 2>/dev/null || true
|
|
COPY . .
|
|
RUN go build -trimpath -ldflags "-s -w" -o /out/telemetry-service .
|
|
RUN go build -trimpath -ldflags "-s -w" -o /out/migrate ./migration/migrate.go
|
|
|
|
FROM alpine:3.23
|
|
RUN apk add --no-cache ca-certificates tzdata
|
|
WORKDIR /app
|
|
COPY --from=build /out/telemetry-service /app/telemetry-service
|
|
COPY --from=build /out/migrate /app/migrate
|
|
COPY entrypoint.sh /app/entrypoint.sh
|
|
RUN chmod +x /app/entrypoint.sh /app/migrate
|
|
|
|
# Service config
|
|
ENV LISTEN_ADDR=":8080"
|
|
ENV MAX_BODY_BYTES="1024"
|
|
ENV RATE_LIMIT_RPM="60"
|
|
ENV RATE_BURST="20"
|
|
ENV UPSTREAM_TIMEOUT_MS="4000"
|
|
ENV ENABLE_REQUEST_LOGGING="false"
|
|
|
|
# Cache config (optional)
|
|
ENV ENABLE_CACHE="true"
|
|
ENV CACHE_TTL_SECONDS="60"
|
|
ENV ENABLE_REDIS="false"
|
|
# ENV REDIS_URL="redis://localhost:6379"
|
|
|
|
# Alert config (optional)
|
|
ENV ALERT_ENABLED="false"
|
|
# ENV SMTP_HOST=""
|
|
# ENV SMTP_PORT="587"
|
|
# ENV SMTP_USER=""
|
|
# ENV SMTP_PASSWORD=""
|
|
# ENV SMTP_FROM="telemetry@proxmoxved.local"
|
|
# ENV SMTP_TO=""
|
|
# ENV SMTP_USE_TLS="false"
|
|
ENV ALERT_FAILURE_THRESHOLD="20.0"
|
|
ENV ALERT_CHECK_INTERVAL_MIN="15"
|
|
ENV ALERT_COOLDOWN_MIN="60"
|
|
|
|
# Migration config (optional)
|
|
ENV RUN_MIGRATION="false"
|
|
ENV MIGRATION_REQUIRED="false"
|
|
ENV MIGRATION_SOURCE_URL="https://api.htl-braunau.at/dev/data"
|
|
|
|
EXPOSE 8080
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s \
|
|
CMD wget -q --spider http://localhost:8080/healthz || exit 1
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|