https://github.com/cbos/solving-problems-with-opentelemetry
https://github.com/cbos/solving-problems-with-opentelemetry
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/cbos/solving-problems-with-opentelemetry
- Owner: cbos
- License: mit
- Created: 2024-11-19T20:51:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-07T13:41:21.000Z (about 1 year ago)
- Last Synced: 2025-05-07T14:47:26.498Z (about 1 year ago)
- Language: Java
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Insights with OpenTelemetry

This repo contains the demos of my talk 'How I solved production issues with OpenTelemetry (and how you can too)'
## Prerequisites
- Java (can be installed with `sdk install java`)
- [Just commandrunner](https://just.systems/man/en)
- Docker or [Podman](https://podman.io/)
## Run locally
```shell
# Compile java code
just build
# Download OpenTelemetry jar
just download-otel
# Start setup
just up
# Check the logs
just logs alpha
just logs beta
# check the status of the services
just ps
#Execute one or more scenarios
just k6-scenario-1
just k6-scenario-2
just k6-scenario-3
# Stop all services
just down
```