remove cmd monitor from mongo client

This commit is contained in:
Pavel 2024-08-04 09:56:15 +03:00
parent efe5f2bf3e
commit 502bc1d1c4

@ -8,7 +8,6 @@ import (
"net/url"
"time"
"go.mongodb.org/mongo-driver/event"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
@ -28,17 +27,17 @@ func Connect(ctx context.Context, deps *ConnectDeps) (*mongo.Database, error) {
Host: net.JoinHostPort(deps.Configuration.Host, deps.Configuration.Port),
}
cmdMonitor := &event.CommandMonitor{
Started: func(_ context.Context, evt *event.CommandStartedEvent) {
log.Println(evt.Command)
},
Succeeded: func(_ context.Context, evt *event.CommandSucceededEvent) {
log.Println(evt.Reply)
},
Failed: func(_ context.Context, evt *event.CommandFailedEvent) {
log.Println(evt.Failure)
},
}
//cmdMonitor := &event.CommandMonitor{
// Started: func(_ context.Context, evt *event.CommandStartedEvent) {
// log.Println(evt.Command)
// },
// Succeeded: func(_ context.Context, evt *event.CommandSucceededEvent) {
// log.Println(evt.Reply)
// },
// Failed: func(_ context.Context, evt *event.CommandFailedEvent) {
// log.Println(evt.Failure)
// },
//}
connectionOptions := options.Client().
ApplyURI(mongoURI.String()).
@ -47,8 +46,7 @@ func Connect(ctx context.Context, deps *ConnectDeps) (*mongo.Database, error) {
AuthSource: deps.Configuration.Auth,
Username: deps.Configuration.User,
Password: deps.Configuration.Password,
}).
SetMonitor(cmdMonitor)
})
ticker := time.NewTicker(1 * time.Second)
timeoutExceeded := time.After(deps.Timeout)