db.getProfilingStatus()¶
db.getProfilingStatus()
¶Returns: The current profile
level,slowOpThresholdMs
setting, andslowOpSampleRate
setting.Starting in MongoDB 4.4.2, you can set a
filter
to control which operations are logged by the profiler. When set, any configured filters are also returned bydb.getProfilingStatus()
, along with anote
explaining filter behavior.You can set the profiling filter with either:
- the
db.setProfilingLevel()
shell method, or - the
operationProfiling.filter
configuration file option.
- the
Give Feedback