https://github.com/pavolloffay/opentracing-java-examples
Spring Boot example app instrumented with OpenTracing
https://github.com/pavolloffay/opentracing-java-examples
Last synced: 3 months ago
JSON representation
Spring Boot example app instrumented with OpenTracing
- Host: GitHub
- URL: https://github.com/pavolloffay/opentracing-java-examples
- Owner: pavolloffay
- License: apache-2.0
- Created: 2017-05-26T16:45:35.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-07T16:18:48.000Z (over 7 years ago)
- Last Synced: 2025-03-18T02:12:53.887Z (3 months ago)
- Language: Shell
- Size: 63.5 KB
- Stars: 35
- Watchers: 5
- Forks: 34
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenTracing Java Examples
This repository contains various example apps instrumented with OpenTracing API and framework integrations.
## Start tracing system
Choose tracing system, note that some code changes might be required, depending on which tracer is initialized.```bash
docker run --rm -it --network=host jaegertracing/all-in-one
docker run --rm -it -p 9411:9411 openzipkin/zipkin
```## Spring Boot
[Video](https://youtu.be/RvCcWltMY7U)```bash
mvnw clean install
java -jar target/demo-opentracing-0.0.1-SNAPSHOT.jar
```## JAX-RS (Wilfly Swarm)
[Video](https://youtu.be/gVwLenPH8SY)```bash
mvn wildfly-swarm:run
```