mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
98 lines
1.9 KiB
JSON
98 lines
1.9 KiB
JSON
{
|
|
// CGRateS Configuration file
|
|
|
|
|
|
"general": {
|
|
"log_level": 7,
|
|
"reply_timeout": "30s",
|
|
},
|
|
|
|
|
|
"listen": {
|
|
"rpc_json": ":2012",
|
|
"rpc_gob": ":2013",
|
|
"http": ":2080",
|
|
},
|
|
|
|
|
|
"data_db": { // database used to store runtime data (eg: accounts, cdr stats)
|
|
"db_type": "mongo", // data_db type: <redis|mongo>
|
|
"db_host": "192.168.56.202:27017,192.168.56.203:27017,192.168.56.204", // data_db host address
|
|
"db_port": 27017, // data_db port to reach the database
|
|
"db_name": "teoOnline?replicaSet=rs0&authSource=admin",
|
|
"db_user": "cgrates", // username to use when connecting to data_db
|
|
"db_password": "CGRateS.org", // password to use when connecting to data_db
|
|
},
|
|
|
|
|
|
"stor_db": {
|
|
"db_type": "mongo", // data_db type: <redis|mongo>
|
|
"db_host": "192.168.56.202:27017,192.168.56.203:27017,192.168.56.204", // data_db host address
|
|
"db_port": 27017, // data_db port to reach the database
|
|
"db_name": "teoOffline?replicaSet=rs0&authSource=admin",
|
|
"db_user": "cgrates", // username to use when connecting to data_db
|
|
"db_password": "CGRateS.org", // password to use when connecting to data_db
|
|
},
|
|
|
|
|
|
"rals": {
|
|
"enabled": true,
|
|
"thresholds_conns": ["*internal"],
|
|
},
|
|
|
|
|
|
"schedulers": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"cdrs": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"resources": {
|
|
"enabled": true,
|
|
"store_interval": "1s",
|
|
"thresholds_conns": ["*internal"]
|
|
},
|
|
|
|
|
|
"stats": {
|
|
"enabled": true,
|
|
"store_interval": "1s",
|
|
"thresholds_conns": ["*internal"],
|
|
},
|
|
|
|
|
|
"thresholds": {
|
|
"enabled": true,
|
|
"store_interval": "1s",
|
|
},
|
|
|
|
|
|
"routes": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"attributes": { // Attribute service
|
|
"enabled": true, // starts Attribute service: <true|false>.
|
|
},
|
|
|
|
"sessions": {
|
|
"enabled": true,
|
|
"rals_conns": ["*internal"],
|
|
"cdrs_conns": ["*internal"],
|
|
"chargers_conns": ["*internal"],
|
|
},
|
|
|
|
|
|
"apiers": {
|
|
"enabled": true,
|
|
"scheduler_conns": ["*internal"],
|
|
},
|
|
|
|
|
|
}
|