Queryy Analytics not visible for mongodb conatiner . I have launched mongodb conatiner . Installed agent on it . It is connect ot dash board but its node is not visible on QAN.
Have you set up profiling in MongoDB according to the documentation?
Connect to Mongodb and run the command
db.runCommand({
profile: 2,
slowms: 200,
ratelimit: 100
});
and check it
db.getProfilingStatus()
this may be required for both the admin database and the database you are monitoring.