Files
cgrates/data/conf/samples/precache/tutmysql/cgrates.json
2022-04-21 15:27:27 +02:00

60 lines
1.8 KiB
JSON

{
// 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
},
"caches":{
"partitions": {
"*resource_profiles": {"limit": 10000, "ttl":"0s", "precache": true},
"*resources": {"limit": 10000, "ttl":"0s", "precache": true},
"*statqueues": {"limit": 10000, "ttl":"0s", "precache": true},
"*statqueue_profiles": {"limit": 10000, "ttl":"0s", "precache": true},
"*thresholds": {"limit": 10000, "ttl":"0s", "precache": true},
"*threshold_profiles": {"limit": 10000, "ttl":"0s", "precache": true},
"*filters": {"limit": 10000, "ttl":"0s", "precache": true},
"*route_profiles": {"limit": 10000, "ttl":"0s", "precache": true},
"*attribute_profiles": {"limit": 10000, "ttl":"0s", "precache": true},
"*resource_filter_indexes" :{"limit": 10000, "ttl":"0s", "precache": true},
"*stat_filter_indexes" : {"limit": 10000, "ttl":"0s", "precache": true},
"*threshold_filter_indexes" : {"limit": 10000, "ttl":"0s", "precache": true},
"*route_filter_indexes" : {"limit": 10000, "ttl":"0s", "precache": true},
"*attribute_filter_indexes" : {"limit": 10000, "ttl":"0s", "precache": true},
"*charger_filter_indexes" : {"limit": 10000, "ttl":"0s", "precache": true},
"*dispatcher_profiles" : {"limit": 10000, "ttl":"0s", "precache": true},
"*dispatcher_hosts" : {"limit": 10000, "ttl":"0s", "precache": true},
"*dispatcher_routes" : {"limit": 10000, "ttl":"0s", "precache": false},
},
},
"migrator":{
"users_filters":["Account"],
},
"admins": {
"enabled": true,
},
}