Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

This guide assumes that you have configured Database Monitoring.

Datadog Database Monitoring (DBM) allows you to view explain plans and query samples running on your database hosts. This guide shows you how to add tags as SQL comments to your database queries, which can then be surfaced and leveraged in DBM.

Before you begin

Supported databases
Postgres, MySQL, SQL Server
Supported Agent versions
7.36.1+
Supported tagging formats
sqlcommenter, marginalia

Manual tag injection

Using any database API supporting execution of SQL statements, add a comment in your statement with tags formatted as per the sqlcommenter or marginalia formats.

/*key='val'*/ SELECT * from FOO

Separate multiple tags with commas:

/*key1='val1',key2='val2'*/ SELECT * from FOO

Full example:

import (
	"database/sql"		
)

func main() {	
	db, err := sql.Open("postgres", "postgres://pqgotest:password@localhost/pqgotest?sslmode=disable")
	if err != nil {
		log.Fatal(err)
	}

	// Tag SQL statement with key:val
	rows, err := db.Query("/*key='val'*/ SELECT * from FOO")
	if err != nil {
		log.Fatal(err)
	}
	defer rows.Close()
}

Explore the tags in DBM

On the Samples page, filter the Explain Plans and Query Samples views by custom tag.

Filter explain plans by custom tag.

You can also view a timeseries of explain plan costs filtered by tag.

Explain plan cost by custom tag.

When you select a query, the custom tags are shown on the Sample Details page under Propagated Tags.

View custom tags on explain plans.