我正在创建一个脚本,当我的可用RAM低于某个值时,该脚本将终止任务。为此,我有此命令可获取剩余的RAM数量。当我显示它时,我得到了一个数字“ 154372822”,但是当我通过$()将其保存到变量中时,该数字上带有一个附加“ :: not found”的数字。
一旦有了这个“ var1”,我希望将其传递给if语句。
%这是代码的发布行。
const COLLECTION_NAME = 'ping-pong';
const POLL_INTERVAL = 5000;
function pingPong(credentials) {
const pongSender = () => {
const id = _.uniqueId('pong-');
const payload = {
message: 'pong',
time: Date.now(),
};
this.added(COLLECTION_NAME, id, payload);
};
pongSender();
this.ready();
const interval = Meteor.setInterval(pongSender, POLL_INTERVAL);
this.onStop(() => {
Meteor.clearInterval(interval);
});
}