mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
122 lines
3.0 KiB
JSON
Executable File
122 lines
3.0 KiB
JSON
Executable File
{
|
|
// 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
|
|
"load_history_size": 10, // Number of records in the load history
|
|
},
|
|
|
|
|
|
"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": [
|
|
{"address": "*internal"}
|
|
],
|
|
},
|
|
|
|
|
|
"scheduler": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"cdrs": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"cdre": {
|
|
"TestTutITExportCDR": {
|
|
"content_fields": [
|
|
{"tag": "CGRID", "type": "*composed", "value": "~CGRID"},
|
|
{"tag": "RunID", "type": "*composed", "value": "~RunID"},
|
|
{"tag":"OriginID", "type": "*composed", "value": "~OriginID"},
|
|
{"tag":"RequestType", "type": "*composed", "value": "~RequestType"},
|
|
{"tag":"Tenant", "type": "*composed", "value": "~Tenant"},
|
|
{"tag":"Category", "type": "*composed", "value": "~Category"},
|
|
{"tag":"Account", "type": "*composed", "value": "~Account"},
|
|
{"tag":"Destination", "type": "*composed", "value": "~Destination"},
|
|
{"tag":"AnswerTime", "type": "*composed", "value": "~AnswerTime", "layout": "2006-01-02T15:04:05Z07:00"},
|
|
{"tag":"Usage", "type": "*composed", "value": "~Usage"},
|
|
{"tag":"Cost", "type": "*composed", "value": "~Cost", "rounding_decimals": 4},
|
|
{"tag":"MatchedDestinationID", "type": "*composed", "value": "~CostDetails:s/\"MatchedDestId\":.*_(\\w{4})/${1}/:s/\"MatchedDestId\":\"INTERNAL\"/ON010/"},
|
|
],
|
|
},
|
|
},
|
|
|
|
|
|
"users": {
|
|
"enabled": true,
|
|
"indexes": ["Uuid"],
|
|
},
|
|
|
|
|
|
"resources": {
|
|
"enabled": true,
|
|
"store_interval": "1s",
|
|
"thresholds_conns": [
|
|
{"address": "*internal"}
|
|
],
|
|
},
|
|
|
|
|
|
"stats": {
|
|
"enabled": true,
|
|
"store_interval": "1s",
|
|
"thresholds_conns": [
|
|
{"address": "*internal"}
|
|
],
|
|
},
|
|
|
|
|
|
"thresholds": {
|
|
"enabled": true,
|
|
"store_interval": "1s",
|
|
},
|
|
|
|
|
|
"suppliers": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"attributes": { // Attribute service
|
|
"enabled": true, // starts Attribute service: <true|false>.
|
|
},
|
|
|
|
"sessions": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
}
|