├── .eslintrc.json ├── .github └── pull_request_template.md ├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── package.json ├── renovate.json ├── spec ├── .eslintrc.json ├── fingerprintSpec.js └── support │ └── jasmine.json └── src ├── fingerprint.js └── index.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@mixmaxhq/prettier-config" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/renovate.json -------------------------------------------------------------------------------- /spec/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "mixmax/node/spec" 3 | } -------------------------------------------------------------------------------- /spec/fingerprintSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/spec/fingerprintSpec.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /src/fingerprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/src/fingerprint.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixmaxhq/mongo-slow-queries/HEAD/src/index.js --------------------------------------------------------------------------------