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
@@ -32,22 +32,22 @@ Users are given control over what tags they want to append by using `core.Commen
32
32
33
33
```go
34
34
typeCommenterOptionsstruct {
35
-
EnableDBDriverbool
36
-
EnableTraceparentbool// OpenTelemetry trace information
37
-
EnableRoutebool// applicable for web frameworks
38
-
EnableFrameworkbool// applicable for web frameworks
39
-
EnableControllerbool// applicable for web frameworks
40
-
EnableActionbool// applicable for web frameworks
41
-
EnableApplicationbool// applicable for web frameworks
35
+
EnableDBDriverbool
36
+
EnableTraceparentbool// OpenTelemetry trace information
37
+
EnableRoutebool// applicable for web frameworks
38
+
EnableFrameworkbool// applicable for web frameworks
39
+
EnableControllerbool// applicable for web frameworks
40
+
EnableActionbool// applicable for web frameworks
41
+
EnableApplicationbool// applicable for web frameworks
42
42
}
43
43
```
44
44
45
-
Users can also provide static tags they want to use by using `core.StaticTags` struct. These tags are optional
45
+
Users can also provide static tags they want to use by using `core.StaticTags` struct. These tags are optional. If not provided, the `Application` tag will get auto-populated from the user-project's module-name in `go.mod`. `DriverName` is set to the driver-name provided in `gosql.Open(driverName, ...)` call.
0 commit comments