我是nodejs的新手,并且我使用的是prom-client,在使用process.uptime()
时遇到上述错误。我尝试添加几个软件包,但没有运气(前三个软件包是针对其他类似错误的):
"cluster": "^0.7.7",
"dns": "^0.2.2",
"repl": "^0.1.3",
"node": "^12.2.0",
"process": "^0.11.10"
这是我的其他包裹:
"@material-ui/core": "1.2.0",
"@material-ui/icons": "1.1.0",
"classnames": "^2.2.6",
"cross-env": "^5.2.0",
"jquery": "^3.4.1",
"js-yaml": "^3.13.1",
"npm": "^6.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-loader-spinner": "^2.3.0",
"react-number-format": "v3.0.0",
"react-scripts": "1.1.4",
"express": "4.15.3",
"prom-client": "^11.3.0"
我缺少一些可以提供所有这些功能的基本库吗?我可以在https://nodejs.org/api/process.html#process_process_uptime
处看到此方法我在浏览器上收到错误消息,但在日志中却没有:
TypeError: process.uptime is not a function
(anonymous function)
node_modules/prom-client/lib/metrics/processStartTime.js:4
1 | 'use strict';
2 |
3 | const Gauge = require('../gauge');
> 4 | const nowInSeconds = Math.round(Date.now() / 1000 - process.uptime());
5 |
6 | const PROCESS_START_TIME = 'process_start_time_seconds';
7 |
View compiled
./node_modules/prom-client/lib/metrics/processStartTime.js
答案 0 :(得分:1)
似乎您正在创建一个 react.js 应用程序,而不是一个 node.js 服务器应用程序。
当 node.js 是服务器端时,react 是前端。
因为没有涉及 node.js 服务器,所以没有process.uptime()
。
prometheus.io库未提供 react 的客户端。