Skip to content
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
2 changes: 1 addition & 1 deletion services/otel-gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# https://github.com/open-telemetry/opentelemetry-collector-releases/blob/main/distributions/otelcol/Dockerfile
#
FROM otel/opentelemetry-collector-contrib:0.84.0
FROM otel/opentelemetry-collector-contrib:0.110.0

LABEL org.opencontainers.image.authors="tech@opensafely.org" \
org.opencontainers.image.url="opensafely.org" \
Expand Down
1 change: 1 addition & 0 deletions services/otel-gateway/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ receivers:
otlp:
protocols:
http:
endpoint: 0.0.0.0:4318
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this used to be the default, now the default is (the safer) localhost

auth:
authenticator: basicauth/server

Expand Down
5 changes: 5 additions & 0 deletions services/otel-gateway/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ export IMAGE_NAME := "otel-gateway"
export DOCKER_BUILDKIT := "1"


# list available commands
default:
@"{{ just_executable() }}" --list


_env:
test -e .env || cp dotenv-sample .env

Expand Down