Mongo 分析器输出:"command" 操作是什么?

Mongo profiler output: what is the "command" operation?

我们有一个 mongo 分析器生成操作类型为“命令”的文档,例如

command db.collection [time]

(这是 graylog mongo 插件的截断输出)

“命令”类型代表什么?它对应的是什么内部mongo操作?


reference manual 中似乎没有任何具体内容,除了:

system.profile.command

The command operation. If the command document exceeds 50 kilobytes, the value is a string summary of the object. If the string summary exceeds 50 kilobytes, the string summary is truncated, denoted with an ellipsis (...) at the end of the string.

我认为这是为了描述原始命令本身,而不是操作类型。

以下 MongoDB 个操作在探查器中被视为命令::

 count     
 findAndModify     
 aggregate

`