Skip to content

Latest commit

 

History

History
223 lines (176 loc) · 12 KB

File metadata and controls

223 lines (176 loc) · 12 KB

Semantic conventions for database client calls

Span kind: MUST always be CLIENT.

The span name SHOULD be set to a low cardinality value representing the statement executed on the database. It may be a stored procedure name (without arguments), SQL statement without variable arguments, operation name, etc. When it's otherwise impossible to get any meaningful span name, db.name or the tech-specific database name MAY be used.

Connection-level attributes

These attributes will usually be the same for all operations performed over the same database connection. Some database systems may allow a connection to switch to a different db.user, for example, and other database systems may not even have the concept of a connection at all.

Attribute Type Description Example Required
db.system string An identifier for the database management system (DBMS) product being used. See below for a list of well-known identifiers. other_sql Yes
db.connection_string string The connection string used to connect to the database. It is recommended to remove embedded credentials. Server=(localdb)\v11.0;Integrated Security=true; No
db.user string Username for accessing the database. readonly_user
reporting_user
No
net.peer.ip string Remote address of the peer (dotted decimal for IPv4 or RFC5952 for IPv6) 127.0.0.1 Conditional
See below.
net.peer.name string Remote hostname or similar, see note below. example.com Conditional
See below.
net.peer.port number Remote port number. 80
8080
443
Conditional [1]
net.transport string enum Transport protocol used. See note below. IP.TCP Conditional [2]

[1]: Required if using a port other than the default port for this DBMS.

[2]: Recommended in general, required for in-process databases ("inproc").

Additional attribute requirements: At least one of the following sets of attributes is required:

db.system MUST be one of the following or, if none of the listed values apply, a custom value:

Value Description
other_sql Some other SQL database. Fallback only. See notes.
mssql Microsoft SQL Server
mysql MySQL
oracle Oracle Database
db2 IBM Db2
postgresql PostgreSQL
redshift Amazon Redshift
hive Apache Hive
cloudscape Cloudscape
hsqlsb HyperSQL DataBase
progress Progress Database
maxdb SAP MaxDB
hanadb SAP HANA
ingres Ingres
firstsql FirstSQL
edb EnterpriseDB
cache InterSystems Caché
adabas Adabas (Adaptable Database System)
firebird Firebird
derby Apache Derby
filemaker FileMaker
informix Informix
instantdb InstantDB
interbase InterBase
mariadb MariaDB
netezza Netezza
pervasive Pervasive PSQL
pointbase PointBase
sqlite SQLite
sybase Sybase
teradata Teradata
vertica Vertica
h2 H2
coldfusion ColdFusion IMQ
cassandra Apache Cassandra
hbase Apache HBase
mongodb MongoDB
redis Redis
couchbase Couchbase
couchdb CouchDB
cosmosdb Microsoft Azure Cosmos DB
dynamodb Amazon DynamoDB
neo4j Neo4j

Notes and well-known identifiers for db.system

The list above is a non-exhaustive list of well-known identifiers to be specified for db.system.

If a value defined in this list applies to the DBMS to which the request is sent, this value MUST be used. If no value defined in this list is suitable, a custom value MUST be provided. This custom value MUST be the name of the DBMS in lowercase and without a version number to stay consistent with existing identifiers.

It is encouraged to open a PR towards this specification to add missing values to the list, especially when instrumentations for those missing databases are written. This allows multiple instrumentations for the same database to be aligned and eases analyzing for backends.

The value other_sql is intended as a fallback and MUST only be used if the DBMS is known to be SQL-compliant but the concrete product is not known to the instrumentation. If the concrete DBMS is known to the instrumentation, its specific identifier MUST be used.

Back ends could, for example, use the provided identifier to determine the appropriate SQL dialect for parsing the db.statement.

When additional attributes are added that only apply to a specific DBMS, its identifier SHOULD be used as a namespace in the attribute key as for the attributes in the sections below.

Connection-level attributes for specific technologies

Attribute Type Description Example Required
db.jdbc.driver_classname string The fully-qualified class name of the Java Database Connectivity (JDBC) driver used to connect. org.postgresql.Driver
com.microsoft.sqlserver.jdbc.SQLServerDriver
No
db.mssql.instance_name string The Microsoft SQL Server instance name connecting to. This name is used to determine the port of a named instance. [1] MSSQLSERVER No

[1]: If setting a db.mssql.instance_name, net.peer.port is no longer required (but still recommended if non-standard).

Call-level attributes

These attributes may be different for each operation performed, even if the same connection is used for multiple operations. Usually only one db.name will be used per connection though.

Attribute Type Description Example Required
db.name string If no tech-specific attribute is defined, this attribute is used to report the name of the database being accessed. For commands that switch the database, this should be set to the target database (even if the command fails). [1] customers
main
Conditional [2]
db.statement string The database statement being executed. [3] SELECT * FROM wuser_table
SET mykey "WuValue"
Conditional
Required if applicable.
db.operation string The name of the operation being executed, e.g. the MongoDB command name such as findAndModify. [4] findAndModify
HMSET
Conditional
Required, if db.statement is not applicable.

[1]: In some SQL databases, the database name to be used is called "schema name".

[2]: Required, if applicable and no more-specific attribute is defined.

[3]: The value may be sanitized to exclude sensitive information.

[4]: While it would semantically make sense to set this, e.g., to a SQL keyword like SELECT or INSERT, it is not recommended to attempt any client-side parsing of db.statement just to get this property (the back end can do that if required).

For Redis, the value provided for db.statement SHOULD correspond to the syntax of the Redis CLI. If, for example, the HMSET command is invoked, "HMSET myhash field1 'Hello' field2 'World'" would be a suitable value for db.statement.

In CouchDB, db.operation should be set to the HTTP method + the target REST route according to the API reference documentation. For example, when retrieving a document, db.operation would be set to (literally, i.e., without replacing the placeholders with concrete values): GET /{db}/{docid}.

Call-level attributes for specific technologies

Attribute Type Description Example Required
db.cassandra.keyspace string The name of the keyspace being accessed. To be used instead of the generic db.name attribute. mykeyspace Yes
db.hbase.namespace string The HBase namespace being accessed. To be used instead of the generic db.name attribute. default Yes
db.redis.database_index number The index of the database being accessed as used in the SELECT command, provided as an integer. To be used instead of the generic db.name attribute. 0
1
15
Conditional [1]
db.mongodb.collection string The collection being accessed within the database stated in db.name. customers
products
Yes

[1]: Required, if other than the default database (0).

Examples

MySQL

Key Value
Span name "SELECT * FROM orders WHERE order_id = ?"
db.system "mysql"
db.connection_string "Server=shopdb.example.com;Database=ShopDb;Uid=billing_user;TableCache=true;UseCompression=True;MinimumPoolSize=10;MaximumPoolSize=50;"
db.user "billing_user"
net.peer.name "shopdb.example.com"
net.peer.ip "192.0.2.12"
net.peer.port 3306
net.transport "IP.TCP"
db.name "ShopDb"
db.statement "SELECT * FROM orders WHERE order_id = 'o4711'"
db.operation not set

Redis

In this example, Redis is connected using a unix domain socket and therefore the connection string and net.peer.ip are left out. Furthermore, db.name is not specified as there is no database name in Redis and db.redis.database_index is set instead.

Key Value
Span name "HMSET myhash"
db.system "redis"
db.connection_string not set
db.user not set
net.peer.name "/tmp/redis.sock"
net.transport "Unix"
db.name not set
db.statement "HMSET myhash field1 'Hello' field2 'World"
db.operation not set
db.redis.database_index 15

MongoDB

Key Value
Span name "products.findAndModify"
db.system "mongodb"
db.connection_string not set
db.user "the_user"
net.peer.name "mongodb0.example.com"
net.peer.ip "192.0.2.14"
net.peer.port 27017
net.transport "IP.TCP"
db.name "shopDb"
db.statement not set
db.operation "findAndModify"
db.mongodb.collection "products"