forked from boskworks/bosk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# otel-config.properties | ||
otel.service.name=bosk-mongo-test | ||
otel.resource.attributes=deployment.environment=test | ||
|
||
otel.javaagent.logging=simple | ||
otel.logs.exporter=none | ||
otel.metrics.exporter=none | ||
|
||
otel.traces.exporter=otlp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
version: '3' | ||
|
||
services: | ||
jaeger: | ||
image: jaegertracing/all-in-one:1.58 | ||
container_name: jaeger | ||
ports: | ||
- "5775:5775/udp" # UDP port for tchannel, used by the Jaeger agent | ||
- "6831:6831/udp" # UDP port for the Jaeger agent | ||
- "6832:6832/udp" # UDP port for the Jaeger agent | ||
- "5778:5778" # HTTP port for the Jaeger agent's UI | ||
- "16686:16686" # HTTP port for the Jaeger query service UI | ||
- "14268:14268" # HTTP port for the Jaeger collector | ||
- "14250:14250" # gRPC port for the Jaeger collector | ||
- "4318:4318" # OTLP port for the Jaeger collector |