Skip to content

Commit 754a8aa

Browse files
authored
fix: add missing collector uri (#282)
1 parent cc77955 commit 754a8aa

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

.github/helpers/docker/docker-entrypoint.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,11 @@ then
389389
echo "webauthn_recover_account_token_lifetime: $WEBAUTHN_RECOVER_ACCOUNT_TOKEN_LIFETIME" >> $CONFIG_FILE
390390
fi
391391

392+
if [ ! -z $OTEL_COLLECTOR_CONNECTION_URI ]
393+
then
394+
echo "otel_collector_connection_uri: $OTEL_COLLECTOR_CONNECTION_URI" >> $CONFIG_FILE
395+
fi
396+
392397
fi
393398

394399
# check if no options has been passed to docker run

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [9.0.5]
11+
12+
- Adds `OTEL_COLLECTOR_CONNECTION_URI` environment variable to configure OpenTelemetry collector connection URI
13+
1014
## [9.0.4]
1115

1216
- Adds back `implementationDependencies.json` file, but now it is generated by the build process

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
}
44

5-
version = "9.0.4"
5+
version = "9.0.5"
66

77
repositories {
88
mavenCentral()

0 commit comments

Comments
 (0)