You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're going to matching the otel db conventions. Either one of server.address or server.socket.address is required. If server.address is set, then server.port should be set. If server.port is different than server.socket.port, than server.socket.port should also be set. In addition, db.name should be set if possible. db.system should match the list in OpenTelemetry's well known conventions.
Attribute
Type
Description
Examples
Requirement Level
server.address
string
Name of the database host.
example.com
Conditionally Required: See alternative attributes below.
server.port
int
Logical server port number
80; 8080; 443
Conditionally Required: [1]
server.socket.address
string
Physical server IP address or Unix socket address.
10.5.3.2
See below
server.socket.port
int
Physical server port.
16456
Recommended: If different than server.port.
These values should be set on span.data.
The text was updated successfully, but these errors were encountered:
@AbhiPrasad are any of these remaining attributes required soon / is there any date you'd like to have them by? Otherwise I'll just put this in the backlog to do at some point but without urgency.
Description
Follow-up from #2893
We're going to matching the otel db conventions. Either one of
server.address
orserver.socket.address
is required. Ifserver.address
is set, thenserver.port
should be set. Ifserver.port
is different thanserver.socket.port
, thanserver.socket.port
should also be set. In addition,db.name
should be set if possible.db.system
should match the list in OpenTelemetry's well known conventions.server.address
example.com
server.port
80
;8080
;443
server.socket.address
10.5.3.2
server.socket.port
16456
server.port
.These values should be set on
span.data
.The text was updated successfully, but these errors were encountered: