Displaying 7 results from an estimated 7 matches for "ast_cdr".
Did you mean:
app_cdr
2010 Jan 07
1
voicemail /odbc problem
...g configured correctly but
messages are stored on the asterisk server instread of in the database.
System info
64 bit redhat RHEL 5.1
Asterisk 1.4.26
unixODBC installed
used makemenuselect to instal res_odbc and cdr_odbc
Back end database DB2
Database name voiceml
Tables created on server
AST_CDR
AST_CONFIG
VOICEMESSAGES
I've checked the unix ODBC side of things and I can connect to the DB2
database o.k.
I've set up
cdr_odbc.conf
[global]
dsn=voiceml
username=<usernme>
password=<password>
loguniqueid=yes
dispositionstring=yes
table=ast_cdr ;"cdr"...
2018 May 28
2
Dial to FastAGI application appears as 1-second CDR - how do I fix?
In my application, I am using AMI to run an Originate command between a channel and a dialplan application (NOT a context). In my case, the application I want to invoke is FastAGI. The Originate AMI command works correctly, but Asterisk generates a very
short (0-1s) duration for the CDR that results from this call, regardless of the time spent running the FastAGI application. I want the CDR
2008 Jul 07
1
cdr_addon_mysql - additional fields
.....
make[1]: Nothing to be done for `all'.
make[1]: Nothing to be done for `all'.
make[1]: Nothing to be done for `all'.
[CC] cdr_addon_mysql.c -> cdr_addon_mysql.o
cdr_addon_mysql.c: In function 'mysql_log':
cdr_addon_mysql.c:214: error: 'struct ast_cdr' has no member named
'team'
cdr_addon_mysql.c:215: error: 'struct ast_cdr' has no member named
'team'
cdr_addon_mysql.c:215: error: 'struct ast_cdr' has no member named
'team'
make[1]: *** [cdr_addon_mysql.o] Error 1
make: ***...
2014 Dec 23
0
CDR_TDS tries to write to ends column instead of end
Hi all
I'm trying to get Asterisk 1.8.11.0 to write to the ast_cdr table on an
MSSQL instance.
My problem is that the cdr_tds module insists on naming the end column as
"ends" - it tries to write to this column, which does not exist.
I get this in the CLI:
[Dec 23 09:25:17] NOTICE[2545]: cdr_tds.c:476 tds_message_handler: Invalid
column name 'ends...
2014 Dec 23
0
CDR_TDS tries to write to ends column instead of end
Hi all
<high embarrassment factor>
Managed to solve this. It wasn't Asterisk's fault, I had a trigger on the
ast_cdr table which was referrening to another table in my DB having an
"ends" column, when it should have been "end".
cdr_tds was literally just passing along the error it got from "deeper" in
the MSSQL table structure I'm using with Asterisk.
Sorry for the bother... al...
2009 Sep 07
1
Is not yet available ODBC support for queue_log in asterisk 1.6?
...sterisk.queue_log
/etc/asterisk/res_odbc.conf
[qlogrt]
enabled => yes
dsn => qlogrt
...
/etc/odbc.ini
[qlogrt]
Driver = PostgreSQL
Database = postgres
Servername = 192.168.X.X
UserName = user
Password = password
Port = 5432
...
/etc/asterisk/cdr_odbc.conf
[global]
dsn=qlogrt
table=asterisk.ast_cdr
...
Regards,
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090907/71dc695d/attachment.htm
2003 Jul 11
4
module : cdr_sybase.so
...static char *config = "cdr_sybase.conf";
static DBPROCESS *dbproc;
static LOGINREC *login;
static struct tm _date(struct timeval tv)
{
struct tm tm;
time_t t;
t = tv.tv_sec;
localtime_r(&t,&tm);
return tm;
}
static int sybase_log(struct ast_cdr *cdr)
{
struct tm tm, end, start, answer;
struct timeval tv;
struct timezone tz;
char *sqlcmd, timestr[128], timestart[128], timeend[128], timeanswer[128];
time_t t;
sqlcmd = (char *)malloc(2048);
memset(sqlcmd,0,2048);
start = _date(cdr->start);
end = _date(cdr->end);...