mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-09 14:03:12 +08:00
SNMP Initial Commits
This commit introduces a new SNMP monitor feature to the application, allowing users to monitor devices using SNMP (Simple Network Management Protocol).
This commit is contained in:
10
db/knex_migrations/2024-04-26-0000-snmp-monitor.js
Normal file
10
db/knex_migrations/2024-04-26-0000-snmp-monitor.js
Normal file
@@ -0,0 +1,10 @@
|
||||
exports.up = function (knex) {
|
||||
return knex.schema
|
||||
.alterTable("monitor", function (table) {
|
||||
table.string("snmp_community_string", 255).defaultTo("public"); // Add community_string column
|
||||
table.string("snmp_oid").notNullable(); // Add oid column
|
||||
table.enum("snmp_version", ["1", "2c", "3"]).defaultTo("2c"); // Add snmp_version column with enum values
|
||||
table.float("snmp_control_value").notNullable(); // Add control_value column as float
|
||||
table.string("snmp_condition").notNullable(); // Add oid column
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user