Skip to content

Commit 2deaf3b

Browse files
committed
Fix link to metrics
1 parent d547989 commit 2deaf3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ int main(int argc, char **argv)
8484
handler.router().handle(req, res);
8585
});
8686
qDebug() << "HTTP server listening on" << httpAddress << "port" << httpPort;
87-
qDebug() << "Prometheus metrics available at" << QString("http://%1:%2/metrics").arg(httpAddress).arg(httpPort);
87+
qDebug() << "Prometheus metrics available at" << QString("http://%1:%2/_metrics").arg(httpAddress).arg(httpPort);
8888
}
8989

9090
return app.exec();

0 commit comments

Comments
 (0)