metrics-common
v1.1.6
Published
[](https://github.com/midwayjs/metrics-common/blob/master/LICENSE) []() [;
const app = koa();
app.use(async (ctx) => {
const counter = manager.getCounter('system', 'test.system.counter');
const histogram = manager.getHistogram('system', 'test.system.histogram');
const timer = manager.getTimer('system', 'test.system.timer');
const meter = manager.getMeter('system', 'test.system.meter');
const fastcompass = manager.getFastCompass('system', 'test.system.fastcompass');
counter.inc();
});
