New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mongo-slow-queries

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongo-slow-queries - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "mongo-slow-queries",
"version": "1.0.0",
"version": "1.0.1",
"description": "Utility for identifying slow queries in Mongo",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -53,2 +53,3 @@ # mongo-slow-queries

### Changelog
* 1.0.1 Fix which `query` we fingerprint.
* 1.0.0 Initial release.

@@ -71,3 +71,3 @@ 'use strict';

query,
fingerprint: fingerprint(query),
fingerprint: fingerprint(query.query),
collection: query.ns ? query.ns.replace(/.*\./, '') : '(no collection)',

@@ -74,0 +74,0 @@ indexed: query.planSummary && (query.planSummary.indexOf('IXSCAN') !== -1),

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc