Files
cgrates/data/conf/samples/multifiles/c.json
2020-01-30 10:21:48 +01:00

46 lines
1.7 KiB
JSON

{
// CGRateS Configuration file
// Used in multifile configuration tests
// Should be the third file loaded
"cdre": {
"export1": {
"cost_rounding_decimals": 3, // rounding decimals for Cost values. -1 to disable rounding
"fields": [ // template of the exported content fields
{"path": "*exp.Tenant", "cdr_field_id": "tenant", "type": "cdrfield", "value": "tenant"},
{"path": "*exp.Category", "cdr_field_id": "category", "type": "cdrfield", "value": "category"},
{"path": "*exp.Account", "cdr_field_id": "account", "type": "cdrfield", "value": "account"},
{"path": "*exp.Subject", "cdr_field_id": "subject", "type": "cdrfield", "value": "subject"},
{"path": "*exp.Destination", "cdr_field_id": "destination", "type": "cdrfield", "value": "destination"},
{"path": "*exp.SetupTime", "cdr_field_id": "setup_time", "type": "cdrfield", "value": "setup_time", "layout": "2006-01-02T15:04:05Z07:00"},
{"path": "*exp.AnswerTime", "cdr_field_id": "answer_time", "type": "cdrfield", "value": "answer_time", "layout": "2006-01-02T15:04:05Z07:00"},
{"path": "*exp.Usage", "cdr_field_id": "usage", "type": "cdrfield", "value": "usage"},
{"path": "*exp.Cost", "cdr_field_id": "cost", "type": "cdrfield", "value": "cost"},
], // template of the exported header fields
}
},
"http_agent": [
{
"id": "conecto_xml",
"url": "/conecto_xml",
"sessions_conns": ["*localhost"],
"request_payload": "*xml",
"reply_payload": "*xml",
"request_processors": [
{
"id": "cdr_from_xml",
"tenant": "cgrates.org",
"flags": ["*cdrs"],
"request_fields":[
{"tag": "ToR", "path": "ToR", "type": "*constant",
"value": "*data", "mandatory": true},
],
"reply_fields":[],
}
],
},
],
}