Navigation


Changeset 528:1b3b9790e7cb in freeDiameter for doc


Ignore:
Timestamp:
Sep 3, 2010, 4:46:16 PM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Add a new field in the app_acct.fdx database to receive the name of the local server.

Update your existing tables with the following SQL command:
ALTER TABLE "incoming" ADD "recorded_serv" bytea NOT NULL;

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/app_acct.conf.sample

    r527 r528  
    4545#
    4646# Note that at the moment, GROUPED AVP are not supported. Also, only the top-level AVPs are
    47 # search. This behavior can be changed quite easily if needed.
     47# searched. This behavior can be changed quite easily if needed.
    4848
    4949# The following list is informative only.
     
    108108
    109109# This is the database table corresponding to this list:
    110 # CREATE TABLE app_acct (
     110# CREATE TABLE incoming (
    111111#     "recorded_on" timestamp with time zone NOT NULL,
     112#     "recorded_serv" bytea NOT NULL,
    112113#     "Origin-Host" bytea NOT NULL,
    113114#     "Origin-Realm" bytea NOT NULL,
     
    195196# Optionaly, you can specify a name of a field that will receive the value 'now' when a new record is inserted.
    196197# Default: no timestamp is inserted.
    197 # Example: Timestamp_field = "inc_ts";
    198 
    199 
    200 
    201 
    202 
     198# Example: Timestamp_field = "recorded_on";
     199
     200# Server_name_field:
     201# Optionaly, you can specify a field which will receive the Diameter Identity of the local server for each record saved.
     202# This is useful especially if you have several Accounting servers and want to check Load-Balancing behavior or so,
     203# after aggregating all the data.
     204# Default: no server name inserted.
     205# Example: Server_name_field = "recorded_serv";
     206
     207
     208
Note: See TracChangeset for help on using the changeset viewer.