Documentation ¶
Overview ¶
Package sql provides functions to trace the database/sql package (https://golang.org/pkg/database/sql). It will automatically augment operations such as connections, statements and transactions with tracing.
We start by telling the package which driver we will be using. For example, if we are using "github.com/lib/pq", we would do as follows:
sqltrace.Register("pq", &pq.Driver{}) db, err := sqltrace.Open("pq", "postgres://pqgotest:password@localhost...")
The rest of our application would continue as usual, but with tracing enabled.
Example ¶
package main import ( "log" sqltrace "github.com/DataDog/dd-trace-go/contrib/database/sql/v2" "github.com/lib/pq" ) func main() { // The first step is to register the driver that we will be using. sqltrace.Register("postgres", &pq.Driver{}) // Followed by a call to Open. db, err := sqltrace.Open("postgres", "postgres://pqgotest:password@localhost/pqgotest?sslmode=disable") if err != nil { log.Fatal(err) } // Then, we continue using the database/sql package as we normally would, with tracing. rows, err := db.Query("SELECT name FROM users WHERE age=?", 27) if err != nil { log.Fatal(err) } defer rows.Close() }
Output:
Example (Context) ¶
package main import ( "context" "log" sqltrace "github.com/DataDog/dd-trace-go/contrib/database/sql/v2" "github.com/DataDog/dd-trace-go/v2/ddtrace/ext" "github.com/DataDog/dd-trace-go/v2/ddtrace/tracer" "github.com/go-sql-driver/mysql" ) func main() { tracer.Start() defer tracer.Stop() // Register the driver that we will be using (in this case mysql) under a custom service name. sqltrace.Register("mysql", &mysql.MySQLDriver{}, sqltrace.WithService("my-db")) // Open a connection to the DB using the driver we've just registered with tracing. db, err := sqltrace.Open("mysql", "user:password@/dbname") if err != nil { log.Fatal(err) } // Create a root span, giving name, server and resource. span, ctx := tracer.StartSpanFromContext(context.Background(), "my-query", tracer.SpanType(ext.SpanTypeSQL), tracer.ServiceName("my-db"), tracer.ResourceName("initial-access"), ) // Subsequent spans inherit their parent from context. rows, err := db.QueryContext(ctx, "SELECT * FROM city LIMIT 5") if err != nil { log.Fatal(err) } rows.Close() span.Finish(tracer.WithError(err)) }
Output:
Example (DbStats) ¶
package main import ( "log" sqltrace "github.com/DataDog/dd-trace-go/contrib/database/sql/v2" "github.com/lib/pq" ) func main() { // Register the driver with the WithDBStats option to enable DBStats metric polling sqltrace.Register("postgres", &pq.Driver{}, sqltrace.WithDBStats()) // Followed by a call to Open. db, err := sqltrace.Open("postgres", "postgres://pqgotest:password@localhost/pqgotest?sslmode=disable") if err != nil { log.Fatal(err) } // Tracing and metric polling is now enabled. Metrics will be submitted to Datadog with the prefix `datadog.tracer.sql` rows, err := db.Query("SELECT name FROM users WHERE age=?", 27) if err != nil { log.Fatal(err) } rows.Close() }
Output:
Example (DbmPropagation) ¶
package main import ( "log" sqltrace "github.com/DataDog/dd-trace-go/contrib/database/sql/v2" "github.com/DataDog/dd-trace-go/v2/ddtrace/tracer" "github.com/lib/pq" ) func main() { // The first step is to set the dbm propagation mode when registering the driver. Note that this can also // be done on sqltrace.Open for more granular control over the feature. sqltrace.Register("postgres", &pq.Driver{}, sqltrace.WithDBMPropagation(tracer.DBMPropagationModeFull)) // Followed by a call to Open. db, err := sqltrace.Open("postgres", "postgres://pqgotest:password@localhost/pqgotest?sslmode=disable") if err != nil { log.Fatal(err) } // Then, we continue using the database/sql package as we normally would, with tracing. rows, err := db.Query("SELECT name FROM users WHERE age=?", 27) if err != nil { log.Fatal(err) } defer rows.Close() }
Output:
Example (Sqlite) ¶
package main import ( "context" "log" sqltrace "github.com/DataDog/dd-trace-go/contrib/database/sql/v2" "github.com/DataDog/dd-trace-go/v2/ddtrace/tracer" sqlite "github.com/mattn/go-sqlite3" ) func main() { // Register the driver that we will be using (in this case Sqlite) under a custom service name. sqltrace.Register("sqlite", &sqlite.SQLiteDriver{}, sqltrace.WithService("sqlite-example")) // Open a connection to the DB using the driver we've just registered with tracing. db, err := sqltrace.Open("sqlite", "./test.db") if err != nil { log.Fatal(err) } // Create a root span, giving name, server and resource. span, ctx := tracer.StartSpanFromContext(context.Background(), "my-query", tracer.SpanType("example"), tracer.ServiceName("sqlite-example"), tracer.ResourceName("initial-access"), ) // Subsequent spans inherit their parent from context. rows, err := db.QueryContext(ctx, "SELECT * FROM city LIMIT 5") if err != nil { log.Fatal(err) } rows.Close() span.Finish(tracer.WithError(err)) }
Output:
Index ¶
- Constants
- func Open(driverName, dataSourceName string, opts ...Option) (*sql.DB, error)
- func OpenDB(c driver.Connector, opts ...Option) *sql.DB
- func Register(driverName string, driver driver.Driver, opts ...Option)
- func WithSpanTags(ctx context.Context, tags map[string]string) context.Context
- type Option
- type OptionFn
- func WithAnalytics(on bool) OptionFn
- func WithAnalyticsRate(rate float64) OptionFn
- func WithChildSpansOnly() OptionFn
- func WithCustomTag(key string, value interface{}) OptionFn
- func WithDBMPropagation(mode tracer.DBMPropagationMode) OptionFn
- func WithDBStats() OptionFn
- func WithDSN(name string) OptionFn
- func WithErrorCheck(fn func(err error) bool) OptionFn
- func WithIgnoreQueryTypes(qtypes ...QueryType) OptionFn
- func WithService(name string) OptionFn
- type QueryType
- type TracedConn
- func (tc *TracedConn) BeginTx(ctx context.Context, opts driver.TxOptions) (tx driver.Tx, err error)
- func (tc *TracedConn) CheckNamedValue(value *driver.NamedValue) error
- func (tc *TracedConn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (r driver.Result, err error)
- func (tc *TracedConn) Ping(ctx context.Context) (err error)
- func (tc *TracedConn) PrepareContext(ctx context.Context, query string) (stmt driver.Stmt, err error)
- func (tc *TracedConn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (rows driver.Rows, err error)
- func (tc *TracedConn) ResetSession(ctx context.Context) error
- func (tc *TracedConn) WrappedConn() driver.Conn
Examples ¶
Constants ¶
const ( // QueryTypeConnect is used for Connect traces. QueryTypeConnect QueryType = "Connect" // QueryTypeQuery is used for Query traces. QueryTypeQuery = "Query" // QueryTypePing is used for Ping traces. QueryTypePing = "Ping" // QueryTypePrepare is used for Prepare traces. QueryTypePrepare = "Prepare" // QueryTypeExec is used for Exec traces. QueryTypeExec = "Exec" // QueryTypeBegin is used for Begin traces. QueryTypeBegin = "Begin" // QueryTypeClose is used for Close traces. QueryTypeClose = "Close" // QueryTypeCommit is used for Commit traces. QueryTypeCommit = "Commit" // QueryTypeRollback is used for Rollback traces. QueryTypeRollback = "Rollback" )
const ( MaxOpenConnections = tracerPrefix + "sql.db.connections.max_open" OpenConnections = tracerPrefix + "sql.db.connections.open" InUse = tracerPrefix + "sql.db.connections.in_use" Idle = tracerPrefix + "sql.db.connections.idle" WaitCount = tracerPrefix + "sql.db.connections.waiting" WaitDuration = tracerPrefix + "sql.db.connections.wait_duration" MaxIdleClosed = tracerPrefix + "sql.db.connections.closed.max_idle_conns" MaxIdleTimeClosed = tracerPrefix + "sql.db.connections.closed.max_idle_time" MaxLifetimeClosed = tracerPrefix + "sql.db.connections.closed.max_lifetime" )
Variables ¶
This section is empty.
Functions ¶
func Open ¶
Open returns connection to a DB using the traced version of the given driver. The driver may first be registered using Register. If this did not occur, Open will determine the driver by opening a DB connection and retrieving the driver using (*sql.DB).Driver, before closing it and opening a new, traced connection.
func OpenDB ¶
OpenDB returns connection to a DB using the traced version of the given driver. The driver may first be registered using Register. If this did not occur, OpenDB will determine the driver name based on its type.
Types ¶
type Option ¶
type Option interface {
// contains filtered or unexported methods
}
Option describes options for the database/sql integration.
type OptionFn ¶
type OptionFn func(*config)
OptionFn represents options applicable to Register, Open or OpenDB.
func WithAnalytics ¶
WithAnalytics enables Trace Analytics for all started spans.
func WithAnalyticsRate ¶
WithAnalyticsRate sets the sampling rate for Trace Analytics events correlated to started spans.
func WithChildSpansOnly ¶
func WithChildSpansOnly() OptionFn
WithChildSpansOnly causes spans to be created only when there is an existing parent span in the Context.
func WithCustomTag ¶
WithCustomTag will attach the value to the span tagged by the key
func WithDBMPropagation ¶
func WithDBMPropagation(mode tracer.DBMPropagationMode) OptionFn
WithDBMPropagation enables injection of tags as sql comments on traced queries. This includes dynamic values like span id, trace id and the sampled flag which can make queries unique for some cache implementations. Use DBMPropagationModeService if this is a concern.
Note that enabling sql comment propagation results in potentially confidential data (service names) being stored in the databases which can then be accessed by other 3rd parties that have been granted access to the database.
func WithDBStats ¶
func WithDBStats() OptionFn
WithDBStats enables polling of DBStats metrics ref: https://pkg.go.dev/database/sql#DBStats These metrics are submitted to Datadog and are not billed as custom metrics
func WithDSN ¶
WithDSN allows the data source name (DSN) to be provided when using OpenDB and a driver.Connector. The value is used to automatically set tags on spans.
func WithErrorCheck ¶
WithErrorCheck specifies a function fn which determines whether the passed error should be marked as an error. The fn is called whenever a database/sql operation finishes with an error
func WithIgnoreQueryTypes ¶
WithIgnoreQueryTypes specifies the query types for which spans should not be created.
func WithService ¶
WithService sets the given service name when registering a driver, or opening a database connection.
type QueryType ¶
type QueryType string
QueryType represents the different available traced db queries.
type TracedConn ¶
TracedConn holds a traced connection with tracing parameters.
func (*TracedConn) BeginTx ¶
BeginTx starts a transaction.
The provided context is used until the transaction is committed or rolled back. If the context is canceled, the sql package will roll back the transaction. Tx.Commit will return an error if the context provided to BeginTx is canceled.
The provided TxOptions is optional and may be nil if defaults should be used. If a non-default isolation level is used that the driver doesn't support, an error will be returned.
func (*TracedConn) CheckNamedValue ¶
func (tc *TracedConn) CheckNamedValue(value *driver.NamedValue) error
CheckNamedValue is called before passing arguments to the driver and is called in place of any ColumnConverter. CheckNamedValue must do type validation and conversion as appropriate for the driver.
func (*TracedConn) ExecContext ¶
func (tc *TracedConn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (r driver.Result, err error)
ExecContext executes a query without returning any rows. The args are for any placeholder parameters in the query.
func (*TracedConn) Ping ¶
func (tc *TracedConn) Ping(ctx context.Context) (err error)
Ping verifies the connection to the database is still alive.
func (*TracedConn) PrepareContext ¶
func (tc *TracedConn) PrepareContext(ctx context.Context, query string) (stmt driver.Stmt, err error)
PrepareContext creates a prepared statement for later queries or executions. Multiple queries or executions may be run concurrently from the returned statement. The caller must call the statement's Close method when the statement is no longer needed.
The provided context is used for the preparation of the statement, not for the execution of the statement.
func (*TracedConn) QueryContext ¶
func (tc *TracedConn) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (rows driver.Rows, err error)
QueryContext executes a query that returns rows, typically a SELECT. The args are for any placeholder parameters in the query.
func (*TracedConn) ResetSession ¶
func (tc *TracedConn) ResetSession(ctx context.Context) error
ResetSession implements driver.SessionResetter
func (*TracedConn) WrappedConn ¶
func (tc *TracedConn) WrappedConn() driver.Conn
WrappedConn returns the wrapped connection object.