Skip to content

Commit b5cde89

Browse files
sems: Use port 5432 for CDR db (#168)
* sems: Use port 5432 for CDR db
1 parent 137e512 commit b5cde89

File tree

3 files changed

+32
-13
lines changed

3 files changed

+32
-13
lines changed

en/installation/installation-1.13/sems.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,15 +195,15 @@ Replace <SIGNALLING_IP>, <MEDIA_IP> with correct values for your server :
195195
function = writecdr
196196
master {
197197
host = 127.0.0.1
198-
port = 5433
198+
port = 5432
199199
name = cdr
200200
user = cdr
201201
pass = somepassword
202202
}
203203
failover_to_slave = false
204204
slave {
205205
host = 127.0.0.1
206-
port = 5433
206+
port = 5432
207207
name = cdr
208208
user = cdr
209209
pass = somepassword
@@ -286,7 +286,7 @@ Check logs using for possible errors:
286286

287287
.. code-block:: console
288288
289-
# journalctls -u sems
289+
# journalctl -u sems
290290
291291
292292

en/installation/installation-1.13/web.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To configure databases connection parameters create /opt/yeti-web/config/databas
4343
adapter: postgresql
4444
encoding: unicode
4545
database: cdr
46-
username: yeti
46+
username: cdr
4747
password: somepassword
4848
host: 127.0.0.1
4949
port: 5432

en/web-interface/billing/accounts.rst

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,16 @@ For each call:
1212
account balance will be **decreased** on call cost if it uses account for **origination** (customer)
1313
and **increased** if it uses account for **termination** (vendor).
1414

15-
1615
.. _account_id:
1716

1817
Id
19-
Unique account id.
18+
Auto-generated unique account id.
19+
20+
UUID
21+
Auto-generated unique account UUID. UUID used as identifier for :ref:`Customer API <customer_api>`
22+
23+
EXTERNAL
24+
**external_id** account attribute value. **external_id** stores ID from external system when data provisioned via :ref:`Admin API <admin_api>`
2025

2126
.. _account_name:
2227

@@ -41,15 +46,15 @@ Min balance
4146
Max balance
4247
If account balance become greater than this limit, then routes, which are belongs to this account, will not be used for calls termination.
4348

44-
.. _account_balance_low_threshold:
49+
VAT
50+
Account VAT value. Affects calculation of customer_price in CDR.
4551

46-
Balance low threshold
47-
If account balance become less than this limit, notification will be send by email.
52+
Destination rate limit
53+
Maximum per-minute price
4854

49-
.. _account_balance_high_threshold:
55+
Max call duration
56+
Maximum calls duration originated by account or terminated to account in seconds
5057

51-
Balance high threshold
52-
If account balance become greater than this limit, notification will be send by email.
5358

5459
Origination capacity
5560
Maximum capacity which can be originated for this account.
@@ -73,10 +78,24 @@ Invoice period
7378
Invoice template
7479
Template for generation of PDF invoice documents. (Templates can be configured at *Billing->Invoice templates*)
7580

76-
Sent invoices to
81+
Send invoices to
7782
Contacts list to send invoices that were generated.
7883

84+
Invoice Ref template
85+
Invoice reference generation template. Use **$id** as unique value per account.
86+
7987
Timezone
8088
Timezone which will be used for invoices generation and statistics for this account.
8189

8290

91+
.. _account_balance_low_threshold:
92+
93+
Balance low threshold
94+
If account balance become less than this limit, notification will be send by email.
95+
96+
.. _account_balance_high_threshold:
97+
98+
Balance high threshold
99+
If account balance become greater than this limit, notification will be send by email.
100+
101+

0 commit comments

Comments
 (0)