我有一个 NodeJS 应用程序,我想公开默认指标。我有以下实现。我正在使用prom-client包。
let express = require('express');
let app = express();
const client = require('prom-client');
// Create a Registry which registers the metrics
const register = new client.Registry()
// Add a default label which is added to all metrics
register.setDefaultLabels({
app: 'example-nodejs-app'
})
// Enable the collection of default metrics
client.collectDefaultMetrics({ register })
app.get('/metrics', function (req, res) {
// Return all metrics the Prometheus exposition format
res.set('Content-Type', register.contentType)
res.send(register.metrics())
})
let server = app.listen(8080, function () {
let port = server.address().port
console.log("Application running on port: %s", port)
})
当我导航到 http://localhost:8080/metrics 时,我得到一个空对象 ( {}
) 作为响应。当我检查我的 Prometheus Targets 时,我看到以下错误。
"INVALID" is not a valid start token
我新使用来自 npm 的 prom-client。我怎样才能使这项工作?