-
Notifications
You must be signed in to change notification settings - Fork 77
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
chore: adding observability stack example #3578
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Editing suggestions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tiny suggestions.
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
4f1ea83
to
72ff9cd
Compare
Co-authored-by: Julianne Fermi <[email protected]>
Co-authored-by: Adnan Rahić <[email protected]>
edd2771
to
eaab714
Compare
tracetest: | ||
image: kubeshop/tracetest-agent:latest | ||
platform: linux/amd64 | ||
depends_on: | ||
otel-collector: | ||
condition: service_started | ||
environment: | ||
TRACETEST_API_KEY: ${TRACETEST_API_KEY} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We the agent will access http://host.docker.internal:8080/
, it's better to add the extra_hosts parameter to make sure Linux users will be able to run this example:
extra_hosts:
- "host.docker.internal:host-gateway"
This PR adds an example that shows the user how to create an observability stack, plug an API into it, and do some trace based tests.
Checklist