-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes Jaeger Hotrod demo failure on OpenSearch 2.16.0
Signed-off-by: linghengqian <[email protected]>
- Loading branch information
1 parent
3dfad0b
commit b4a45fa
Showing
3 changed files
with
56 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
entry-pipeline: | ||
delay: "100" | ||
source: | ||
otel_trace_source: | ||
ssl: false | ||
sink: | ||
- pipeline: | ||
name: "raw-pipeline" | ||
- pipeline: | ||
name: "service-map-pipeline" | ||
raw-pipeline: | ||
source: | ||
pipeline: | ||
name: "entry-pipeline" | ||
processor: | ||
- otel_trace_raw: | ||
sink: | ||
- opensearch: | ||
hosts: [ "https://node-0.example.com:9200" ] | ||
cert: "/usr/share/opensearch-test/root-ca.pem" | ||
username: "admin" | ||
password: "yourStrongPassword123!" | ||
index_type: trace-analytics-raw | ||
service-map-pipeline: | ||
delay: "100" | ||
source: | ||
pipeline: | ||
name: "entry-pipeline" | ||
processor: | ||
- service_map_stateful: | ||
sink: | ||
- opensearch: | ||
hosts: ["https://node-0.example.com:9200"] | ||
cert: "/usr/share/opensearch-test/root-ca.pem" | ||
username: "admin" | ||
password: "yourStrongPassword123!" | ||
index_type: trace-analytics-service-map |