-
Notifications
You must be signed in to change notification settings - Fork 474
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: I50be3152f25b41ecc7130bfb94a5e17e2a5c447f
- Loading branch information
1 parent
fb138bd
commit 48cf37a
Showing
13 changed files
with
99 additions
and
43 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
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
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
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,44 @@ | ||
--- | ||
# The ports exposed with [::1]:0 are not used by us. Unfortunately | ||
# there is currently no way to disable them completely. We assign a | ||
# random free port to prevent conflicts with other sites on the same | ||
# host. | ||
|
||
service: | ||
extensions: [jaeger_storage, jaeger_query] | ||
pipelines: | ||
traces: | ||
receivers: [otlp] | ||
processors: [batch] | ||
exporters: [jaeger_storage_exporter] | ||
telemetry: | ||
resource: | ||
service.name: jaeger | ||
|
||
extensions: | ||
jaeger_query: | ||
base_path: "/###SITE###/jaeger" | ||
storage: | ||
traces: in_memory_store | ||
traces_archive: in_memory_archive_store | ||
grpc: | ||
endpoint: "[::1]:0" | ||
|
||
jaeger_storage: | ||
backends: | ||
# We use the memory backend which is by default uncapped. To prevent excessive memory | ||
# consumption, we apply a default limit. This can be increased if needed and enough | ||
# memory is available. | ||
in_memory_store: | ||
memory: | ||
max_traces: 50000 | ||
in_memory_archive_store: | ||
memory: | ||
max_traces: 50000 | ||
|
||
processors: | ||
batch: | ||
|
||
exporters: | ||
jaeger_storage_exporter: | ||
trace_storage: in_memory_store |
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
--- | ||
service: | ||
telemetry: | ||
metrics: | ||
level: detailed | ||
# Updated by TRACE_JAEGER_ADMIN_PORT hook | ||
address: "[::1]:0" |
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,7 @@ | ||
--- | ||
receivers: | ||
otlp: | ||
protocols: | ||
grpc: | ||
# Updated by TRACE_RECEIVE_* hooks | ||
endpoint: "[::1]:0" |
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,6 @@ | ||
--- | ||
extensions: | ||
jaeger_query: | ||
http: | ||
# Updated by TRACE_JAEGER_UI_PORT | ||
endpoint: "[::1]:0" |