List Progress Monitor Configuration
The list progress monitor obtains information from "aggregated tables" in the dialer database. A customer configuration may contain multiple aggregated tables corresponding to tenants or lines of business. These may reside in disparate databases. The db.conf file in the CCM_Instance directory describes these databases via the following parameters:
Parameters
| key | subkey | value |
|---|---|---|
| dbparams | - | the connection parameters for the database |
| - | host | the database host system |
| - | user | db user name |
| - | password | db password |
| - | database | db name |
| - | port | db access port |
| camName | - | database column name of the first of two user defined classifiers |
| camLabel | - | label for the user interface corresponding to camName |
| listName | - | database column name of the second of two user defined classifiers |
| listLabel | - | label for the user interface corresponding to listName |
Example
[
{
"dbparams": {
"host": "10.60.19.64",
"user": "poseidonlist",
"password": "poseidonl1stp@55",
"database": "PoseidonList",
"port": "3306"
},
"camName": "cmName",
"camLabel": "Script",
"listName": "SUBSTRING_INDEX(szAccountName, '@', 1)",
"listLabel": "Dealer"
},
{
"dbparams": {
"host": "10.60.19.64",
"user": "athenalist",
"password": "athenal1stp@55",
"database": "AthenaList",
"port": "3306"
},
"camName": "cmName",
"camLabel": "Script",
"listName": "SUBSTRING_INDEX(szAccountName, '@', 1)",
"listLabel": "Dealer"
}]