我使用MongoDB shell版本运行Debian:2.4.3
我跑
use dbname
db.stats.find()
并输出以下内容
> db.stats.find()
Mon May 13 17:55:20.933 JavaScript execution failed: TypeError: Object function (scale){
return this.runCommand( { dbstats : 1 , scale : scale } );
} has no method 'find'
然而,在其他集合上运行它可以正常工作。
这个mongo实例正在与nodejs一起使用。
答案 0 :(得分:7)
如果您确实在数据库dbname中创建了一个名为stats的集合,那么我建议您重命名它。在shell中,db对象有一个stats()方法,用于查看数据库的统计信息。
与此同时,您可以使用稍微复杂的语法:
> db.getSiblingDB("dbname").getCollection("stats").find()
Fetched 0 record(s) in 4ms
或者,如果你在dbname中,那么:
> db.getCollection("stats").find()
答案 1 :(得分:0)
我认为你想要db.stats()
。