sqlc-pgx-monitoring
is a Go package that offers powerful query time monitoring and logging capabilities for applications using the popular pgx
and sqlc
libraries in Golang. If you want to gain insights into the performance of your PostgreSQL database queries and ensure the reliability of your application, this package is a valuable addition to your toolset.
-
Complete OpenTelemetry Support: Built-in integration with OpenTelemetry for comprehensive observability, including metrics, traces, and spans for all database operations. Traces every database interaction including:
- Individual queries
- Batch operations
- Prepared statements
- Connection lifecycle
- COPY FROM operations
-
OpenTelemetry Semantic Convention: Aligned with Otel's semantic convetions (defined here).
-
Modern Structured Logging: Native support for Go's
slog
package, providing structured, leveled logging that's easy to parse and analyze. -
Query Time Monitoring: Keep a close eye on the execution times of your SQL queries to identify and optimize slow or resource-intensive database operations. It uses name declared in sqlc queries in the label for distinguishing queries from each other.
-
Detailed Logging: Record detailed logs of executed queries, including name, parameters, timings, and outcomes, which can be invaluable for debugging and performance analysis.
-
Compatible with
pgx
andsqlc
: Designed to seamlessly integrate with thepgx
database driver and thesqlc
code generation tool, making it a great fit for projects using these technologies.
To get started with sqlc-pgx-monitoring
, you can simply use go get
:
go get github.com/amirsalarsafaei/[email protected]
To begin using sqlc-pgx-monitoring
in your Go project, follow these basic steps:
-
Import the package:
import "github.com/amirsalarsafaei/sqlc-pgx-monitoring/dbtracer"
-
Before creating connection or connection pool, assign dbTracer in your connection config:
connConfig.Tracer = dbtracer.NewDBTracer( "database_name", )
poolConfig.ConnConfig.Tracer = dbtracer.NewDBTracer( "database_name", )
The NewDBTracer
function accepts various options to customize its behavior:
WithLogger(logger *slog.Logger)
: Sets a custom structured logger for query loggingWithShouldLog(shouldLog ShouldLog)
: Configures when to log based on error conditionsWithLogArgs(enabled bool)
: Enables/disables logging of query argumentsWithLogArgsLenLimit(limit int)
: Sets maximum length for logged arguments
WithMeterProvider(mp metric.MeterProvider)
: Sets the OpenTelemetry meter provider for metricsWithTraceProvider(tp trace.TracerProvider)
: Sets the OpenTelemetry tracer providerWithLatencyHistogramConfig(name, unit, description string)
: Configures the latency histogram propertiesdbtracer.NewDBTracer( "database_name", dbtracer.WithLatencyHistogramConfig( "custom_histogram_name", "ms", "Custom histogram description", ), )
logger := slog.New(slog.NewTextHandler(os.Stdout, nil))
mp := metric.NewMeterProvider()
tp := trace.NewTracerProvider()
tracer := dbtracer.NewDBTracer(
"database_name",
dbtracer.WithLogger(logger),
dbtracer.WithMeterProvider(mp),
dbtracer.WithTraceProvider(tp),
dbtracer.WithLogArgs(true),
dbtracer.WithLogArgsLenLimit(1000),
dbtracer.WithShouldLog(func(err error) bool {
return err != nil // Only log when there's an error
}),
)
For more information refer to the example
sqlc-pgx-monitoring
is open-source software licensed under the MIT License. Feel free to use, modify, and distribute it according to the terms of this license.
We welcome contributions from the community. If you have suggestions, bug reports, or want to contribute to the development of sqlc-pgx-monitoring
, please refer to our contribution guidelines.
Happy querying and monitoring with sqlc-pgx-monitoring
!