From ef63338097e0bb23354392a80cd915791e5c98e3 Mon Sep 17 00:00:00 2001 From: Fabian Holler Date: Thu, 16 Sep 2021 15:00:54 +0200 Subject: [PATCH] readme: replace history with credits section --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 380b780..1d1a9e9 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ sqltracing is a Go package for tracing database operations via an OpenTracing tracer. It can wrap any `driver.Driver` compatible SQL driver. +It is implemented as an interceptor for +[simplesurance/sqlmw](https://github.com/simplesurance/sqlmw). ## Documentation @@ -22,13 +24,11 @@ See [example_test.go](example_test.go) `Rollback()` are recorded as independent spans, instead of as child spans of the `BeginTx()` operation -## History +## Credits -sqltracing is build on top of the [ngrok/sqlmw](https://github.com/ngrok/sqlmw) -SQL middleware and contains some modified code of -[luna-duclos/instrumentedsql](https://github.com/luna-duclos/instrumentedsql). -\ -[ngrok/sqlmw](https://github.com/ngrok/sqlmw) is also based on -[luna-duclos/instrumentedsql](https://github.com/luna-duclos/instrumentedsql) -which is a fork of -[ExpansiveWorlds/instrumentedsql](https://github.com/ExpansiveWorlds/instrumentedsql). +sqltracing and simplesurance/sqlmw are based heavily on forks and the ideas of +the following projects: + +- [ngrok/sqlmw](https://github.com/ngrok/sqlmw) +- [luna-duclos/instrumentedsql](https://github.com/luna-duclos/instrumentedsql) +- [ExpansiveWorlds/instrumentedsql](https://github.com/ExpansiveWorlds/instrumentedsql)