[BUG] dd-trace-go/v2 oddly orchestrated with SQLServer
Version of orchestrion
v1.4.0
Describe what happened:
Tested out a deployment with v1.4.0 built go application with the following orchestrion.tools.go
//go:build tools
package tools
import (
_ "github.com/DataDog/dd-trace-go/contrib/confluentinc/confluent-kafka-go/kafka.v2/v2" // integration
_ "github.com/DataDog/dd-trace-go/contrib/database/sql/v2" // integration
_ "github.com/DataDog/dd-trace-go/contrib/go-chi/chi.v5/v2" // integration
_ "github.com/DataDog/dd-trace-go/contrib/google.golang.org/api/v2" // integration
_ "github.com/DataDog/dd-trace-go/contrib/google.golang.org/grpc/v2" // integration
_ "github.com/DataDog/dd-trace-go/contrib/gorm.io/gorm.v1/v2" // integration
_ "github.com/DataDog/dd-trace-go/contrib/jackc/pgx.v5/v2" // integration
_ "github.com/DataDog/dd-trace-go/contrib/net/http/v2" // integration
_ "github.com/DataDog/orchestrion" // integration
)
Note: I use pgx with gorm as my Postgres driver (I don't use any other DBMS)
Describe what you expected:
I expected DataDog tracer startup to show all features and respect DBM_PROPAGATION_MODE=full as an environment variable
2025/06/10 19:01:22 Datadog Tracer v2.0.0 WARN: Using DBM_PROPAGATION_MODE in 'full' mode is not supported for SQL Server, downgrading to 'service' mode. See https://docs.datadoghq.com/database_monitoring/connect_dbm_and_apm/ for more info.
This shows up in the k8s pod logs, and no startup logs end up showing.
Steps to reproduce the issue:
I'll have to figure out a smaller reproducible build of code to demonstrate the problem, but hopefully I'll be able to point to a repository soon once I can verify that indeed it's a problem with how orchestrion has orchestrated the build.
Additional environment details (Version of Go, Operating System, etc.):
Go 1.24
OS: linux/amd64
Using go tools installed orchestrion.
👋 Hello, thanks for taking the time to write this issue.
The warning comes from our database/sql driver registration code. This should not have any impact on you if you are not using SQL Server but I will contact the owner of this code in dd-trace-go just in case.
In the meantime and if you really need to remove this log, you can remove the database/sql import line from your orchestrion configuration file.
Another option could also be to try to understand why an SQL server client ended up un your dependency tree and trying to remove it.
To be clear, the bug with this is that the driver shouldn't be considered sqlserver and the re-assignment of the DBM_PROPAGATION_MODE leads to missing trace ids included in sql comments per this block of code.
Correct me if I'm wrong, but what that means is the sql query doesn't get associated with the respective trace from the application.
Hello @gabizou 👋
As @eliottness says, this warning comes from the database/sql integration. DBM is not supported with pgx, so if you want to use it, the current workaround is to use pgx through database/sql.
As for the warning you are seeing, Orchestrion instruments your dependencies as well, so it could also be possible that one of your dependencies is running sql.Register with a driver identified as SQL Server. Could you confirm if this is the case?
Also regarding the startup log missing, that is unexpected, as that log is just a warning and should not make the tracer crash or not start at all. Could you confirm if you are getting traces? or it is just DBM that is not working?
Right, I full well understand that DBM is not supported directly through pgx, we've been manually instrumenting pgx + gorm as the driver as below:
import (
sqltrace "github.com/DataDog/dd-trace-go/contrib/database/sql/v2"
gormtrace "github.com/DataDog/dd-trace-go/contrib/gorm.io/gorm.v1/v2"
"gorm.io/driver/postgres"
"gorm.io/gorm"
)
func instantiateGormTraced(postgresConfig *postgres.Config, gormConfig *gorm.Config) (*gorm.DB, error) {
open, err := sqltrace.Open(postgresConfig.DriverName, postgresConfig.DSN)
if err != nil {
return nil, err
}
postgresConfig.Conn = open
return gormtrace.Open(
postgres.New(*postgresConfig),
gormConfig,
)
}
and so I believed that the orchestrated dependencies would've instrumented this bit of dependency code:
import (
"gorm.io/driver/postgres"
"gorm.io/gorm"
)
func OpenGorm(postgresConfig *postgres.Config, gormConfig *gorm.Config, _ string) (*gorm.DB, error) {
return gorm.Open(
postgres.New(*postgresConfig),
gormConfig,
)
}
Would this have not done the same thing?
The latest piece of code you shared will be instrumented by Orchestrion this way:
import (
"gorm.io/driver/postgres"
"gorm.io/gorm"
gormtrace "github.com/DataDog/dd-trace-go/contrib/gorm.io/gorm.v1/v2"
)
func OpenGorm(postgresConfig *postgres.Config, gormConfig *gorm.Config, _ string) (*gorm.DB, error) {
db, err := gorm.Open(
postgres.New(*postgresConfig),
gormConfig,
)
if err != nil {
return nil, err
}
if err := db.Use(gormtrace.NewTracePlugin()); err != nil {
return nil, err
}
return db, nil
}
Which is different to the first instrumented snippet you shared. If you want an equivalent with Orchestrion, you would need to add those initial sql.Open + postgresConfig.Conn = open statements.
I've tried to reproduce this setup using the default values in gorm with the postgres driver, and I couldn't have success (comments are injected properly and I get no warnings).
The DBM Full mode check happens in this function, so it would be helpful if you could share the following:
- The name you are using to register the driver.
- The driver type.
- Whether your DSN starts with
oracle://orsqlserver://
Hi, sorry for the delay in a response:
We have the following for our "driver registration":
func NewPostgresDriver() DriverRegistration {
return func(_ *DBConfig) string {
contains := false
d := stdlib.GetDefaultDriver()
const pgxDriverName = "pgx"
for _, driver := range sql.Drivers() {
if driver == pgxDriverName {
contains = true
break
}
}
if !contains {
sql.Register(pgxDriverName, d)
}
return pgxDriverName
}
}
and the following for using cloudsql via pgx:
package cloudsql
import (
"context"
"database/sql"
"repository/v2/dep"
"cloud.google.com/go/cloudsqlconn"
"cloud.google.com/go/cloudsqlconn/postgres/pgxv5"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"go.uber.org/fx"
)
const _cloudsqlDriverName = "cloudsql-postgres"
func NewCloudSQLPostgresDriver(lc fx.Lifecycle, logger log.Logger) (dep.DriverRegistration, error) {
// This check verifies we're not calling ourselves twice, which can happen in some testing cases
registered := false
for _, driver := range sql.Drivers() {
if _cloudsqlDriverName == driver {
registered = true
break
}
}
if registered {
return func(config *dep.DBConfig) string {
return _cloudsqlDriverName
}, nil
}
cleanup, err := pgxv5.RegisterDriver(
_cloudsqlDriverName,
cloudsqlconn.WithIAMAuthN(),
)
if err != nil {
_ = level.Error(logger).Log("during", "pgxv5.RegisterDriver()", "err", err)
return nil, err
}
lc.Append(fx.Hook{
OnStop: func(context.Context) error {
_ = level.Info(logger).Log("msg", "cleaning up pgx driver")
return cleanup()
},
})
return func(config *dep.DBConfig) string {
return _cloudsqlDriverName
}, nil
}
Where DriverRegistration simply provides the registered driver's name, which either is pgx or cloudsql-postgres.
Our DSN is a fmt.Sprintf'ed string:
sslMode := "disable"
format := "host=%s user=%s password=%s dbname=%s port=%d search_path=%s sslmode=%s TimeZone=America/Los_Angeles"
dsn := fmt.Sprintf(format, conf.Host, conf.User, conf.Password, conf.Name, conf.Port, conf.SearchPath, sslMode)
And finally, how we construct the gorm configuration:
&postgres.Config{
DSN: dsn,
DriverName: driverName,
},
&gorm.Config{
Logger: gl.Default.LogMode(ll),
NowFunc: func() time.Time { return time.Now().UTC() },
},
So really, nothing that I can see how it'd indicate it's using SQLServer or Oracle.
Hi @gabizou ,
Could you share the output of the go list command from your project directory? If it shows a package related to a SQL Server driver, that might explain why Orchestrion's automatic instrumentation is triggering the contrib.
If you'd prefer to just remove the log, you can disable automatic instrumentation and rely solely on your custom instrumentation. To do that, just remove this line from your orchestrion.tool.go file:
_ "github.com/DataDog/dd-trace-go/contrib/database/sql/v2"
Let us know what you find!
Could you share the output of the go list command from your project directory? If it shows a package related to a SQL Server driver, that might explain why Orchestrion's automatic instrumentation is triggering the contrib.
Sure, this is the full list:
Full list of modules
github.com/merit/issuance cel.dev/expr v0.19.2 cloud.google.com/go v0.118.3 cloud.google.com/go/accessapproval v1.8.3 cloud.google.com/go/accesscontextmanager v1.9.3 cloud.google.com/go/aiplatform v1.74.0 cloud.google.com/go/analytics v0.26.0 cloud.google.com/go/apigateway v1.7.3 cloud.google.com/go/apigeeconnect v1.7.3 cloud.google.com/go/apigeeregistry v0.9.3 cloud.google.com/go/appengine v1.9.3 cloud.google.com/go/area120 v0.9.3 cloud.google.com/go/artifactregistry v1.16.1 cloud.google.com/go/asset v1.20.4 cloud.google.com/go/assuredworkloads v1.12.3 cloud.google.com/go/auth v0.15.0 cloud.google.com/go/auth/oauth2adapt v0.2.7 cloud.google.com/go/automl v1.14.4 cloud.google.com/go/baremetalsolution v1.3.3 cloud.google.com/go/batch v1.12.0 cloud.google.com/go/beyondcorp v1.1.3 cloud.google.com/go/bigquery v1.66.2 cloud.google.com/go/bigtable v1.35.0 cloud.google.com/go/billing v1.20.1 cloud.google.com/go/binaryauthorization v1.9.3 cloud.google.com/go/certificatemanager v1.9.3 cloud.google.com/go/channel v1.19.2 cloud.google.com/go/cloudbuild v1.22.0 cloud.google.com/go/clouddms v1.8.4 cloud.google.com/go/cloudsqlconn v1.14.0 cloud.google.com/go/cloudtasks v1.13.3 cloud.google.com/go/compute v1.34.0 cloud.google.com/go/compute/metadata v0.6.0 cloud.google.com/go/contactcenterinsights v1.17.1 cloud.google.com/go/container v1.42.2 cloud.google.com/go/containeranalysis v0.13.3 cloud.google.com/go/datacatalog v1.24.3 cloud.google.com/go/dataflow v0.10.3 cloud.google.com/go/dataform v0.10.3 cloud.google.com/go/datafusion v1.8.3 cloud.google.com/go/datalabeling v0.9.3 cloud.google.com/go/dataplex v1.22.0 cloud.google.com/go/dataproc/v2 v2.11.0 cloud.google.com/go/dataqna v0.9.3 cloud.google.com/go/datastore v1.20.0 cloud.google.com/go/datastream v1.13.0 cloud.google.com/go/deploy v1.26.2 cloud.google.com/go/dialogflow v1.66.0 cloud.google.com/go/dlp v1.21.0 cloud.google.com/go/documentai v1.35.2 cloud.google.com/go/domains v0.10.3 cloud.google.com/go/edgecontainer v1.4.1 cloud.google.com/go/errorreporting v0.3.2 cloud.google.com/go/essentialcontacts v1.7.3 cloud.google.com/go/eventarc v1.15.1 cloud.google.com/go/filestore v1.9.3 cloud.google.com/go/firestore v1.18.0 cloud.google.com/go/functions v1.19.3 cloud.google.com/go/gkebackup v1.6.3 cloud.google.com/go/gkeconnect v0.12.1 cloud.google.com/go/gkehub v0.15.3 cloud.google.com/go/gkemulticloud v1.5.1 cloud.google.com/go/gsuiteaddons v1.7.4 cloud.google.com/go/iam v1.4.1 cloud.google.com/go/iap v1.10.3 cloud.google.com/go/ids v1.5.3 cloud.google.com/go/iot v1.8.3 cloud.google.com/go/kms v1.21.0 cloud.google.com/go/language v1.14.3 cloud.google.com/go/lifesciences v0.10.3 cloud.google.com/go/logging v1.13.0 cloud.google.com/go/longrunning v0.6.5 cloud.google.com/go/managedidentities v1.7.3 cloud.google.com/go/maps v1.19.0 cloud.google.com/go/mediatranslation v0.9.3 cloud.google.com/go/memcache v1.11.3 cloud.google.com/go/metastore v1.14.3 cloud.google.com/go/monitoring v1.24.0 cloud.google.com/go/networkconnectivity v1.16.1 cloud.google.com/go/networkmanagement v1.18.0 cloud.google.com/go/networksecurity v0.10.3 cloud.google.com/go/notebooks v1.12.3 cloud.google.com/go/optimization v1.7.3 cloud.google.com/go/orchestration v1.11.4 cloud.google.com/go/orgpolicy v1.14.2 cloud.google.com/go/osconfig v1.14.3 cloud.google.com/go/oslogin v1.14.3 cloud.google.com/go/phishingprotection v0.9.3 cloud.google.com/go/policytroubleshooter v1.11.3 cloud.google.com/go/privatecatalog v0.10.4 cloud.google.com/go/pubsub v1.47.0 cloud.google.com/go/pubsublite v1.8.2 cloud.google.com/go/recaptchaenterprise/v2 v2.19.4 cloud.google.com/go/recommendationengine v0.9.3 cloud.google.com/go/recommender v1.13.3 cloud.google.com/go/redis v1.18.0 cloud.google.com/go/resourcemanager v1.10.3 cloud.google.com/go/resourcesettings v1.8.3 cloud.google.com/go/retail v1.19.2 cloud.google.com/go/run v1.9.0 cloud.google.com/go/scheduler v1.11.4 cloud.google.com/go/secretmanager v1.14.5 cloud.google.com/go/security v1.18.3 cloud.google.com/go/securitycenter v1.36.0 cloud.google.com/go/servicedirectory v1.12.3 cloud.google.com/go/shell v1.8.3 cloud.google.com/go/spanner v1.76.1 cloud.google.com/go/speech v1.26.0 cloud.google.com/go/storage v1.51.0 cloud.google.com/go/storagetransfer v1.12.1 cloud.google.com/go/talent v1.8.0 cloud.google.com/go/texttospeech v1.11.0 cloud.google.com/go/tpu v1.8.0 cloud.google.com/go/trace v1.11.3 cloud.google.com/go/translate v1.12.3 cloud.google.com/go/video v1.23.3 cloud.google.com/go/videointelligence v1.12.3 cloud.google.com/go/vision/v2 v2.9.3 cloud.google.com/go/vmmigration v1.8.3 cloud.google.com/go/vmwareengine v1.3.3 cloud.google.com/go/vpcaccess v1.8.3 cloud.google.com/go/webrisk v1.10.3 cloud.google.com/go/websecurityscanner v1.7.3 cloud.google.com/go/workflows v1.13.3 dario.cat/mergo v1.0.0 filippo.io/edwards25519 v1.1.0 github.com/99designs/gqlgen v0.17.37 github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 github.com/AlecAivazis/survey/v2 v2.3.7 github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0 github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.1.0 github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.0 github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 github.com/Azure/go-ntlmssp v0.0.0-20200615164410-66371956d46c github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 github.com/BurntSushi/toml v1.4.0 github.com/DATA-DOG/go-sqlmock v1.5.2 github.com/DataDog/appsec-internal-go v1.11.2 github.com/DataDog/datadog-agent/comp/core/tagger/origindetection v0.64.2 github.com/DataDog/datadog-agent/comp/trace/compression/def v0.64.2 github.com/DataDog/datadog-agent/comp/trace/compression/impl-gzip v0.64.2 github.com/DataDog/datadog-agent/comp/trace/compression/impl-zstd v0.64.2 github.com/DataDog/datadog-agent/pkg/obfuscate v0.64.2 github.com/DataDog/datadog-agent/pkg/proto v0.64.2 github.com/DataDog/datadog-agent/pkg/remoteconfig/state v0.64.2 github.com/DataDog/datadog-agent/pkg/trace v0.64.2 github.com/DataDog/datadog-agent/pkg/util/cgroups v0.64.2 github.com/DataDog/datadog-agent/pkg/util/log v0.64.2 github.com/DataDog/datadog-agent/pkg/util/pointer v0.64.2 github.com/DataDog/datadog-agent/pkg/util/scrubber v0.64.2 github.com/DataDog/datadog-agent/pkg/version v0.64.2 github.com/DataDog/datadog-go/v5 v5.6.0 github.com/DataDog/dd-trace-go/contrib/99designs/gqlgen/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/IBM/sarama/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/Shopify/sarama/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/aws/aws-sdk-go-v2/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/aws/aws-sdk-go/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/bradfitz/gomemcache/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/cloud.google.com/go/pubsub.v1/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/confluentinc/confluent-kafka-go/kafka.v2/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/confluentinc/confluent-kafka-go/kafka/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/database/sql/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/dimfeld/httptreemux.v5/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/elastic/go-elasticsearch.v6/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/emicklei/go-restful.v3/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/envoyproxy/go-control-plane/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/gin-gonic/gin/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/globalsign/mgo/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/go-chi/chi.v5/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/go-chi/chi/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/go-pg/pg.v10/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/go-redis/redis.v7/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/go-redis/redis.v8/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/go-redis/redis/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/go.mongodb.org/mongo-driver/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/gocql/gocql/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/gofiber/fiber.v2/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/gomodule/redigo/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/google.golang.org/api/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/google.golang.org/grpc/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/gorilla/mux/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/gorm.io/gorm.v1/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/graph-gophers/graphql-go/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/graphql-go/graphql/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/hashicorp/consul/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/hashicorp/vault/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/jackc/pgx.v5/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/jmoiron/sqlx/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/julienschmidt/httprouter/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/k8s.io/client-go/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/labstack/echo.v4/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/log/slog/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/miekg/dns/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/net/http/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/olivere/elastic.v5/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/redis/go-redis.v9/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/redis/rueidis/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/segmentio/kafka-go/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/sirupsen/logrus/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/syndtr/goleveldb/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/tidwall/buntdb/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/twitchtv/twirp/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/uptrace/bun/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/urfave/negroni/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/valkey-io/valkey-go/v2 v2.0.0 github.com/DataDog/dd-trace-go/contrib/valyala/fasthttp/v2 v2.0.0 github.com/DataDog/dd-trace-go/instrumentation/testutils/grpc/v2 v2.0.0 github.com/DataDog/dd-trace-go/v2 v2.0.0 github.com/DataDog/go-libddwaf/v2 v2.2.3 github.com/DataDog/go-libddwaf/v3 v3.5.4 github.com/DataDog/go-runtime-metrics-internal v0.0.4-0.20250319104955-81009b9bad14 github.com/DataDog/go-sqllexer v0.1.3 github.com/DataDog/go-tuf v1.1.0-0.5.2 github.com/DataDog/gostackparse v0.7.0 github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.26.0 github.com/DataDog/orchestrion v1.4.0 github.com/DataDog/sketches-go v1.4.7 github.com/DataDog/zstd v1.5.6 github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.51.0 github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/cloudmock v0.51.0 github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.51.0 github.com/HdrHistogram/hdrhistogram-go v1.1.2 github.com/IBM/sarama v1.40.0 github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible github.com/Masterminds/goutils v1.1.1 github.com/Masterminds/semver/v3 v3.3.1 github.com/Masterminds/sprig/v3 v3.2.3 github.com/Microsoft/go-winio v0.6.2 github.com/Microsoft/hcsshim v0.11.5 github.com/NYTimes/gziphandler v1.1.1 github.com/OneOfOne/xxhash v1.2.2 github.com/PuerkitoBio/goquery v1.5.1 github.com/PuerkitoBio/rehttp v1.4.0 github.com/Shopify/sarama v1.38.1 github.com/Shopify/toxiproxy/v2 v2.5.0 github.com/Unleash/unleash-client-go/v4 v4.3.0 github.com/VividCortex/gohistogram v1.0.0 github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d github.com/actgardner/gogen-avro/v10 v10.2.1 github.com/actgardner/gogen-avro/v9 v9.1.0 github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5 github.com/agnivade/levenshtein v1.1.1 github.com/alecthomas/jsonschema v0.0.0-20180308105923-f2c93856175a github.com/alecthomas/kingpin/v2 v2.4.0 github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 github.com/andybalholm/brotli v1.0.6 github.com/andybalholm/cascadia v1.1.0 github.com/antihax/optional v1.0.0 github.com/antithesishq/antithesis-sdk-go v0.4.3-default-no-op github.com/antlr4-go/antlr/v4 v4.13.0 github.com/armon/go-metrics v0.4.1 github.com/armon/go-radix v1.0.0 github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 github.com/auth0/go-auth0 v1.16.0 github.com/auth0/go-jwt-middleware/v2 v2.3.0 github.com/aws/aws-sdk-go v1.44.327 github.com/aws/aws-sdk-go-v2 v1.32.7 github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.13 github.com/aws/aws-sdk-go-v2/config v1.27.10 github.com/aws/aws-sdk-go-v2/credentials v1.17.10 github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.63 github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.26 github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.26 github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 github.com/aws/aws-sdk-go-v2/internal/v4a v1.1.3 github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.8.1 github.com/aws/aws-sdk-go-v2/service/dynamodb v1.21.4 github.com/aws/aws-sdk-go-v2/service/eventbridge v1.20.4 github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.35 github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.7.34 github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.7 github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.15.3 github.com/aws/aws-sdk-go-v2/service/kinesis v1.18.4 github.com/aws/aws-sdk-go-v2/service/kms v1.30.1 github.com/aws/aws-sdk-go-v2/service/s3 v1.32.0 github.com/aws/aws-sdk-go-v2/service/sfn v1.19.4 github.com/aws/aws-sdk-go-v2/service/sns v1.21.4 github.com/aws/aws-sdk-go-v2/service/sqs v1.24.4 github.com/aws/aws-sdk-go-v2/service/sso v1.20.4 github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 github.com/aws/smithy-go v1.22.1 github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0 github.com/aymanbagabas/go-osc52/v2 v2.0.1 github.com/aymanbagabas/go-udiff v0.2.0 github.com/badoux/checkmail v1.2.4 github.com/bahlo/generic-list-go v0.2.0 github.com/benbjohnson/clock v1.1.0 github.com/beorn7/perks v1.0.1 github.com/bgentry/speakeasy v0.1.0 github.com/bitfield/gotestdox v0.2.2 github.com/bitly/go-hostpool v0.0.0-20171023180738-a3a6125de932 github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb github.com/bmatcuk/doublestar/v4 v4.8.0 github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 github.com/bmizerany/perks v0.0.0-20141205001514-d9a9656a3a4b github.com/bradfitz/gomemcache v0.0.0-20230611145640-acc696258285 github.com/brianvoe/gofakeit/v6 v6.15.0 github.com/bsm/ginkgo/v2 v2.9.5 github.com/bsm/gomega v1.26.0 github.com/bufbuild/protocompile v0.8.0 github.com/buger/goterm v1.0.4 github.com/buger/jsonparser v1.1.1 github.com/bytedance/sonic v1.12.0 github.com/bytedance/sonic/loader v0.2.0 github.com/c2h5oh/datasize v0.0.0-20171227191756-4eba002a5eae github.com/cactus/go-statsd-client/statsd v0.0.0-20200423205355-cb0885a1018c github.com/casbin/casbin/v2 v2.103.0 github.com/casbin/gorm-adapter/v3 v3.32.0 github.com/casbin/govaluate v1.3.0 github.com/cenkalti/backoff/v3 v3.2.2 github.com/cenkalti/backoff/v4 v4.3.0 github.com/census-instrumentation/opencensus-proto v0.2.1 github.com/cespare/xxhash v1.1.0 github.com/cespare/xxhash/v2 v2.3.0 github.com/charmbracelet/colorprofile v0.3.0 github.com/charmbracelet/lipgloss v1.1.0 github.com/charmbracelet/x/ansi v0.8.0 github.com/charmbracelet/x/cellbuf v0.0.13 github.com/charmbracelet/x/exp/golden v0.0.0-20240806155701-69247e0abc2a github.com/charmbracelet/x/term v0.2.1 github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 github.com/chzyer/logex v1.1.10 github.com/chzyer/readline v1.5.1 github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 github.com/clbanning/mxj v1.8.4 github.com/client9/misspell v0.3.4 github.com/cloudwego/base64x v0.1.4 github.com/cloudwego/iasm v0.2.0 github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4 github.com/cncf/xds/go v0.0.0-20250121191232-2f005788dc42 github.com/cockroachdb/apd v1.1.0 github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb github.com/compose-spec/compose-go/v2 v2.1.3 github.com/confluentinc/confluent-kafka-go v1.9.2 github.com/confluentinc/confluent-kafka-go/v2 v2.8.0 github.com/containerd/cgroups/v3 v3.0.5 github.com/containerd/console v1.0.4 github.com/containerd/containerd v1.7.18 github.com/containerd/continuity v0.4.3 github.com/containerd/errdefs v0.1.0 github.com/containerd/log v0.1.0 github.com/containerd/platforms v0.2.1 github.com/containerd/ttrpc v1.2.5 github.com/containerd/typeurl/v2 v2.1.1 github.com/coreos/go-oidc/v3 v3.10.0 github.com/coreos/go-semver v0.3.0 github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f github.com/coreos/go-systemd/v22 v22.5.0 github.com/cpuguy83/dockercfg v0.3.1 github.com/cpuguy83/go-md2man/v2 v2.0.6 github.com/creack/pty v1.1.9 github.com/dave/dst v0.27.3 github.com/dave/jennifer v1.7.1 github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 github.com/denisenkom/go-mssqldb v0.11.0 github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 github.com/dgryski/go-gk v0.0.0-20140819190930-201884a44051 github.com/dgryski/go-lttb v0.0.0-20180810165845-318fcdf10a77 github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f github.com/dimfeld/httptreemux/v5 v5.5.0 github.com/distribution/reference v0.6.0 github.com/dlclark/regexp2 v1.11.4 github.com/dnaeon/go-vcr v1.2.0 github.com/dnephin/pflag v1.0.7 github.com/docker/buildx v0.15.1 github.com/docker/cli v27.0.3+incompatible github.com/docker/compose/v2 v2.28.1 github.com/docker/distribution v2.8.3+incompatible github.com/docker/docker v27.1.1+incompatible github.com/docker/docker-credential-helpers v0.8.0 github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c github.com/docker/go-connections v0.5.0 github.com/docker/go-metrics v0.0.1 github.com/docker/go-units v0.5.0 github.com/dustin/go-humanize v1.0.1 github.com/eapache/go-resiliency v1.4.0 github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 github.com/eapache/queue v1.1.0 github.com/eapache/queue/v2 v2.0.0-20230407133247-75960ed334e4 github.com/ebitengine/purego v0.8.3 github.com/edsrzf/mmap-go v1.0.0 github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203 github.com/elastic/elastic-transport-go/v8 v8.1.0 github.com/elastic/go-elasticsearch/v6 v6.8.5 github.com/elastic/go-elasticsearch/v7 v7.17.1 github.com/elastic/go-elasticsearch/v8 v8.4.0 github.com/emicklei/go-restful v2.16.0+incompatible github.com/emicklei/go-restful/v3 v3.11.0 github.com/envoyproxy/go-control-plane v0.13.4 github.com/envoyproxy/go-control-plane/envoy v1.32.4 github.com/envoyproxy/go-control-plane/ratelimit v0.1.0 github.com/envoyproxy/protoc-gen-validate v1.2.1 github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 github.com/evanphx/json-patch/v5 v5.6.0 github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a github.com/fatih/color v1.17.0 github.com/fatih/structs v1.1.0 github.com/felixge/httpsnoop v1.0.4 github.com/flynn/go-docopt v0.0.0-20140912013429-f6dd2ebbb31e github.com/fortytw2/leaktest v1.3.0 github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8 github.com/frankban/quicktest v1.14.6 github.com/fsnotify/fsevents v0.2.0 github.com/fsnotify/fsnotify v1.9.0 github.com/fvbommel/sortorder v1.0.2 github.com/fxamacker/cbor/v2 v2.7.0 github.com/gabriel-vasile/mimetype v1.4.2 github.com/garyburd/redigo v1.6.4 github.com/ghodss/yaml v1.0.0 github.com/gin-contrib/sse v0.1.0 github.com/gin-gonic/gin v1.9.1 github.com/glebarez/go-sqlite v1.22.0 github.com/glebarez/sqlite v1.11.0 github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8 github.com/go-asn1-ber/asn1-ber v1.5.1 github.com/go-chi/chi v1.5.4 github.com/go-chi/chi/v5 v5.2.1 github.com/go-jose/go-jose/v3 v3.0.3 github.com/go-jose/go-jose/v4 v4.1.0 github.com/go-kit/kit v0.13.0 github.com/go-kit/log v0.2.1 github.com/go-ldap/ldap/v3 v3.4.1 github.com/go-logfmt/logfmt v0.6.0 github.com/go-logr/logr v1.4.2 github.com/go-logr/stdr v1.2.2 github.com/go-ole/go-ole v1.3.0 github.com/go-openapi/analysis v0.23.0 github.com/go-openapi/errors v0.22.0 github.com/go-openapi/inflect v0.21.0 github.com/go-openapi/jsonpointer v0.21.0 github.com/go-openapi/jsonreference v0.21.0 github.com/go-openapi/loads v0.22.0 github.com/go-openapi/runtime v0.28.0 github.com/go-openapi/spec v0.21.0 github.com/go-openapi/strfmt v0.23.0 github.com/go-openapi/swag v0.23.1 github.com/go-openapi/validate v0.24.0 github.com/go-pg/pg/v10 v10.11.1 github.com/go-pg/zerochecker v0.2.0 github.com/go-playground/assert/v2 v2.2.0 github.com/go-playground/locales v0.14.1 github.com/go-playground/universal-translator v0.18.1 github.com/go-playground/validator/v10 v10.15.1 github.com/go-redis/redis v6.15.9+incompatible github.com/go-redis/redis/v7 v7.4.1 github.com/go-redis/redis/v8 v8.11.5 github.com/go-redis/redismock/v8 v8.0.6 github.com/go-sql-driver/mysql v1.8.1 github.com/go-stack/stack v1.8.0 github.com/go-swagger/go-swagger v0.31.0 github.com/go-swagger/scan-repo-boundary v0.0.0-20180623220736-973b3573c013 github.com/go-task/slim-sprig/v3 v3.0.0 github.com/go-test/deep v1.1.0 github.com/go-viper/mapstructure/v2 v2.2.1 github.com/go-zookeeper/zk v1.0.2 github.com/goccy/go-json v0.10.3 github.com/goccy/go-yaml v1.17.1 github.com/gocql/gocql v1.6.0 github.com/godbus/dbus/v5 v5.1.0 github.com/gofiber/fiber/v2 v2.52.5 github.com/gofrs/flock v0.8.1 github.com/gofrs/uuid v4.4.0+incompatible github.com/gogo/googleapis v1.4.1 github.com/gogo/protobuf v1.3.2 github.com/gogo/status v1.1.0 github.com/golang-jwt/jwt v3.2.2+incompatible github.com/golang-jwt/jwt/v4 v4.5.2 github.com/golang-jwt/jwt/v5 v5.2.2 github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 github.com/golang-sql/sqlexp v0.1.0 github.com/golang/glog v1.2.4 github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 github.com/golang/mock v1.7.0-rc.1 github.com/golang/protobuf v1.5.4 github.com/golang/snappy v0.0.4 github.com/gomodule/redigo v1.8.9 github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac github.com/gonum/diff v0.0.0-20181124234638-500114f11e71 github.com/gonum/floats v0.0.0-20181209220543-c233463c7e82 github.com/gonum/integrate v0.0.0-20181209220457-a422b5c0fdf2 github.com/gonum/internal v0.0.0-20181124074243-f884aa714029 github.com/gonum/lapack v0.0.0-20181123203213-e4cdc5a0bff9 github.com/gonum/mathext v0.0.0-20181121095525-8a4bf007ea55 github.com/gonum/matrix v0.0.0-20181209220409-c518dec07be9 github.com/gonum/stat v0.0.0-20181125101827-41a0da705a5b github.com/google/btree v1.0.1 github.com/google/cel-go v0.20.1 github.com/google/gnostic-models v0.6.8 github.com/google/go-cmp v0.7.0 github.com/google/go-pkcs11 v0.3.0 github.com/google/go-tpm v0.9.3 github.com/google/go-tpm-tools v0.3.13-0.20230620182252-4639ecce2aba github.com/google/gofuzz v1.2.0 github.com/google/martian/v3 v3.3.3 github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 github.com/google/renameio v0.1.0 github.com/google/s2a-go v0.1.9 github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 github.com/google/tink/go v1.7.0 github.com/google/uuid v1.6.0 github.com/googleapis/enterprise-certificate-proxy v0.3.5 github.com/googleapis/gax-go/v2 v2.14.1 github.com/googleapis/google-cloud-go-testing v0.0.0-20210719221736-1c9a4c676720 github.com/gorilla/handlers v1.5.2 github.com/gorilla/mux v1.8.1 github.com/gorilla/securecookie v1.1.1 github.com/gorilla/sessions v1.2.1 github.com/gorilla/websocket v1.5.0 github.com/graph-gophers/graphql-go v1.5.0 github.com/graphql-go/graphql v0.8.1 github.com/graphql-go/handler v0.2.3 github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.0 github.com/h2non/gock v1.2.0 github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed github.com/hamba/avro v1.5.6 github.com/hamba/avro/v2 v2.24.0 github.com/hashicorp/consul/api v1.25.1 github.com/hashicorp/errwrap v1.1.0 github.com/hashicorp/go-cleanhttp v0.5.2 github.com/hashicorp/go-hclog v1.6.3 github.com/hashicorp/go-immutable-radix v1.3.1 github.com/hashicorp/go-kms-wrapping/entropy/v2 v2.0.0 github.com/hashicorp/go-kms-wrapping/v2 v2.0.8 github.com/hashicorp/go-multierror v1.1.1 github.com/hashicorp/go-plugin v1.4.8 github.com/hashicorp/go-retryablehttp v0.7.7 github.com/hashicorp/go-rootcerts v1.0.2 github.com/hashicorp/go-secure-stdlib/base62 v0.1.2 github.com/hashicorp/go-secure-stdlib/mlock v0.1.2 github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0 github.com/hashicorp/go-secure-stdlib/password v0.1.1 github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 github.com/hashicorp/go-secure-stdlib/tlsutil v0.1.2 github.com/hashicorp/go-sockaddr v1.0.7 github.com/hashicorp/go-uuid v1.0.3 github.com/hashicorp/go-version v1.7.0 github.com/hashicorp/golang-lru v1.0.2 github.com/hashicorp/golang-lru/v2 v2.0.3 github.com/hashicorp/hcl v1.0.1-vault-5 github.com/hashicorp/serf v0.10.1 github.com/hashicorp/vault/api v1.15.0 github.com/hashicorp/vault/sdk v0.9.2 github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 github.com/heetch/avro v0.4.5 github.com/hpcloud/tail v1.0.0 github.com/huandu/xstrings v1.4.0 github.com/hudl/fargo v1.4.0 github.com/iancoleman/orderedmap v0.0.0-20190318233801-ac98e3ecb4b0 github.com/iancoleman/strcase v0.3.0 github.com/ianlancetaylor/demangle v0.0.0-20240312041847-bd984b5ce465 github.com/imdario/mergo v0.3.16 github.com/in-toto/in-toto-golang v0.5.0 github.com/inconshreveable/mousetrap v1.1.0 github.com/influxdata/influxdb1-client v0.0.0-20200827194710-b269163b24ab github.com/influxdata/tdigest v0.0.0-20180711151920-a7d76c6f093a github.com/invopop/jsonschema v0.12.0 github.com/jackc/chunkreader v1.0.0 github.com/jackc/chunkreader/v2 v2.0.1 github.com/jackc/pgconn v1.14.3 github.com/jackc/pgio v1.0.0 github.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65 github.com/jackc/pgpassfile v1.0.0 github.com/jackc/pgproto3 v1.1.0 github.com/jackc/pgproto3/v2 v2.3.3 github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 github.com/jackc/pgtype v1.14.0 github.com/jackc/pgx/v4 v4.18.3 github.com/jackc/pgx/v5 v5.7.2 github.com/jackc/puddle v1.1.3 github.com/jackc/puddle/v2 v2.2.2 github.com/jcmturner/aescts/v2 v2.0.0 github.com/jcmturner/dnsutils/v2 v2.0.0 github.com/jcmturner/gofork v1.7.6 github.com/jcmturner/goidentity/v6 v6.0.1 github.com/jcmturner/gokrb5/v8 v8.4.4 github.com/jcmturner/rpc/v2 v2.0.3 github.com/jessevdk/go-flags v1.5.0 github.com/jhump/gopoet v0.1.0 github.com/jhump/goprotoc v0.5.0 github.com/jhump/protoreflect v1.15.6 github.com/jinzhu/gorm v1.9.16 github.com/jinzhu/inflection v1.0.0 github.com/jinzhu/now v1.1.5 github.com/jmespath/go-jmespath v0.4.0 github.com/jmespath/go-jmespath/internal/testify v1.5.1 github.com/jmoiron/sqlx v1.3.5 github.com/joho/godotenv v1.5.1 github.com/jonboulle/clockwork v0.4.0 github.com/josharian/intern v1.0.0 github.com/jpillora/backoff v1.0.0 github.com/json-iterator/go v1.1.12 github.com/juju/qthttptest v0.1.1 github.com/julienschmidt/httprouter v1.3.0 github.com/karrick/godirwalk v1.17.0 github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 github.com/kevinmbeaulieu/eq-go v1.0.0 github.com/kisielk/errcheck v1.5.0 github.com/kisielk/gotool v1.0.0 github.com/kisielk/sqlstruct v0.0.0-20201105191214-5f3e10d3ab46 github.com/klauspost/compress v1.18.0 github.com/klauspost/cpuid/v2 v2.2.5 github.com/knz/go-libedit v1.10.1 github.com/konsorten/go-windows-terminal-sequences v1.0.3 github.com/kr/fs v0.1.0 github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 github.com/kr/pretty v0.3.1 github.com/kr/pty v1.1.8 github.com/kr/text v0.2.0 github.com/kylelemons/godebug v1.1.0 github.com/labstack/echo v3.3.10+incompatible github.com/labstack/echo/v4 v4.11.1 github.com/labstack/gommon v0.4.2 github.com/leeavital/protoc-gen-gostreamer v0.1.0 github.com/leodido/go-urn v1.2.4 github.com/lestrrat-go/blackmagic v1.0.2 github.com/lestrrat-go/httpcc v1.0.1 github.com/lestrrat-go/httprc v1.0.6 github.com/lestrrat-go/iter v1.0.2 github.com/lestrrat-go/jwx/v2 v2.1.3 github.com/lestrrat-go/option v1.0.1 github.com/lib/pq v1.10.2 github.com/linkedin/goavro v2.1.0+incompatible github.com/linkedin/goavro/v2 v2.12.0 github.com/logrusorgru/aurora/v3 v3.0.0 github.com/lucasb-eyer/go-colorful v1.2.0 github.com/lufia/plan9stats v0.0.0-20250317134145-8bc96cf8fc35 github.com/lyft/protoc-gen-star/v2 v2.0.4-0.20230330145011-496ad1ac90a4 github.com/magiconair/properties v1.8.7 github.com/mailru/easyjson v0.9.0 github.com/matryer/is v1.4.1 github.com/matryer/moq v0.2.7 github.com/mattn/go-colorable v0.1.14 github.com/mattn/go-isatty v0.0.20 github.com/mattn/go-runewidth v0.0.16 github.com/mattn/go-shellwords v1.0.12 github.com/mattn/go-sqlite3 v1.14.18 github.com/matttproud/golang_protobuf_extensions v1.0.4 github.com/merit/agents/gen/event/v5 v5.8.0 github.com/merit/stellar/appconfig v1.3.0 github.com/merit/stellar/application v1.2.0 github.com/merit/stellar/casbin v1.5.0 github.com/merit/stellar/conv v1.1.0 github.com/merit/stellar/errors v1.1.0 github.com/merit/stellar/featureflag/contrib/permissions v1.0.0 github.com/merit/stellar/featureflag/contrib/unleash v1.0.0 github.com/merit/stellar/featureflag/v2 v2.2.0 github.com/merit/stellar/featureflag/v3 v3.0.0 github.com/merit/stellar/http/contrib/datadog v1.0.0 github.com/merit/stellar/http/contrib/permissions v1.0.1 github.com/merit/stellar/http/v2 v2.0.0 github.com/merit/stellar/logging/contrib/datadog v1.0.0 github.com/merit/stellar/logging/contrib/net.http v1.0.0 github.com/merit/stellar/logging/v2 v2.0.0 github.com/merit/stellar/logical v1.1.0 github.com/merit/stellar/permissions/v2 v2.0.0 github.com/merit/stellar/pubsub v1.1.0 github.com/merit/stellar/repository/cloudsql v1.2.0 github.com/merit/stellar/repository/v2 v2.3.0 github.com/merit/stellar/secrets/v2 v2.3.0 github.com/merit/stellar/storage v1.0.1 github.com/merit/stellar/stream/connect v1.6.0 github.com/merit/stellar/stream/contrib/datadog v1.0.0 github.com/merit/stellar/stream/v3 v3.0.0 github.com/merit/stellar/temporal v1.3.0 github.com/merit/stellar/tracing v1.4.0 github.com/merit/stellar/tracing/gokit v1.0.0 github.com/merit/stellar/tracing/permissions v1.2.0 github.com/merit/stellar/tracing/repository v1.2.0 github.com/merit/stellar/tracing/stats v1.2.0 github.com/merit/stellar/v3 v3.14.0 github.com/merit/wormhole/gen/event/v5 v5.38.0 github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b github.com/microsoft/go-mssqldb v1.8.0 github.com/miekg/dns v1.1.55 github.com/miekg/pkcs11 v1.1.1 github.com/minio/highwayhash v1.0.3 github.com/mitchellh/cli v1.1.5 github.com/mitchellh/copystructure v1.2.0 github.com/mitchellh/go-homedir v1.1.0 github.com/mitchellh/go-testing-interface v1.14.1 github.com/mitchellh/go-wordwrap v1.0.1 github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c github.com/mitchellh/reflectwalk v1.0.2 github.com/moby/buildkit v0.14.1 github.com/moby/docker-image-spec v1.3.1 github.com/moby/locker v1.0.1 github.com/moby/patternmatcher v0.6.0 github.com/moby/spdystream v0.5.0 github.com/moby/sys/mountinfo v0.7.1 github.com/moby/sys/sequential v0.5.0 github.com/moby/sys/signal v0.7.0 github.com/moby/sys/symlink v0.2.0 github.com/moby/sys/user v0.1.0 github.com/moby/sys/userns v0.1.0 github.com/moby/term v0.5.0 github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd github.com/modern-go/reflect2 v1.0.2 github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5 github.com/montanaflynn/stats v0.7.1 github.com/morikuni/aec v1.0.0 github.com/mozillazg/go-unidecode v0.2.0 github.com/muesli/termenv v0.16.0 github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f github.com/natefinch/atomic v1.0.1 github.com/nats-io/jwt/v2 v2.7.3 github.com/nats-io/nats-server/v2 v2.11.1 github.com/nats-io/nats.go v1.41.1 github.com/nats-io/nkeys v0.4.10 github.com/nats-io/nuid v1.0.1 github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32 github.com/ncruces/go-strftime v0.1.9 github.com/nexus-rpc/sdk-go v0.3.0 github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e github.com/nrwiersma/avro-benchmarks v0.0.0-20210913175520-21aec48c8f76 github.com/nxadm/tail v1.4.8 github.com/nyaruka/phonenumbers v1.5.0 github.com/oklog/run v1.1.0 github.com/oklog/ulid v1.3.1 github.com/onsi/ginkgo v1.16.5 github.com/onsi/ginkgo/v2 v2.22.1 github.com/onsi/gomega v1.36.2 github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 github.com/open-telemetry/opentelemetry-collector-contrib/pkg/sampling v0.120.1 github.com/open-telemetry/opentelemetry-collector-contrib/processor/probabilisticsamplerprocessor v0.120.1 github.com/opencontainers/go-digest v1.0.0 github.com/opencontainers/image-spec v1.1.0 github.com/opencontainers/runc v1.1.6 github.com/opencontainers/runtime-spec v1.2.0 github.com/opentracing/opentracing-go v1.2.0 github.com/openzipkin/zipkin-go v0.2.5 github.com/otiai10/copy v1.14.1 github.com/otiai10/mint v1.6.3 github.com/outcaste-io/ristretto v0.2.3 github.com/pborman/uuid v1.2.1 github.com/pelletier/go-toml v1.9.5 github.com/pelletier/go-toml/v2 v2.1.1 github.com/performancecopilot/speed/v4 v4.0.0 github.com/peterbourgon/diskv v2.0.1+incompatible github.com/peterbourgon/ff/v3 v3.4.0 github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c github.com/pierrec/lz4 v2.6.1+incompatible github.com/pierrec/lz4/v4 v4.1.18 github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e github.com/pkg/errors v0.9.1 github.com/pkg/sftp v1.13.6 github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 github.com/posener/complete v1.1.1 github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 github.com/prashantv/gostub v1.1.0 github.com/prometheus/client_golang v1.20.5 github.com/prometheus/client_model v0.6.1 github.com/prometheus/common v0.55.0 github.com/prometheus/procfs v0.15.1 github.com/puzpuzpuz/xsync/v3 v3.5.1 github.com/r3labs/sse v0.0.0-20210224172625-26fe804710bc github.com/rabbitmq/amqp091-go v1.2.0 github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 github.com/redis/go-redis/v9 v9.1.0 github.com/redis/rueidis v1.0.56 github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec github.com/richardartoul/molecule v1.0.1-0.20240531184615-7ca0df43c0b3 github.com/riferrei/srclient v0.7.1 github.com/rivo/uniseg v0.4.7 github.com/robfig/cron v1.2.0 github.com/rogpeppe/clock v0.0.0-20190514195947-2896927a307a github.com/rogpeppe/fastuuid v1.2.0 github.com/rogpeppe/go-internal v1.13.1 github.com/rs/cors v1.11.1 github.com/rs/xid v1.6.0 github.com/rs/zerolog v1.34.0 github.com/russross/blackfriday/v2 v2.1.0 github.com/ryanuber/columnize v2.1.2+incompatible github.com/ryanuber/go-glob v1.0.0 github.com/sagikazarmark/crypt v0.17.0 github.com/sagikazarmark/locafero v0.4.0 github.com/sagikazarmark/slog-shim v0.1.0 github.com/santhosh-tekuri/jsonschema/v5 v5.3.1 github.com/santhosh-tekuri/jsonschema/v6 v6.0.1 github.com/satori/go.uuid v1.2.0 github.com/secure-systems-lab/go-securesystemslib v0.9.0 github.com/segmentio/asm v1.2.0 github.com/segmentio/kafka-go v0.4.42 github.com/sergi/go-diff v1.3.1 github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b github.com/sethvargo/go-password v0.2.0 github.com/shibumi/go-pathspec v1.3.0 github.com/shirou/gopsutil/v3 v3.24.5 github.com/shirou/gopsutil/v4 v4.25.3 github.com/shoenig/go-m1cpu v0.1.6 github.com/shopspring/decimal v1.3.1 github.com/sirupsen/logrus v1.9.3 github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 github.com/sony/gobreaker v0.4.1 github.com/sourcegraph/conc v0.3.0 github.com/spaolacci/murmur3 v1.1.0 github.com/spf13/afero v1.11.0 github.com/spf13/cast v1.6.0 github.com/spf13/cobra v1.8.1 github.com/spf13/pflag v1.0.5 github.com/spf13/viper v1.18.2 github.com/stoewer/go-strcase v1.2.0 github.com/streadway/handy v0.0.0-20200128134331-0f66f006fb2e github.com/streadway/quantile v0.0.0-20150917103942-b0c588724d25 github.com/stretchr/objx v0.5.2 github.com/stretchr/testify v1.10.0 github.com/subosito/gotenv v1.6.0 github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d github.com/testcontainers/testcontainers-go v0.33.0 github.com/testcontainers/testcontainers-go/modules/compose v0.33.0 github.com/theupdateframework/notary v0.7.0 github.com/tidwall/btree v1.6.0 github.com/tidwall/buntdb v1.3.0 github.com/tidwall/gjson v1.16.0 github.com/tidwall/grect v0.1.4 github.com/tidwall/match v1.1.1 github.com/tidwall/pretty v1.2.1 github.com/tidwall/rtred v0.1.2 github.com/tidwall/tinyqueue v0.1.1 github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 github.com/tink-crypto/tink-go-gcpkms/v2 v2.1.0 github.com/tink-crypto/tink-go-hcvault/v2 v2.1.0 github.com/tink-crypto/tink-go/v2 v2.1.0 github.com/tinylib/msgp v1.2.5 github.com/tklauser/go-sysconf v0.3.15 github.com/tklauser/numcpus v0.10.0 github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea github.com/tonistiigi/vt100 v0.0.0-20240514184818-90bafcd6abab github.com/toqueteos/webbrowser v1.2.0 github.com/tsenart/go-tsz v0.0.0-20180814232043-cdeb9e1e981e github.com/tsenart/vegeta/v12 v12.8.4 github.com/twitchtv/twirp v8.1.3+incompatible github.com/twitchyliquid64/golang-asm v0.15.1 github.com/twmb/murmur3 v1.1.8 github.com/uber-go/tally/v4 v4.1.1 github.com/ugorji/go/codec v1.2.11 github.com/uptrace/bun v1.1.17 github.com/uptrace/bun/dialect/sqlitedialect v1.1.17 github.com/urfave/cli/v2 v2.27.6 github.com/urfave/negroni v1.0.0 github.com/valkey-io/valkey-go v1.0.56 github.com/valyala/bytebufferpool v1.0.0 github.com/valyala/fasthttp v1.51.0 github.com/valyala/fasttemplate v1.2.2 github.com/valyala/tcplisten v1.0.0 github.com/vektah/gqlparser/v2 v2.5.16 github.com/vmihailenco/bufpool v0.1.11 github.com/vmihailenco/msgpack/v4 v4.3.13 github.com/vmihailenco/msgpack/v5 v5.4.1 github.com/vmihailenco/tagparser v0.1.2 github.com/vmihailenco/tagparser/v2 v2.0.0 github.com/wk8/go-ordered-map/v2 v2.1.8 github.com/x448/float16 v0.8.4 github.com/xdg-go/pbkdf2 v1.0.0 github.com/xdg-go/scram v1.1.2 github.com/xdg-go/stringprep v1.0.4 github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 github.com/xeipuuv/gojsonschema v1.2.0 github.com/xhit/go-str2duration/v2 v2.1.0 github.com/xiatechs/jsonata-go v1.8.5 github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 github.com/yuin/goldmark v1.4.13 github.com/yusufpapurcu/wmi v1.2.4 github.com/zenazn/goji v1.0.1 go.devnw.com/structs v1.0.0 go.einride.tech/aip v0.68.1 go.etcd.io/etcd/api/v3 v3.5.10 go.etcd.io/etcd/client/pkg/v3 v3.5.10 go.etcd.io/etcd/client/v2 v2.305.10 go.etcd.io/etcd/client/v3 v3.5.10 go.mongodb.org/mongo-driver v1.17.1 go.opencensus.io v0.24.0 go.opentelemetry.io/auto/sdk v1.1.0 go.opentelemetry.io/collector/component v1.28.1 go.opentelemetry.io/collector/component/componentstatus v0.120.0 go.opentelemetry.io/collector/component/componenttest v0.120.0 go.opentelemetry.io/collector/config/configtelemetry v0.119.0 go.opentelemetry.io/collector/consumer v1.26.0 go.opentelemetry.io/collector/consumer/consumertest v0.120.0 go.opentelemetry.io/collector/consumer/xconsumer v0.120.0 go.opentelemetry.io/collector/pdata v1.29.0 go.opentelemetry.io/collector/pdata/pprofile v0.123.0 go.opentelemetry.io/collector/pdata/testdata v0.120.0 go.opentelemetry.io/collector/pipeline v0.123.0 go.opentelemetry.io/collector/processor v0.120.0 go.opentelemetry.io/collector/processor/processortest v0.120.0 go.opentelemetry.io/collector/processor/xprocessor v0.120.0 go.opentelemetry.io/collector/semconv v0.123.0 go.opentelemetry.io/contrib/detectors/gcp v1.34.0 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.59.0 go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 go.opentelemetry.io/otel v1.35.0 go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.29.0 go.opentelemetry.io/otel/metric v1.35.0 go.opentelemetry.io/otel/sdk v1.35.0 go.opentelemetry.io/otel/sdk/metric v1.35.0 go.opentelemetry.io/otel/trace v1.35.0 go.opentelemetry.io/proto/otlp v1.0.0 go.temporal.io/api v1.44.1 go.temporal.io/sdk v1.33.0 go.temporal.io/sdk/contrib/datadog v0.4.0 go.temporal.io/sdk/contrib/tally v0.2.0 go.uber.org/atomic v1.11.0 go.uber.org/automaxprocs v1.6.0 go.uber.org/dig v1.18.0 go.uber.org/fx v1.23.0 go.uber.org/goleak v1.3.0 go.uber.org/mock v0.4.0 go.uber.org/multierr v1.11.0 go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee go.uber.org/zap v1.27.0 go4.org/intern v0.0.0-20230525184215-6c62f75575cb go4.org/unsafe/assume-no-moving-gc v0.0.0-20230525183740-e7c30c78aeb2 golang.org/x/arch v0.4.0 golang.org/x/crypto v0.37.0 golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 golang.org/x/mod v0.24.0 golang.org/x/net v0.39.0 golang.org/x/oauth2 v0.28.0 golang.org/x/sync v0.13.0 golang.org/x/sys v0.32.0 golang.org/x/telemetry v0.0.0-20240521205824-bda55230c457 golang.org/x/term v0.31.0 golang.org/x/text v0.24.0 golang.org/x/time v0.11.0 golang.org/x/tools v0.32.0 golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da google.golang.org/api v0.224.0 google.golang.org/appengine v1.6.8 google.golang.org/genproto v0.0.0-20250303144028-a0af3efb3deb google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb google.golang.org/genproto/googleapis/bytestream v0.0.0-20250227231956-55c901821b1e google.golang.org/genproto/googleapis/rpc v0.0.0-20250409194420-de1ac958c67a google.golang.org/grpc v1.71.1 google.golang.org/protobuf v1.36.6 gopkg.in/DataDog/dd-trace-go.v1 v1.74.0 gopkg.in/alecthomas/kingpin.v2 v2.2.6 gopkg.in/avro.v0 v0.0.0-20171217001914-a730b5802183 gopkg.in/cenkalti/backoff.v1 v1.1.0 gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c gopkg.in/dnaeon/go-vcr.v3 v3.2.0 gopkg.in/errgo.v1 v1.0.0 gopkg.in/errgo.v2 v2.1.0 gopkg.in/evanphx/json-patch.v4 v4.12.0 gopkg.in/fsnotify.v1 v1.4.7 gopkg.in/gcfg.v1 v1.2.3 gopkg.in/go-jose/go-jose.v2 v2.6.3 gopkg.in/httprequest.v1 v1.2.1 gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec gopkg.in/inf.v0 v0.9.1 gopkg.in/ini.v1 v1.67.0 gopkg.in/jinzhu/gorm.v1 v1.9.2 gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 gopkg.in/olivere/elastic.v3 v3.0.75 gopkg.in/olivere/elastic.v5 v5.0.84 gopkg.in/retry.v1 v1.0.3 gopkg.in/square/go-jose.v2 v2.6.0 gopkg.in/src-d/go-billy.v4 v4.3.2 gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 gopkg.in/validator.v2 v2.0.0-20200605151824-2b28d334fa05 gopkg.in/warnings.v0 v0.1.2 gopkg.in/yaml.v2 v2.4.0 gopkg.in/yaml.v3 v3.0.1 gorm.io/driver/mysql v1.5.7 gorm.io/driver/postgres v1.5.11 gorm.io/driver/sqlserver v1.5.4 gorm.io/gorm v1.25.12 gorm.io/plugin/dbresolver v1.5.3 gotest.tools v2.2.0+incompatible gotest.tools/gotestsum v1.12.1 gotest.tools/v3 v3.5.2 honnef.co/go/tools v0.0.1-2019.2.3 inet.af/netaddr v0.0.0-20230525184311-b8eac61e914a k8s.io/api v0.32.2 k8s.io/apimachinery v0.32.3 k8s.io/client-go v0.32.2 k8s.io/gengo/v2 v2.0.0-20240826214909-a7b603a56eb7 k8s.io/klog/v2 v2.130.1 k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f k8s.io/utils v0.0.0-20241210054802-24370beab758 lukechampine.com/uint128 v1.3.0 mellium.im/sasl v0.3.1 modernc.org/cc/v3 v3.41.0 modernc.org/cc/v4 v4.24.4 modernc.org/ccgo/v3 v3.17.0 modernc.org/ccgo/v4 v4.23.13 modernc.org/fileutil v1.3.0 modernc.org/gc/v2 v2.6.1 modernc.org/libc v1.61.9 modernc.org/mathutil v1.7.1 modernc.org/memory v1.8.2 modernc.org/opt v0.1.4 modernc.org/sortutil v1.2.1 modernc.org/sqlite v1.34.5 modernc.org/strutil v1.2.1 modernc.org/token v1.1.0 nullprogram.com/x/optparse v1.0.0 pgregory.net/rapid v0.3.3 rsc.io/pdf v0.1.1 sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 sigs.k8s.io/structured-merge-diff/v4 v4.4.2 sigs.k8s.io/yaml v1.4.0 tags.cncf.io/container-device-interface v0.7.2
To note, I do see that because of casbin's gorm-adapter/v3, it adds gorm's sqlserver adapter:
github.com/casbin/gorm-adapter/v3 v3.32.0
gorm.io/driver/sqlserver v1.5.4
which I'm guessing orchestrion is triggering? But I'm still somewhat confused why the inclusion of the //included library is triggering if at the time of registration of the driver, it can be inferred instead?