| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- /* eslint-disable no-console */
- const os = require('os')
- const ExpressCompression = require('compression')
- const promClient = require('prom-client')
- const promWrapper = require('./prom_wrapper')
- const DEFAULT_APP_NAME = 'unknown'
- const { collectDefaultMetrics } = promWrapper
- const destructors = []
- require('./uv_threadpool_size')
- /**
- * Configure the metrics module
- */
- function configure(opts = {}) {
- const appName = opts.appName || DEFAULT_APP_NAME
- const hostname = os.hostname()
- promClient.register.setDefaultLabels({ app: appName, host: hostname })
- if (opts.ttlInMinutes) {
- promWrapper.ttlInMinutes = opts.ttlInMinutes
- }
- }
- /**
- * Configure the metrics module and start the default metrics collectors and
- * profiling agents.
- */
- function initialize(appName, opts = {}) {
- appName = appName || DEFAULT_APP_NAME
- configure({ ...opts, appName })
- collectDefaultMetrics({ timeout: 5000, prefix: '' })
- promWrapper.setupSweeping()
- console.log(`ENABLE_TRACE_AGENT set to ${process.env.ENABLE_TRACE_AGENT}`)
- if (process.env.ENABLE_TRACE_AGENT === 'true') {
- console.log('starting google trace agent')
- const traceAgent = require('@google-cloud/trace-agent')
- const traceOpts = { ignoreUrls: [/^\/status/, /^\/health_check/] }
- traceAgent.start(traceOpts)
- }
- console.log(`ENABLE_DEBUG_AGENT set to ${process.env.ENABLE_DEBUG_AGENT}`)
- if (process.env.ENABLE_DEBUG_AGENT === 'true') {
- console.log('starting google debug agent')
- const debugAgent = require('@google-cloud/debug-agent')
- debugAgent.start({
- allowExpressions: true,
- serviceContext: {
- service: appName,
- version: process.env.BUILD_VERSION,
- },
- })
- }
- console.log(`ENABLE_PROFILE_AGENT set to ${process.env.ENABLE_PROFILE_AGENT}`)
- if (process.env.ENABLE_PROFILE_AGENT === 'true') {
- console.log('starting google profile agent')
- const profiler = require('@google-cloud/profiler')
- profiler.start({
- serviceContext: {
- service: appName,
- version: process.env.BUILD_VERSION,
- },
- })
- }
- inc('process_startup')
- }
- function registerDestructor(func) {
- destructors.push(func)
- }
- function injectMetricsRoute(app) {
- app.get(
- '/metrics',
- ExpressCompression({
- level: parseInt(process.env.METRICS_COMPRESSION_LEVEL || '1', 10),
- }),
- function (req, res) {
- res.set('Content-Type', promWrapper.registry.contentType)
- res.end(promWrapper.registry.metrics())
- }
- )
- }
- function buildPromKey(key) {
- return key.replace(/[^a-zA-Z0-9]/g, '_')
- }
- function sanitizeValue(value) {
- return parseFloat(value)
- }
- function set(key, value, sampleRate = 1) {
- console.log('counts are not currently supported')
- }
- function inc(key, sampleRate = 1, opts = {}) {
- key = buildPromKey(key)
- promWrapper.metric('counter', key).inc(opts)
- if (process.env.DEBUG_METRICS) {
- console.log('doing inc', key, opts)
- }
- }
- function count(key, count, sampleRate = 1, opts = {}) {
- key = buildPromKey(key)
- promWrapper.metric('counter', key).inc(opts, count)
- if (process.env.DEBUG_METRICS) {
- console.log('doing count/inc', key, opts)
- }
- }
- function summary(key, value, opts = {}) {
- key = buildPromKey(key)
- promWrapper.metric('summary', key).observe(opts, value)
- if (process.env.DEBUG_METRICS) {
- console.log('doing summary', key, value, opts)
- }
- }
- function timing(key, timeSpan, sampleRate = 1, opts = {}) {
- key = buildPromKey('timer_' + key)
- promWrapper.metric('summary', key).observe(opts, timeSpan)
- if (process.env.DEBUG_METRICS) {
- console.log('doing timing', key, opts)
- }
- }
- function histogram(key, value, buckets, opts = {}) {
- key = buildPromKey('histogram_' + key)
- promWrapper.metric('histogram', key, buckets).observe(opts, value)
- if (process.env.DEBUG_METRICS) {
- console.log('doing histogram', key, buckets, opts)
- }
- }
- class Timer {
- constructor(key, sampleRate = 1, opts = {}, buckets) {
- this.start = new Date()
- key = buildPromKey(key)
- this.key = key
- this.sampleRate = sampleRate
- this.opts = opts
- this.buckets = buckets
- }
- done() {
- const timeSpan = new Date() - this.start
- if (this.buckets) {
- histogram(this.key, timeSpan, this.buckets, this.opts)
- } else {
- timing(this.key, timeSpan, this.sampleRate, this.opts)
- }
- return timeSpan
- }
- }
- function gauge(key, value, sampleRate = 1, opts = {}) {
- key = buildPromKey(key)
- promWrapper
- .metric('gauge', key)
- .set({ status: opts.status }, sanitizeValue(value))
- if (process.env.DEBUG_METRICS) {
- console.log('doing gauge', key, opts)
- }
- }
- function globalGauge(key, value, sampleRate = 1, opts = {}) {
- key = buildPromKey(key)
- promWrapper
- .metric('gauge', key)
- .set({ host: 'global', status: opts.status }, sanitizeValue(value))
- }
- function close() {
- for (const func of destructors) {
- func()
- }
- }
- module.exports.configure = configure
- module.exports.initialize = initialize
- module.exports.registerDestructor = registerDestructor
- module.exports.injectMetricsRoute = injectMetricsRoute
- module.exports.buildPromKey = buildPromKey
- module.exports.sanitizeValue = sanitizeValue
- module.exports.set = set
- module.exports.inc = inc
- module.exports.count = count
- module.exports.summary = summary
- module.exports.timing = timing
- module.exports.histogram = histogram
- module.exports.Timer = Timer
- module.exports.gauge = gauge
- module.exports.globalGauge = globalGauge
- module.exports.close = close
- module.exports.prom = promClient
- module.exports.register = promWrapper.registry
- module.exports.http = require('./http')
- module.exports.mongodb = require('./mongodb')
- module.exports.open_sockets = require('./open_sockets')
- module.exports.event_loop = require('./event_loop')
- module.exports.memory = require('./memory')
- module.exports.timeAsyncMethod = require('./timeAsyncMethod')
|