Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
mongoose-profiler
Advanced tools
This is a mongoose plugin for tuning performance.
It will show the explain results on the console when the query is slow. Such as mongodb scans all documents in the collection without index.
Don't use it on production.
$ npm install mongoose-profiler --save-dev
const mongooseProfiler = require('mongoose-profiler');
schema.plugin(mongooseProfiler());
When you execute this query without the index then you will get some messages on the console.
ProductModel
.where({state: 'active'})
.where({owner: {$in: ['5c9d9428e7462d3d989cb69b', '5c9d95acea5c9b4036d97c88']}})
.limit(100);
Mongoose: 64ms Products.find({ state: 'active', owner: { '$in': [ ObjectId("5c9d9428e7462d3d989cb69b"), ObjectId("5c9d95acea5c9b4036d97c88") ] } }, { skip: 0, limit: 100 })
[ { queryPlanner:
{ plannerVersion: 1,
namespace: 'database.Products',
indexFilterSet: false,
parsedQuery:
{ '$and':
[ { state: { '$eq': 'active' } },
{ owne:
{ '$in':
[ ObjectID {
_bsontype: 'ObjectID',
id: Buffer [Uint8Array] [ ... ] },
ObjectID {
_bsontype: 'ObjectID',
id: Buffer [Uint8Array] [ ... ] } ] } } ] },
winningPlan:
{ stage: 'LIMIT',
limitAmount: 100,
inputStage:
{ stage: 'COLLSCAN',
filter:
{ '$and':
[ { state: { '$eq': 'active' } },
{ owne:
{ '$in':
[ ObjectID {
_bsontype: 'ObjectID',
id: Buffer [Uint8Array] [ ... ] },
ObjectID {
_bsontype: 'ObjectID',
id: Buffer [Uint8Array] [ ... ] } ] } } ] },
direction: 'forward' } },
rejectedPlans: [] },
executionStats:
{ executionSuccess: true,
nReturned: 1,
executionTimeMillis: 0,
totalKeysExamined: 0,
totalDocsExamined: 9,
executionStages:
{ stage: 'LIMIT',
nReturned: 1,
...
inputStage:
{ stage: 'COLLSCAN',
filter:
{ '$and':
[ { state: { '$eq': 'active' } },
{ owne:
{ '$in':
[ ObjectID {
_bsontype: 'ObjectID',
id: Buffer [Uint8Array] [ ... ] },
ObjectID {
_bsontype: 'ObjectID',
id: Buffer [Uint8Array] [ ... ] } ] } } ] },
nReturned: 1,
...
docsExamined: 9 } },
allPlansExecution: [] },
serverInfo:
{ ... },
ok: 1 } ]
const mongooseProfiler = require('mongoose-profiler');
schema.plugin(mongooseProfiler({
isAlwaysShowQuery: true,
duration: 1000,
totalDocsExamined: 1000,
level: 'COLLSCAN',
logger: {
info: console.info,
error: console.error
}
}));
Name | Type | Default | Description |
---|---|---|---|
isAlwaysShowQuery | Boolean | true | |
duration | Number | 1000ms | Show the explain result when the query took more than this time. (The time from pre() to post() .) |
totalDocsExamined | Number | Show the explain result when the query examined documents more than this number. | |
level | String | COLLSCAN | ALL : Show the explain result of all queries.COLLSCAN : Show the explain result when the mongodb scan collections. |
logger | {info: function, error: function} | Custom console log. |
FAQs
A performance tuning tool for Mongoose.
The npm package mongoose-profiler receives a total of 225 weekly downloads. As such, mongoose-profiler popularity was classified as not popular.
We found that mongoose-profiler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.