diff options
author | 2023-09-07 13:20:37 +0200 | |
---|---|---|
committer | 2023-09-07 13:20:37 +0200 | |
commit | 14ef09809942800db57de87fe3963770a56b585b (patch) | |
tree | 89e95f21145bc7ad5745f77be1d998faa9c09695 /test | |
parent | [bugfix] fix checks for deref the same status descendants / ascendants (#2181) (diff) | |
download | gotosocial-14ef09809942800db57de87fe3963770a56b585b.tar.xz |
[feature] Support OTLP HTTP, drop Jaeger (#2184)
* [feature] Add http trace exporter, drop Jaeger
Jaeger supports ingesting traces using the OpenTelemetry gRPC or HTTP
methods. The Jaeger project has deprecated the old jaeger transport.
* Add support for submitting traces over HTTP
* Drop support for the old Jaeger protocol
* Upgrade the trace libraries to v1.17
Fixes: #2176
Fixes: #2179
Diffstat (limited to 'test')
-rwxr-xr-x | test/envparsing.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/envparsing.sh b/test/envparsing.sh index 63f1bc5e3..68e250db0 100755 --- a/test/envparsing.sh +++ b/test/envparsing.sh @@ -146,7 +146,7 @@ EXPECT=$(cat << "EOF" "tls-certificate-key": "", "tracing-enabled": false, "tracing-endpoint": "localhost:4317", - "tracing-insecure": false, + "tracing-insecure-transport": true, "tracing-transport": "grpc", "trusted-proxies": [ "127.0.0.1/32", @@ -242,6 +242,7 @@ GTS_SYSLOG_ENABLED=true \ GTS_SYSLOG_PROTOCOL='udp' \ GTS_SYSLOG_ADDRESS='127.0.0.1:6969' \ GTS_TRACING_ENDPOINT='localhost:4317' \ +GTS_TRACING_INSECURE_TRANSPORT=true \ GTS_ADVANCED_COOKIES_SAMESITE='strict' \ GTS_ADVANCED_RATE_LIMIT_EXCEPTIONS="192.0.2.0/24,127.0.0.1/32" \ GTS_ADVANCED_RATE_LIMIT_REQUESTS=6969 \ |