Skip to content

kubukoz/kamon-repro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

repro

A project to reproduce the mixing of spans in kamon-http4s.

Reproduce the issue

  1. Have a Postgres instance running on this config:

    host = localhost name = postgres user = "postgres" password = "example"

  2. Have zipkin on localhost:9411

  3. Create this table in your Postgres:

CREATE TABLE accounts (
  id     SERIAL PRIMARY KEY,
  name   VARCHAR(50) NOT NULL
);
  1. Probably optional: insert some data to that table
  2. Run the application (sbt run)
  3. Make a bunch of curls to localhost:8080
  4. See the spans join up in zipkin

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages