Update bean model backend

Updates appropriate values async when editing the SNMP monitor
This commit is contained in:
Matt Visnovsky 2024-04-30 15:13:16 -06:00
parent 9c8024c7fa
commit 9d28fcff1a
2 changed files with 10 additions and 0 deletions

View File

@ -161,6 +161,10 @@ class Monitor extends BeanModel {
kafkaProducerMessage: this.kafkaProducerMessage,
screenshot,
remote_browser: this.remote_browser,
snmpOid: this.snmpOid,
snmpCondition: this.snmpCondition,
snmpControlValue: this.snmpControlValue,
snmpVersion: this.snmpVersion,
};
if (includeSensitiveData) {
@ -190,6 +194,7 @@ class Monitor extends BeanModel {
tlsCert: this.tlsCert,
tlsKey: this.tlsKey,
kafkaProducerSaslOptions: JSON.parse(this.kafkaProducerSaslOptions),
snmpCommunityString: this.snmpCommunityString,
};
}

View File

@ -830,6 +830,11 @@ let needSetup = false;
monitor.kafkaProducerAllowAutoTopicCreation;
bean.gamedigGivenPortOnly = monitor.gamedigGivenPortOnly;
bean.remote_browser = monitor.remote_browser;
bean.snmpVersion = monitor.snmpVersion;
bean.snmpCommunityString = monitor.snmpCommunityString;
bean.snmpOid = monitor.snmpOid;
bean.snmpCondition = monitor.snmpCondition;
bean.snmpControlValue = monitor.snmpControlValue;
bean.validate();