mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-22 15:48:44 +05:00
21 lines
683 B
JSON
21 lines
683 B
JSON
{
|
|
"cdrs": {
|
|
"enabled": true, // start the CDR Server service: <true|false>
|
|
"rater": "127.0.0.1:2014", // address where to reach the Rater for cost calculation, empty to disable functionality: <""|internal|x.y.z.y:1234>
|
|
"cdrstats": "", // address where to reach the cdrstats service, empty to disable stats functionality<""|internal|x.y.z.y:1234>
|
|
},
|
|
|
|
"sm_generic": {
|
|
"enabled": true,
|
|
"listen_bijson": "127.0.0.1:3015",
|
|
"rater_conns": [
|
|
{"server": "127.0.0.1:2014"},
|
|
{"server": "127.0.0.1:2016"}
|
|
],
|
|
"cdrs_conns": [
|
|
{"server": "internal"} // address where to reach CDR Server, empty to disable CDR capturing <internal|x.y.z.y:1234>
|
|
],
|
|
},
|
|
|
|
}
|