https://github.com/janritter/kvb-api-caller
This is a small application calling the kvb-api to demonstrate distributed tracing with OpenTelemetry and Jaeger
https://github.com/janritter/kvb-api-caller
Last synced: 2 months ago
JSON representation
This is a small application calling the kvb-api to demonstrate distributed tracing with OpenTelemetry and Jaeger
- Host: GitHub
- URL: https://github.com/janritter/kvb-api-caller
- Owner: janritter
- Created: 2022-02-05T13:10:07.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-15T01:20:55.000Z (10 months ago)
- Last Synced: 2024-08-15T02:35:05.822Z (10 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# KVB API caller
This is a small application calling the [KVB API](https://github.com/janritter/kvb-api) to demonstrate distributed tracing with OpenTelemetry and Jaeger
## Setup
### Create venv
```bash
python3 -m venv env
```### Activate venv
```bash
source ./env/bin/activate
```### Install requirements
```bash
pip3 install -r requirements.txt
```## Usage
1. Start the [KVB API](https://github.com/janritter/kvb-api) on localhost:8080
2. Start a locally running Jaeger or adapt Jager configuration in `app.py`
3. Start the kvb-api-caller via `python3 app.py`