Skip to content

ericrlessa/kafka-observability-grafana

Repository files navigation

kafka-observability-grafana

🚀 Observability applied to services that communicate via kafka and REST

Big picture of services

enter image description here

🎲 Running services

# Clone this repo
$ git clone <https://github.com/ericrlessa/kafka-observability-grafana.git>

# start services
$ docker compose up -d

# Enter in mysql service
$ docker compose exec -it mysql bash

# Call mysql client with password "root"
$ mysql -u root -p

# run the following scripts in mysql
$ CREATE TABLE IF NOT EXISTS product (
$    id INT AUTO_INCREMENT PRIMARY KEY,
$    name VARCHAR(255) NOT NULL,
$    price decimal(10,4) NOT NULL
$ );
$ insert into product (name, price) values ('Galaxy Sql', 2000.40);

URls to access the services:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published