mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Missed changes leftover from removal of getKey()
This commit is contained in:
parent
2b5d100cd3
commit
e5fb726160
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ exports.up = function (knex) {
|
||||||
.alterTable("monitor", function (table) {
|
.alterTable("monitor", function (table) {
|
||||||
table.string("snmp_community_string", 255).defaultTo("public"); // Add snmp_community_string column
|
table.string("snmp_community_string", 255).defaultTo("public"); // Add snmp_community_string column
|
||||||
table.string("snmp_oid").defaultTo(null); // Add oid column
|
table.string("snmp_oid").defaultTo(null); // Add oid column
|
||||||
table.enum("snmp_version", [ "1", "2c", "3" ]).defaultTo("2c"); // Add snmp_version column with enum values
|
table.enum("snmp_version", [ "0", "1", "3" ]).defaultTo("1"); // Add snmp_version column with enum values (0: SNMPv1, 1: SNMPv2c, 3: SNMPv3)
|
||||||
table.float("snmp_control_value").defaultTo(null); // Add control_value column as float
|
table.float("snmp_control_value").defaultTo(null); // Add control_value column as float
|
||||||
table.string("snmp_condition").defaultTo(null); // Add oid column
|
table.string("snmp_condition").defaultTo(null); // Add oid column
|
||||||
});
|
});
|
||||||
|
|
|
@ -1339,7 +1339,7 @@ message HealthCheckResponse {
|
||||||
|
|
||||||
// Set default SNMP version
|
// Set default SNMP version
|
||||||
if (!this.monitor.snmpVersion) {
|
if (!this.monitor.snmpVersion) {
|
||||||
this.monitor.snmpVersion = "2c";
|
this.monitor.snmpVersion = "1";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the game list from server
|
// Get the game list from server
|
||||||
|
|
Loading…
Reference in a new issue