overleaf/libraries/metrics
Eric Mc Sween 74eeec2ba3 Merge pull request #11680 from overleaf/em-mongo-pool-monitoring
Mongo connection pool monitoring

GitOrigin-RevId: 050e50e7e67061ccbf39a710ca4532eafd423365
2023-02-09 14:34:35 +00:00
..
.circleci
test Merge pull request #11680 from overleaf/em-mongo-pool-monitoring 2023-02-09 14:34:35 +00:00
.dockerignore
.gitignore
.npmignore
.nvmrc
buildscript.txt
CHANGELOG.md
event_loop.js
http.js
index.js Merge pull request #11680 from overleaf/em-mongo-pool-monitoring 2023-02-09 14:34:35 +00:00
LICENSE
memory.js
mongodb.js Merge pull request #11680 from overleaf/em-mongo-pool-monitoring 2023-02-09 14:34:35 +00:00
open_sockets.js
package.json Merge pull request #11679 from overleaf/em-upgrade-prom-client 2023-02-09 14:34:28 +00:00
prom_wrapper.js Merge pull request #11679 from overleaf/em-upgrade-prom-client 2023-02-09 14:34:28 +00:00
README.md
timeAsyncMethod.js
tracing.js
uv_threadpool_size.js

overleaf/metrics-module

Wrappers the prom-client npm module to provide Prometheus metrics at /metrics.

Use:

const metrics = require('@overleaf/metrics')
metrics.initialize('myapp')

const express = require('express')
const app = express()
metrics.injectMetricsRoute(app)

Request logging can be enabled:

const logger = require('@overleaf/logger')
...
app.use(metrics.http.monitor(logger))

The metrics module can be configured through the following environment variables:

  • DEBUG_METRICS - enables display of debugging messages to the console.
  • ENABLE_TRACE_AGENT - enables @google-cloud/trace-agent on Google Cloud
  • ENABLE_DEBUG_AGENT - enables @google-cloud/debug-agent on Google Cloud
  • ENABLE_PROFILE_AGENT - enables @google-cloud/profiler on Google Cloud
  • METRICS_COMPRESSION_LEVEL - sets the compression level for /metrics
  • STACKDRIVER_LOGGING - toggles the request logging format
  • UV_THREADPOOL_SIZE - sets the libuv thread pool size