This is not a valid setting. Please check your input

[root@librenms oxidized]# su - librenms
[librenms@librenms ~]$ lnms config:set graylog.match-any-address true
This is not a valid setting. Please check your input

[librenms@librenms ~]$ vim /opt/librenms/misc/config_definitions.json
“graylog.match-any-address”: {
“default”: true,
“type”: “boolean”
},
[librenms@librenms ~]$ lnms config:set graylog.match-any-address true

vim /opt/librenms/config.php
$config[‘enable_syslog_hooks’] = 1;
$config[‘os’][‘ios’][‘syslog_hook’] = Array(‘regex’ => ‘/%SYS-(SW[0-9]±)?5-CONFIG_I/’, ‘script’ => ‘/opt/librenms/scripts/syslog-notify-oxidized.php’);
$config[‘os’][‘nxos’][‘syslog_hook’] = Array(‘regex’ => ‘/%VSHD-5-VSHD_SYSLOG_CONFIG_I/’, ‘script’ => ‘/opt/librenms/scripts/syslog-notify-oxidized.php’);
$config[‘os’][‘iosxr’][‘syslog_hook’] = Array(‘regex’ => ‘/%GBL-CONFIG-6-DB_COMMIT/’, ‘script’ => ‘/opt/librenms/scripts/syslog-notify-oxidized.php’);
$config[‘os’][‘asa’][‘syslog_hook’] = Array(‘regex’ => ‘/%ASA-(config-)?5-111005/’, ‘script’ => ‘/opt/librenms/scripts/syslog-notify-oxidized.php’);
$config[‘os’][‘vrp’][‘syslog_hook’] = Array(‘regex’ => ‘/save/’, ‘script’ => ‘/opt/librenms/scripts/syslog-notify-oxidized.php’);
$config[‘syslog_purge’] = 30;

However, triggering config backup still doesn’t work, am I doing it wrong?