UNPKG

judoscale-node-core

Version:

Core dependencies for NodeJS adapters for the JudoScale autoscaling add-on for Heroku

14 lines (11 loc) 267 B
class WebMetricsCollector { constructor(store, collectorName = 'Web', config = {}) { this.collectorName = collectorName this.store = store this.config = config } collect() { return this.store.flush() } } module.exports = WebMetricsCollector