mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
6a0388ff9b
[misc] setup cloud build trigger for libraries GitOrigin-RevId: a66dd3e96cb1c06d4803a2162278959357694048 |
||
---|---|---|
.. | ||
.circleci | ||
test | ||
.eslintrc | ||
.gitignore | ||
.npmignore | ||
.prettierrc | ||
buildscript.txt | ||
event_loop.js | ||
http.js | ||
index.js | ||
LICENSE | ||
memory.js | ||
mongodb.js | ||
open_sockets.js | ||
package-lock.json | ||
package.json | ||
prom_wrapper.js | ||
README.md | ||
timeAsyncMethod.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('logger-sharelatex')
...
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 CloudENABLE_DEBUG_AGENT
- enables @google-cloud/debug-agent on Google CloudENABLE_PROFILE_AGENT
- enables @google-cloud/profiler on Google CloudMETRICS_COMPRESSION_LEVEL
- sets the compression level for/metrics
STACKDRIVER_LOGGING
- toggles the request logging formatUV_THREADPOOL_SIZE
- sets the libuv thread pool size