mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Formtting fix
This commit is contained in:
parent
248aec8803
commit
c124f3a43e
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,8 @@ class SNMPMonitorType extends MonitorType {
|
||||||
const { status, response } = await evaluateJsonQuery(value, monitor.jsonPath, monitor.jsonPathOperator, monitor.expectedValue);
|
const { status, response } = await evaluateJsonQuery(value, monitor.jsonPath, monitor.jsonPathOperator, monitor.expectedValue);
|
||||||
|
|
||||||
if (status) {
|
if (status) {
|
||||||
bean.status = UP;
|
heartbeat.status = UP;
|
||||||
bean.msg = `JSON query passes (comparing ${response} ${this.jsonPathOperator} ${this.expectedValue})`
|
heartbeat.msg = `JSON query passes (comparing ${response} ${this.jsonPathOperator} ${this.expectedValue})`;
|
||||||
} else {
|
} else {
|
||||||
throw new Error(`JSON query does not pass (comparing ${response} ${this.jsonPathOperator} ${this.expectedValue})`);
|
throw new Error(`JSON query does not pass (comparing ${response} ${this.jsonPathOperator} ${this.expectedValue})`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue