{ // CGRateS Configuration file // // Used for cgradmin // Starts rater, scheduler "general": { "log_level": 7, }, "listen": { "rpc_json": ":2012", // RPC JSON listening address "rpc_gob": ":2013", // RPC GOB listening address "http": ":2080", // HTTP listening address }, "data_db": { // database used to store runtime data (eg: accounts, cdr stats) "db_type": "mongo", // stor database type to use: "db_port": 27017, // the port to reach the stordb "db_name": "datadb", "db_password": "", }, "stor_db": { "db_type": "mongo", // stor database type to use: "db_port": 27017, // the port to reach the stordb "db_name": "stordb", "db_password": "", }, "rals": { "enabled": true, // enable Rater service: "max_computed_usage": { // do not compute usage higher than this, prevents memory overload "*any": "189h", "*voice": "72h", "*data": "102400", "*sms": "10000" }, }, "schedulers": { "enabled": true, // start Scheduler service: }, "cdrs": { "enabled": true, // start the CDR Server service: }, "resources": { "enabled": true, }, "attributes": { "enabled": true, }, "suppliers": { "enabled": true, }, "chargers": { "enabled": true, "attributes_conns": ["*internal"], }, "sessions": { "enabled": true, "session_ttl": "50ms", "rals_conns": ["*localhost"], "cdrs_conns": ["*localhost"], "chargers_conns": ["*internal"], "alterable_fields": ["Extra1"], }, "apiers": { "enabled": true, "scheduler_conns": ["*internal"], }, }