16 lines
542 B
Go
16 lines
542 B
Go
package ext
|
|
|
|
const (
|
|
// DBApplication indicates the application using the database.
|
|
DBApplication = "db.application"
|
|
// DBName indicates the database name.
|
|
DBName = "db.name"
|
|
// DBType indicates the type of Database.
|
|
DBType = "db.type"
|
|
// DBInstance indicates the instance name of Database.
|
|
DBInstance = "db.instance"
|
|
// DBUser indicates the user name of Database, e.g. "readonly_user" or "reporting_user".
|
|
DBUser = "db.user"
|
|
// DBStatement records a database statement for the given database type.
|
|
DBStatement = "db.statement"
|
|
)
|