Hi,
We are using ReactiveMongo in our company. But we are encountered with the need to tag our queries with appName to indentify them in slowQuery later. And we discovered that we can use `appName` property in mongo url connection string to get necessary result.
e.g mongodb://localhost:27017/db?appName=test-app.
However this failed.
We tried the official mongo driver for scala, and it is ok with the same uri.
We also tried to deep into source code of the ReaciveMongo lib to find out the solution.
But the only thing we managed to find out is that the appName property is transferred correctly during the IsMaster request.
Our version of the ReactiveMongo is 1.0.10, version of mongodb is 5.0.
Need any help
Thanks a lot