integration tests for janus agent

This commit is contained in:
gezimbll
2024-04-26 10:44:20 -04:00
committed by Dan Christian Bogos
parent 6ef3dc8599
commit 82b0e02788
4 changed files with 298 additions and 10 deletions

View File

@@ -0,0 +1,73 @@
{
// CGRateS Configuration file
//
"general": {
"log_level": 7,
},
"listen": {
"rpc_json": ":2012",
"rpc_gob": ":2013",
"http": ":2080",
},
"stor_db": {
"db_type": "*internal",
},
"rals": {
"enabled": true,
"max_increments":3000000,
},
"schedulers": {
"enabled": true,
},
"cdrs": {
"enabled": true,
"chargers_conns": ["*internal"],
"rals_conns": ["*internal"],
},
"attributes": {
"enabled": true,
},
"chargers": {
"enabled": true,
"attributes_conns": ["*internal"],
},
"sessions": {
"enabled": true,
"attributes_conns": ["*localhost"],
"cdrs_conns": ["*localhost"],
"rals_conns": ["*localhost"],
"chargers_conns": ["*internal"],
},
"apiers": {
"enabled": true,
"scheduler_conns": ["*internal"],
},
"janus_agent":{
"enabled":true,
"url":"/janus",
"janus_conns":[
{
"address":"ws://localhost:8188"
}
]
}
}