ALERT Messages
- Last Updated: September 10, 2026
- 2 minute read
- MarkLogic Server
- Version 12.0
- Documentation
ALERT-BADCONFIG
Message Text
variable1 parameter is missing for configuration
ALERT-DELCFGDOMAINS
Message Text
Can not delete alerting config while CPF domains are associated. Use alert:config-set-cpf-domain-names($config, ()) first.: variable1
Cause
Attempted to delete an alerting configuration that has CPF domains associated with it.
Response
Use
<code xmlns="http://www.w3.org/1999/xhtml">alert:config-set-cpf-domain-names($config, ())</code>
to remove any CPF domain associations before deleting the config.
ALERT-DELCFGTRIGGERS
Message Text
Can not delete alerting config while triggers are associated. Use alert:config-set-trigger-ids($uri, ()) or alert:remove-triggers($uri) first. : variable1
Cause
Attempted to delete an alerting configuration that has trigger ids associated with it.
Response
If the triggers were created with alert:create-triggers($uri) then they should be removed with alert:remove-triggers($uri) before deleting the config. If the triggers were created in some other way, the config should be disassociated from them with
alert:config-insert(
alert:config-set-trigger-ids(
alert:config-get($uri), ()
)
)
before deleting the config.
ALERT-DUPLICATECONFIGID
Message Text
Configuration appears twice: variable1
Response
Configuration id must be unique.
ALERT-EXISTCONFIG
Message Text
Attempting to overwrite existing configuration: variable1
ALERT-INVALIDACTION
Message Text
The action is not valid
Response
Check your code.
ALERT-INVALIDCONFIG
Message Text
The configuration is not valid
Response
Check your code.
ALERT-INVALIDINVOKEOPTIONS
Message Text
The options for invoke are not valid
Response
Check your code.
ALERT-INVALIDOPTIONS
Message Text
The options are not valid
Response
Check your code.
ALERT-INVALIDRULE
Message Text
The rule is not valid
Response
Check your code.
ALERT-INVALIDRULEACTION
Message Text
The action for this rule is not valid: variable1
Cause
Invalid action for this rule.
Response
Check action for this rule and try again.
ALERT-INVALIDSPAWNOPTIONS
Message Text
The options for spawn are not valid
Response
Check your code.
ALERT-NORULE
Message Text
Rule does not exist: variable1
ALERT-NOSUCHCONFIG
Message Text
Requesting nonexistent configuration: variable1
Cause
Configuration does not exist.
Response
Check configuration id for misspelling and that it was created and try again.
ALERT-NOTRIGGERDB
Message Text
No triggers database is configured for the alerting database: no triggers database configured
Cause
No triggers database is configured for the alerting database.
Response
Configure a triggers database for the alerting database.
ALERT-RLEXISTS
Message Text
Rule already exists: variable1
ALERT-RULEPERMISSION
Message Text
User does not have permission to insert rule: variable1
ALERT-UNREMOVABLEACTION
Message Text
Can not remove this action: variable1