forked from open-telemetry/opentelemetry-demo
-
Notifications
You must be signed in to change notification settings - Fork 28
Opensearch observability otel #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
acf1cdc
Initial setup of Observability OTEL demo using Opensearch as store
YANG-DB c842150
Initial setup of Observability OTEL demo using Opensearch as store
YANG-DB b83ea99
Merge remote-tracking branch 'origin/opensearch-observability-otel' i…
YANG-DB 9850688
Initial setup of Observability OTEL demo using Opensearch as store
YANG-DB 0db3223
Merge branch 'main' into opensearch-observability-otel
YANG-DB bf41276
add curl to the basic docker O/S
YANG-DB 4292136
Merge pull request #1 from open-telemetry/main
YANG-DB f0600be
add monitoring & opinionated assets for this demo
YANG-DB 418d196
Merge remote-tracking branch 'origin/opensearch-observability-otel' i…
YANG-DB b0db9fc
export F/E & Load-Generator port services
YANG-DB 9629fb7
Merge pull request #2 from open-telemetry/main
YANG-DB ba709f1
fix jaeger service name
YANG-DB daedfab
adding nginx as frontend proxy, fluent-bit.conf as log emitter
YANG-DB d58ed46
adding nginx & fluent-bit docs
YANG-DB a8e3f5d
Merge pull request #3 from open-telemetry/main
YANG-DB b6a018a
adding integrationbs docker-compose service for assets loading into o…
YANG-DB 6031c17
Merge remote-tracking branch 'origin/opensearch-observability-otel' i…
YANG-DB 92240ba
adding datasource for query prometheus
YANG-DB 12d52cb
adding architecture.md including images
YANG-DB 85fefce
add images and service links
YANG-DB 73e2680
add jaeger-agent container name
YANG-DB f6067c6
add data-prepper support for traces ingestion & serviceMap creation
YANG-DB 24d278c
fix auth issues for data-prepper
YANG-DB 7410478
add documentation for different ingestion capabilities
YANG-DB d8a2abf
Merge pull request #4 from YANG-DB/otel-opensearch-data-prep
YANG-DB fe655cc
Initial setup of Observability OTEL demo using Opensearch as store
YANG-DB 0be11cd
Initial setup of Observability OTEL demo using Opensearch as store
YANG-DB f54a011
add curl to the basic docker O/S
YANG-DB 90c9a61
add monitoring & opinionated assets for this demo
YANG-DB 379372a
[shippingservice] update rust version and dependencies (#865)
julianocosta89 6ae5c80
[load generator] Bump loagen dependencies (#869)
julianocosta89 a69595a
[grafana] fix demo dashboard to be compatible with spanmetrics connec…
fatsheep9146 1c28220
export F/E & Load-Generator port services
YANG-DB 42537be
[kafka] remove KRaft mode support workarounds (#880)
styblope 8bd25ad
enabling batch span processor metrics for quoteservice (#878)
brettmc 2cc7484
Generate random errors in cartservice (#824)
alanwest 54e3b6f
fix jaeger service name
YANG-DB daf0d08
adding nginx as frontend proxy, fluent-bit.conf as log emitter
YANG-DB 88e0171
adding nginx & fluent-bit docs
YANG-DB d292741
adding integrationbs docker-compose service for assets loading into o…
YANG-DB 6f55bd8
[currencyservice] Fix OTel C++ build and update OTel version (#886)
julianocosta89 193552f
adding datasource for query prometheus
YANG-DB febdfe1
adding architecture.md including images
YANG-DB 904ed80
add images and service links
YANG-DB 9cf4326
add jaeger-agent container name
YANG-DB c14aa11
add data-prepper support for traces ingestion & serviceMap creation
YANG-DB a55d74f
fix auth issues for data-prepper
YANG-DB 6032e3e
add documentation for different ingestion capabilities
YANG-DB 5954bdf
Merge remote-tracking branch 'origin/opensearch-observability-otel' i…
YANG-DB 4d1d72e
add assets manager flast app for loading the integration assets
YANG-DB 91f7a0e
remove experimental assets mgr app
YANG-DB 78b38e6
Opensearch otel demo observability tutorial (#5)
YANG-DB fe8a551
Merge pull request #2 from open-telemetry/main
YANG-DB b422bc7
Update local-config.md
YANG-DB 4431d7b
Update README.md
YANG-DB File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
adding datasource for query prometheus
Signed-off-by: YANGDB <[email protected]>
- Loading branch information
commit 92240ba729e509f00bd26e476aee8545bdac7926
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,33 @@ | ||
| # Local Dev Config | ||
|
|
||
| Use the following configuration to locally run and test the OTEL demo: | ||
|
|
||
| - For additional help go [here](https://opensearch.org/docs/latest/install-and-configure/install-opensearch/docker/) | ||
|
|
||
| ### Raise your host's ulimits: | ||
| Rais the upper liits for OpenSearch to be able handling high I/O : | ||
|
|
||
| `sudo sysctl -w vm.max_map_count=512000` | ||
|
|
||
| ### Map domain name to local dns | ||
|
|
||
| run the [following script](add_hosts_locally.sh) to map the docker-compose service names to your local dns | ||
|
|
||
| ```text | ||
| # The hostname you want to associate with the IP address | ||
|
|
||
| OPENSEARCH_HOST="opensearch-node1" | ||
| OPENSEARCH_DASHBOARD="opensearch-dashboards" | ||
| OTEL_STORE="frontend" | ||
| OTEL_LOADER="loadgenerator" | ||
| PROMETHEUS="prometheus" | ||
|
|
||
| # Add the entry to the /etc/hosts file | ||
|
|
||
| echo "$IP $OPENSEARCH_HOST" | sudo tee -a /etc/hosts | ||
| echo "$IP $OPENSEARCH_DASHBOARD" | sudo tee -a /etc/hosts | ||
| echo "$IP $OTEL_STORE" | sudo tee -a /etc/hosts | ||
| echo "$IP $PROMETHEUS" | sudo tee -a /etc/hosts | ||
| echo "$IP $OTEL_LOADER" | sudo tee -a /etc/hosts | ||
|
|
||
| ``` | ||
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.