Navigation


Changes between Version 1 and Version 2 of app_acct.fdx


Ignore:
Timestamp:
Mar 3, 2011, 5:34:20 PM (13 years ago)
Author:
Administrator
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • app_acct.fdx

    v1 v2  
    11[[PageOutline(2-4)]]
    2 == Accounting Application ==
     2= Accounting Application =
    33
    4 This {{{app_acct.fdx}}} extension aims to provide a very simple and configurable implementation of the Diameter Base Accounting application defined in RFC3588.
     4This {{{app_acct.fdx}}} extension provides a very simple and configurable implementation of the Diameter Base Accounting application defined in RFC3588.
    55
    6 It must be seen as an '''intermediary''' component: the Diameter messages are parsed, and the accounting records are stored in a database, but no further treatment is performed. The intent is that an independent application (with no knowledge of Diameter required) will then process these records, reconstruct the session information, and store it in a format suitable for a billing application for example.
     6It must be seen as an ''intermediate'' component: the Diameter messages are parsed, and the accounting records are stored in a database, but no further treatment is performed. The intent is that an independent application (with no knowledge of the Diameter protocol required) will then process these records, reconstruct the session information, and store it in a format suitable for a billing application for example. See the [source:freeDiameter/contrib/app_acct_tools/ contrib/app_acct_tools/] folder for an example of such application.
    77
    8 Currently, the extension stores the information in a PostgreSQL database, where a third-party application can retrieve it.
    9 
     8The extension stores the information in a PostgreSQL database, where the third-party application can retrieve it:
    109{{{
    1110#!graphviz
     
    3837{{{app_acct.fdx}}} allows easy configuration of what information is stored in the database. See the section bellow for detail.
    3938
    40 === Configuration ===
     39== Configuration ==
    4140
    4241{{{app_acct.fdx}}} configuration file is mandatory. The complete configuration documentation can be found in the source package: [source:freeDiameter/doc/app_acct.conf.sample app_acct.conf.sample].
     
    4443The configuration is split in two parts. The first part is dedicated to mapping the information from Diameter AVP into database fields. The second part contains the access information to the database, and a few global options for the extension.
    4544
    46 === Usage ===
     45== Usage ==
    4746
    4847Since the application is not resistant to database access problems, it is highly recommended (although not mandatory) that the database is located on the same host as the {{{app_acct.fdx}}} application.
    4948
    50 === Output ===
     49== Output ==
    5150
    5251This application does not produce any particular output, except for entries in the database.
    5352
    54 === Troubleshooting ===
     53== Troubleshooting ==
    5554
     55If the freeDiameter framework refuses to start when it loads this extension, please check that the configuration of the extension matches the structure of the table in the database you have configured. You can get more information by incrementing the debug level (see main [wiki:Troubleshooting] page for information).
     56
     57----