mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
lint fixes
This commit is contained in:
parent
e5477fba0d
commit
b40dbf7db7
2 changed files with 11 additions and 12 deletions
|
@ -1,5 +1,5 @@
|
|||
const { MonitorType } = require("./monitor-type");
|
||||
const { UP, log } = require("../../src/util");
|
||||
const { UP } = require("../../src/util");
|
||||
const { exec } = require("promisify-child-process");
|
||||
|
||||
class SIPMonitorType extends MonitorType {
|
||||
|
@ -10,7 +10,7 @@ class SIPMonitorType extends MonitorType {
|
|||
* Run the monitoring check on the given monitor
|
||||
* @param {Monitor} monitor Monitor to check
|
||||
* @param {Heartbeat} heartbeat Monitor heartbeat to update
|
||||
* @param {UptimeKumaServer} server Uptime Kuma server
|
||||
* @param {UptimeKumaServer} _server Uptime Kuma server
|
||||
* @returns {Promise<void>}
|
||||
* @throws Will throw an error if the command execution encounters any error.
|
||||
*/
|
||||
|
@ -32,7 +32,7 @@ class SIPMonitorType extends MonitorType {
|
|||
* @throws Will throw an error if the command execution encounters any error.
|
||||
*/
|
||||
async runSipSak(hostname, port, timeout) {
|
||||
const { stdout, stderr } = await exec(`sipsak -s sip:${hostname}:${port} --from sip:sipsak@${hostname} -v`,{timeout:timeout});
|
||||
const { stdout, stderr } = await exec(`sipsak -s sip:${hostname}:${port} --from sip:sipsak@${hostname} -v`, { timeout: timeout });
|
||||
if (!stdout && stderr && stderr.toString()) {
|
||||
throw new Error(`Error in output: ${stderr.toString()}`);
|
||||
}
|
||||
|
@ -44,22 +44,21 @@ class SIPMonitorType extends MonitorType {
|
|||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {string} res
|
||||
* @param {object} heartbeat
|
||||
* @returns {void}
|
||||
* @param {string} res response to be parsed
|
||||
* @param {object} heartbeat heartbeat object to update
|
||||
* @returns {void} returns nothing
|
||||
*/
|
||||
parseSipsakResponse(res, heartbeat){
|
||||
parseSipsakResponse(res, heartbeat) {
|
||||
let lines = res.split("\n");
|
||||
for (let line of lines){
|
||||
if (line.includes("200 OK")){
|
||||
for (let line of lines) {
|
||||
if (line.includes("200 OK")) {
|
||||
heartbeat.status = UP;
|
||||
heartbeat.msg = line;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
SIPMonitorType,
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
</option>
|
||||
<option v-if="!$root.info.isContainer" value="tailscale-ping">
|
||||
Tailscale Ping
|
||||
</option>
|
||||
</option>
|
||||
</optgroup>
|
||||
</select>
|
||||
<i18n-t v-if="monitor.type === 'rabbitmq'" keypath="rabbitmqHelpText" tag="div" class="form-text">
|
||||
|
|
Loading…
Reference in a new issue