Page 1 of 1

Call Log Downloading

Posted: Fri May 01, 2015 12:34 pm
by nschafer
Hello all,

We've only been on our Allworx system for a few weeks, but one thing I've noticed is that my Call Detail Log only holds about 2 - 3 days worth of data. That's not really enough when I need to track something down. I noticed that I can export my logs and have started doing that, but that means I have to remember to log into the system every day to download the logs. Since I'm a bit on the forgetful side I decided to write a small application that will login into my Allworx system and download the previous day logs automatically. I just use Windows scheduler to have the application run each day. If anyone is interested in this, just reply to this message and I'll make the application available.

Neal

Here's the URL to the application and instructions. I can't seem to make it a link: http://www.applicationgroup.com/develop ... orting.zip

5-20-15 I've made a minor update to the program. It would sometimes open the log instead of saving it. This should not happen any longer.

Re: Call Log Downloading

Posted: Mon May 04, 2015 1:36 pm
by Allworx6xCT
Hi Neal- that's pretty handy. I double checked our system and looks like we can go back about 30 days, but please go ahead and post your app.

Re: Call Log Downloading

Posted: Tue May 05, 2015 8:59 am
by nschafer
Chris,

I've added the URL for the application to my original post.

Neal.

Re: Call Log Downloading

Posted: Wed May 20, 2015 2:56 pm
by leetrans
Allworx has released a pretty nice software named Allworx view. It captures the logs from your pbx and has built in reporting tools!!

Re: Call Log Downloading

Posted: Wed Oct 28, 2015 3:26 pm
by star3132
Just adding my two cents, we have the call statistics being sent to a port via the streaming option in Report -> Call Details. We then have a Linux server running netcat to capture the data from that port, using the shell command "nc -d <allworx server ip> <call streaming port> >> /phone_logs/phone_log.txt &". This logs the call history in real-time to the /phone_logs/phone_log.txt file. It's the same connection that Allworx View uses i think. You could probably do in Windows if you found a NetCat variant for Windows.

Re: Call Log Downloading

Posted: Wed Jan 20, 2016 1:09 pm
by guama
I have ncat streaming to MySQL working and use it for historical reporting. I am now trying to get it to work for real time reporting. Anyone know how to determine if the call went to voicemail?

Re: Call Log Downloading

Posted: Wed Feb 21, 2018 12:22 am
by trice001
thanks

Re: Call Log Downloading

Posted: Fri Apr 27, 2018 9:15 am
by k12tek
Do you know of any way to get the time stamp of the calls included in the stream output? Or a way to get netcat to append the timestamp to each call?

Thank you.

Re: Call Log Downloading

Posted: Fri Apr 27, 2018 9:46 am
by k12tek
I think I've discovered that the timestamp is there, but it has to be converted in to something legible from Unix time format. I'll have to remember the conversion next time I have to look something up, but this is way better than settling for the 5000 or so lines of call history the allworx box gives me.

Re: Call Log Downloading

Posted: Tue Aug 21, 2018 5:04 am
by Ajaysis
H9