https://github.com/logzio/tracing-demo
A demo application, based on Jaeger Hot R.O.D, to submit example traces to Logz.io's distributed tracing product.
https://github.com/logzio/tracing-demo
documentation
Last synced: about 2 months ago
JSON representation
A demo application, based on Jaeger Hot R.O.D, to submit example traces to Logz.io's distributed tracing product.
- Host: GitHub
- URL: https://github.com/logzio/tracing-demo
- Owner: logzio
- License: apache-2.0
- Created: 2020-12-03T07:27:35.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-20T12:20:28.000Z (over 3 years ago)
- Last Synced: 2025-04-01T14:14:36.602Z (2 months ago)
- Topics: documentation
- Language: Shell
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tracing-demo
A demo application, based on [Jaeger Hot R.O.D](https://github.com/jaegertracing/jaeger/tree/master/examples/hotrod), to submit example traces to [Logz.io's distributed tracing product](https://logz.io/platform/distributed-tracing/).This demo application is used by Logz.io's guide to ["Sending demo traces with the HotROD application"](https://docs.logz.io/user-guide/distributed-tracing/trace-hotrod-demo).
## Prerequisites
- [Docker](https://docs.docker.com/get-docker/)## Getting Started
Update the `.env` file in this repo with your [tracing account token](https://docs.logz.io/user-guide/distributed-tracing/getting-started-tracing/) and [region code](https://docs.logz.io/user-guide/accounts/account-region.html#available-regions).For example:
```
ACCOUNT_TOKEN=MyAccountToken
REGION_CODE=us
```Create External network
```
docker network create dockercompose_testcluster
```Start the demo:
```
docker-compose up
```Open http://127.0.0.1:18080 and click on the buttons to send traces.
`Ctrl+C` to stop the demo and then remove the containers with:
```
docker-compose down
```## Additional References
- [Logz.io Distributed Tracing - User Guide](https://docs.logz.io/user-guide/distributed-tracing/)
- [Logz.io Distributed Tracing - Getting Started](https://docs.logz.io/user-guide/distributed-tracing/getting-started-tracing/)