mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 10:36:24 +05:00
80 lines
1.9 KiB
JSON
Executable File
80 lines
1.9 KiB
JSON
Executable File
{
|
|
// CGRateS Configuration file
|
|
//
|
|
|
|
|
|
"general": {
|
|
"log_level": 7,
|
|
},
|
|
|
|
|
|
"listen": {
|
|
"rpc_json": ":2012",
|
|
"rpc_gob": ":2013",
|
|
"http": ":2080",
|
|
},
|
|
|
|
"data_db": { // database used to store runtime data (eg: accounts, cdr stats)
|
|
"db_type": "redis", // data_db type: <redis|mongo>
|
|
"db_port": 6379, // data_db port to reach the database
|
|
"db_name": "10", // data_db database name to connect to
|
|
|
|
},
|
|
|
|
"stor_db": {
|
|
"db_password": "CGRateS.org",
|
|
},
|
|
|
|
|
|
"rals": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"schedulers": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"cdrs": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"cdre": {
|
|
"TemplateWithAttributeS": {
|
|
"export_format": "*file_csv",
|
|
"export_path": "/tmp/",
|
|
"attributes_context":"*cdre",
|
|
"filters" :["*string:~*req.Source:test2"],
|
|
"fields": [
|
|
{"path": "*exp.CGRID", "type": "*variable", "value": "~*req.CGRID"},
|
|
{"path": "*exp.RunID", "type": "*variable", "value": "~*req.RunID"},
|
|
{"path": "*exp.Source", "type": "*variable", "value": "~*req.Source"},
|
|
{"path": "*exp.OriginID", "type": "*variable", "value": "~*req.OriginID"},
|
|
{"path": "*exp.Tenant", "type": "*variable", "value": "~*req.Tenant"},
|
|
{"path": "*exp.Category", "type": "*variable", "value": "~*req.Category"},
|
|
{"path": "*exp.Account", "type": "*variable", "value": "~*req.Account"},
|
|
{"path": "*exp.Subject", "type": "*variable", "value": "~*req.Subject"},
|
|
{"path": "*exp.Destination", "type": "*variable", "value": "~*req.Destination"},
|
|
{"path": "*exp.Usage", "type": "*variable", "value": "~*req.Usage"},
|
|
{"path": "*exp.Cost", "type": "*variable", "value": "~*req.Cost", "rounding_decimals": 4},
|
|
],
|
|
},
|
|
},
|
|
|
|
|
|
"attributes": {
|
|
"enabled": true,
|
|
},
|
|
|
|
|
|
"apiers": {
|
|
"enabled": true,
|
|
"caches_conns":["*internal"],
|
|
"scheduler_conns": ["*internal"],
|
|
"attributes_conns": ["*internal"], // connections to AttributeS for CDRExporter
|
|
},
|
|
|
|
}
|