mirror of
https://github.com/jpros/tacticalrmm-web.git
synced 2026-02-28 07:13:17 +00:00
102 lines
1.7 KiB
JavaScript
102 lines
1.7 KiB
JavaScript
|
|
const common = {
|
|
email_alert: false,
|
|
failure_count: 0,
|
|
failures: 5,
|
|
history: [],
|
|
last_run: null,
|
|
more_info: null,
|
|
status: "pending",
|
|
task_on_failure: null,
|
|
text_alert: false,
|
|
agent: null,
|
|
policy: 1
|
|
};
|
|
|
|
const diskcheck = {
|
|
id: 1,
|
|
check_type: "diskspace",
|
|
disk: "C:",
|
|
threshold: 25,
|
|
readable_desc: "Disk space check: Drive C",
|
|
...common
|
|
};
|
|
|
|
const cpuloadcheck = {
|
|
id: 2,
|
|
check_type: "cpuload",
|
|
cpuload: 85,
|
|
readable_desc: "CPU Load check: > 85%",
|
|
...common
|
|
};
|
|
|
|
const memcheck = {
|
|
id: 3,
|
|
check_type: "memory",
|
|
threshold: 75,
|
|
readable_desc: "Memory checks: > 85%",
|
|
...common
|
|
};
|
|
|
|
const scriptcheck = {
|
|
id: 4,
|
|
check_type: "script",
|
|
execution_time: "0.0000",
|
|
retcode: 0,
|
|
script: {
|
|
description: "Test",
|
|
filename: "local_admin_group.bat",
|
|
filepath: "salt://scripts//userdefined//local_admin_group.bat",
|
|
id: 1,
|
|
name: "Test Script",
|
|
shell: "cmd"
|
|
},
|
|
stderr: null,
|
|
stdout: null,
|
|
timeout: 120,
|
|
readable_desc: "Script check: Test Script",
|
|
...common
|
|
};
|
|
|
|
const winservicecheck = {
|
|
id: 5,
|
|
check_type: "winsvc",
|
|
pass_if_start_pending: false,
|
|
restart_if_stopped: false,
|
|
svc_display_name: "Agent Activation Runtime_1232as",
|
|
svc_name: "AarSvc_1232as",
|
|
readable_desc: "Service check: Agent Activation Runtime_1232as",
|
|
...common
|
|
};
|
|
|
|
const pingcheck = {
|
|
id: 6,
|
|
name: "fghfgh",
|
|
check_type: "ping",
|
|
ip: "10.10.10.10",
|
|
readable_desc: "Ping Check: Test Ping Check",
|
|
...common
|
|
};
|
|
|
|
const eventlogcheck = {
|
|
id: 7,
|
|
desc: "asasasa",
|
|
check_type: "eventlog",
|
|
log_name: "Application",
|
|
event_id: 1456,
|
|
event_type: "ERROR",
|
|
fail_when: "contains",
|
|
search_last_days: 1,
|
|
readable_desc: "Event log check: asdsasa",
|
|
...common,
|
|
};
|
|
|
|
export {
|
|
diskcheck,
|
|
cpuloadcheck,
|
|
memcheck,
|
|
scriptcheck,
|
|
winservicecheck,
|
|
pingcheck,
|
|
eventlogcheck
|
|
} |