()
| 31 | name: 'scrape_counter', |
| 32 | help: 'Number of scrapes (example of a counter with a collect fn)', |
| 33 | collect() { |
| 34 | // collect is invoked each time `register.metrics()` is called. |
| 35 | this.inc(); |
| 36 | }, |
| 37 | }); |
| 38 | |
| 39 | const Gauge = require('../').Gauge; |