forked from 2600hz/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[4.3] KAZOO-6127: add configuration parameters to control alert gener…
…ation (2600hz#6239)
- Loading branch information
1 parent
0f0c674
commit 6192ec6
Showing
3 changed files
with
142 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
applications/crossbar/priv/couchdb/schemas/system_config.crossbar.alerts.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"_id": "system_config.crossbar.alerts", | ||
"description": "Schema for crossbar.alerts system_config", | ||
"properties": { | ||
"check_financials": { | ||
"default": true, | ||
"description": "crossbar alerts check_financials", | ||
"type": "boolean" | ||
}, | ||
"check_low_balance": { | ||
"default": true, | ||
"description": "crossbar alerts check_low_balance", | ||
"type": "boolean" | ||
}, | ||
"check_payment_token": { | ||
"default": true, | ||
"description": "crossbar alerts check_payment_token", | ||
"type": "boolean" | ||
}, | ||
"check_port_action_required": { | ||
"default": true, | ||
"description": "crossbar alerts check_port_action_required", | ||
"type": "boolean" | ||
}, | ||
"check_port_requests": { | ||
"default": true, | ||
"description": "crossbar alerts check_port_requests", | ||
"type": "boolean" | ||
}, | ||
"check_port_suspended": { | ||
"default": true, | ||
"description": "crossbar alerts check_port_suspended", | ||
"type": "boolean" | ||
}, | ||
"check_system_alerts": { | ||
"default": true, | ||
"description": "crossbar alerts check_system_alerts", | ||
"type": "boolean" | ||
} | ||
}, | ||
"type": "object" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters