otelsql is an instrumentation library for the database/sql library of the Go programming language. It generates traces and metrics from the application when interacting with databases. By doing that, the library allows you to identify errors or slowdowns in your SQL queries that potentially impact the performance of your application. Let’s go dive into how to use this library! Getting Started otelsql is a wrapper layer for interfaces from database/sql. When users use the wrapped database in...