Sponsor: VoiceMeUp - Corporate & Wholesale VoIP Services

VoIP Mailing List Archives
Mailing list archives for the VoIP community
 SearchSearch 

[Freeswitch-users] How to calculate PDD for a call


 
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users
View previous topic :: View next topic  
Author Message
anthony.minessale at g...
Guest





PostPosted: Wed Oct 22, 2008 8:46 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

The value is calculated for you and is available as a channel variable that can be used
in the cdr template or in your script.

at any time in a current call you have the variables progress_time and progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to get regular epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:
Quote:

I want to calculate PDD (Post Dial Delay) for a call starting from when the
call was originated from fs upto the time when the number starts ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate PDD for a call.
Any help would be appreciated.
--
View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
pmhshz at gmail.com
Guest





PostPosted: Wed Oct 22, 2008 8:54 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel variable
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables progress_time and
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to get
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting from when
the
call was originated from fs upto the time when the number starts ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate PDD for a
call.
Any help would be appreciated.
--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com <MSN%3Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org <sip%3A888@conference.freeswitch.org>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110864.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
pmhshz at gmail.com
Guest





PostPosted: Wed Oct 22, 2008 11:30 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not possible.

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel variable
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables progress_time and
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to get
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting from when
the
call was originated from fs upto the time when the number starts
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate PDD for a
call.
Any help would be appreciated.
--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com <MSN%3Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org <sip%3A888@conference.freeswitch.org>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Wed Oct 22, 2008 1:42 pm    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

the variables would be set on the b leg of the call not the a leg so you would get them
from the cdr.

Since this is a pain for some people I added code so this information will be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:
Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not possible.

Thanks again..



shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel variable
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables progress_time and
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to get
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting from when
the
call was originated from fs upto the time when the number starts
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate PDD for a
call.
Any help would be appreciated.
--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email]) <MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email]) <sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--


View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html

Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
wasim at convergence.pk
Guest





PostPosted: Wed Oct 22, 2008 10:06 pm    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

On Thu, Oct 23, 2008 at 12:26 AM, Anthony Minessale <anthony.minessale@gmail.com (anthony.minessale@gmail.com)> wrote:
Quote:
the variables would be set on the b leg of the call not the a leg so you would get them
from the cdr.

Since this is a pain for some people I added code so this information will be set on the A leg too
so update and try it now Wink

wunderful, tony ... mucho gracias ...



--
wasim h. baig | principal consultant | convergence pk | +92 300 8508070 | as you scope creep, so shall we reap ...
Back to top
pmhshz at gmail.com
Guest





PostPosted: Thu Oct 23, 2008 2:59 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

Its works, cool!
Thanks Minessale again
and also thanks to those all related to development of FS
FS rocks!

Anthony Minessale-2 wrote:
Quote:

the variables would be set on the b leg of the call not the a leg so you
would get them
from the cdr.

Since this is a pain for some people I added code so this information will
be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not possible.

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel variable
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables progress_time and
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to get
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting from
when
Quote:
Quote:
Quote:
the
call was originated from fs upto the time when the number starts
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate PDD for
a
Quote:
Quote:
Quote:
call.
Any help would be appreciated.
--
View this message in context:

http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com
<MSN%3Aanthony_minessale@hotmail.com><
MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org
<sip%3A888@conference.freeswitch.org><
sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
Quote:

Quote:
iax:guest@conference.freeswitch.org/888

googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com <MSN%3Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org <sip%3A888@conference.freeswitch.org>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20125957.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
pmhshz at gmail.com
Guest





PostPosted: Thu Oct 23, 2008 3:18 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

Hi again,
Now i found two pdds one for A leg and one for B leg
Both is different B leg's pdd is lower then A's pdd.

Will any body let me know how PDD is calculated for both legs in FS.

Thanks


shehzad p wrote:
Quote:

Its works, cool!
Thanks Minessale again
and also thanks to those all related to development of FS
FS rocks!

Anthony Minessale-2 wrote:
Quote:

the variables would be set on the b leg of the call not the a leg so you
would get them
from the cdr.

Since this is a pain for some people I added code so this information
will
be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not possible.

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel
variable
Quote:
Quote:
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables progress_time
and
Quote:
Quote:
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to get
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting from
when
Quote:
Quote:
Quote:
the
call was originated from fs upto the time when the number starts
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate PDD for
a
Quote:
Quote:
Quote:
call.
Any help would be appreciated.
--
View this message in context:

http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com
<MSN%3Aanthony_minessale@hotmail.com><
MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org
<sip%3A888@conference.freeswitch.org><
sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
Quote:

Quote:
iax:guest@conference.freeswitch.org/888

googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com <MSN%3Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org <sip%3A888@conference.freeswitch.org>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20126320.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Thu Oct 23, 2008 8:07 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

How much lower?
it's microsecond accuracy afterall.

There is just a timestamp set when a 180 or 183 is received.
its calculated by subtracting that time from the time the call origination started.


On Thu, Oct 23, 2008 at 3:09 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:
Quote:

Hi again,
Now i found two pdds one for A leg and one for B leg
Both is different B leg's pdd is lower then A's pdd.

Will any body let me know how PDD is calculated for both legs in FS.

Thanks



shehzad p wrote:
Quote:

Its works, cool!
Thanks Minessale again
and also thanks to those all related to development of FS
FS rocks!

Anthony Minessale-2 wrote:
Quote:

the variables would be set on the b leg of the call not the a leg so you
would get them
from the cdr.

Since this is a pain for some people I added code so this information
will
be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:

Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not possible.

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel
variable
Quote:
Quote:
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables progress_time
and
Quote:
Quote:
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to get
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting from
when
Quote:
Quote:
Quote:
the
call was originated from fs upto the time when the number starts
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate PDD for
a
Quote:
Quote:
Quote:
call.
Any help would be appreciated.
--
View this message in context:

http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])><
MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])><
sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
Quote:

Quote:
iax:guest@conference.freeswitch.org/888

googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email]) <MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email]) <sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--


View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20126320.html

Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
pmhshz at gmail.com
Guest





PostPosted: Fri Oct 24, 2008 4:37 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

Difference is about 100 to 300
Yes as it is in measured in microseconds, no need to consider that
difference
Its Great!


Anthony Minessale-2 wrote:
Quote:

How much lower?
it's microsecond accuracy afterall.

There is just a timestamp set when a 180 or 183 is received.
its calculated by subtracting that time from the time the call origination
started.


On Thu, Oct 23, 2008 at 3:09 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

Hi again,
Now i found two pdds one for A leg and one for B leg
Both is different B leg's pdd is lower then A's pdd.

Will any body let me know how PDD is calculated for both legs in FS.

Thanks


shehzad p wrote:
Quote:

Its works, cool!
Thanks Minessale again
and also thanks to those all related to development of FS
FS rocks!

Anthony Minessale-2 wrote:
Quote:

the variables would be set on the b leg of the call not the a leg so
you
Quote:
Quote:
would get them
from the cdr.

Since this is a pain for some people I added code so this information
will
be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not
possible.
Quote:
Quote:
Quote:

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel
variable
Quote:
Quote:
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables progress_time
and
Quote:
Quote:
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to
get
Quote:
Quote:
Quote:
Quote:
Quote:
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com>
wrote:
Quote:
Quote:
Quote:
Quote:
Quote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting
from
Quote:
Quote:
Quote:
when
Quote:
Quote:
Quote:
the
call was originated from fs upto the time when the number starts
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate PDD
for
Quote:
Quote:
Quote:
a
Quote:
Quote:
Quote:
call.
Any help would be appreciated.
--
View this message in context:


http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at
Nabble.com.
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com<MSN%3Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
Quote:
<
MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
Quote:

Quote:
Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org<sip%3A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
Quote:
<
sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
Quote:

Quote:
Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888


googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
Quote:

Quote:
Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:

http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com
<MSN%3Aanthony_minessale@hotmail.com><
MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org
<sip%3A888@conference.freeswitch.org><
sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
Quote:

Quote:
iax:guest@conference.freeswitch.org/888

googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20126320.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com <MSN%3Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org <sip%3A888@conference.freeswitch.org>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20146995.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Fri Oct 24, 2008 12:26 pm    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

now you can use those 2 values to calculate how many microseconds it took to pass 180 from leg b to leg a Wink


On Fri, Oct 24, 2008 at 4:28 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:
Quote:


Difference is about 100 to 300
Yes as it is in measured in microseconds, no need to consider that
difference
Its Great!



Anthony Minessale-2 wrote:
Quote:

How much lower?
it's microsecond accuracy afterall.

There is just a timestamp set when a 180 or 183 is received.
its calculated by subtracting that time from the time the call origination
started.


On Thu, Oct 23, 2008 at 3:09 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:

Quote:

Hi again,
Now i found two pdds one for A leg and one for B leg
Both is different B leg's pdd is lower then A's pdd.

Will any body let me know how PDD is calculated for both legs in FS.

Thanks


shehzad p wrote:
Quote:

Its works, cool!
Thanks Minessale again
and also thanks to those all related to development of FS
FS rocks!

Anthony Minessale-2 wrote:
Quote:

the variables would be set on the b leg of the call not the a leg so
you
Quote:
Quote:
would get them
from the cdr.

Since this is a pain for some people I added code so this information
will
be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:

Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not
possible.
Quote:
Quote:
Quote:

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel
variable
Quote:
Quote:
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables progress_time
and
Quote:
Quote:
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to
get
Quote:
Quote:
Quote:
Quote:
Quote:
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)>
wrote:
Quote:
Quote:
Quote:
Quote:
Quote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting
from
Quote:
Quote:
Quote:
when
Quote:
Quote:
Quote:
the
call was originated from fs upto the time when the number starts
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate PDD
for
Quote:
Quote:
Quote:
a
Quote:
Quote:
Quote:
call.
Any help would be appreciated.
--
View this message in context:


http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at
Nabble.com.
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
Quote:
<
MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>


Quote:
Quote:
<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>

Quote:
Quote:
<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])>
Quote:

Quote:
Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
Quote:
<
sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>

Quote:
Quote:
<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888


googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>

Quote:
Quote:
<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])>

Quote:
Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:

http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])><
MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])><
sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
Quote:

Quote:
iax:guest@conference.freeswitch.org/888

googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:


Quote:
Quote:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20126320.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email]) <MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email]) <sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--

View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20146995.html

Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
pmhshz at gmail.com
Guest





PostPosted: Fri Oct 31, 2008 5:05 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

Hi again,

Today when I calculated the PDD with ngrep:
I got following ngrep trace :Only invite and 183 is displayed here (note the
time stamp):
######################################################
U 2008/10/31 02:58:47.480059 xx.xx.xxx.xx:5060 -> fs.fs.fsfs.fs:5060
INVITE sip:12127773456@fs.fs.fsfs.fs SIP/2.0.

U 2008/10/31 02:58:49.982140 fs.fs.fsfs.fs:5060 -> xx.xx.xxx.x:5060
SIP/2.0 183 Session Progress.
######################################################

In my code I got 2540 figure in "progressmsec" variable, for above test
call.
As previously told we are getting this in microseconds, converting it into
seconds will give 0.0025 seconds.

But above ngrep shows that it is minimum 2.5 seconds.

So I think PDD given by "progressmsec" is in milliseconds and NOT
mircoseconds.
Is it correct?

Thanks
MSP


Anthony Minessale-2 wrote:
Quote:

now you can use those 2 values to calculate how many microseconds it took
to
pass 180 from leg b to leg a Wink


On Fri, Oct 24, 2008 at 4:28 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:


Difference is about 100 to 300
Yes as it is in measured in microseconds, no need to consider that
difference
Its Great!


Anthony Minessale-2 wrote:
Quote:

How much lower?
it's microsecond accuracy afterall.

There is just a timestamp set when a 180 or 183 is received.
its calculated by subtracting that time from the time the call
origination
Quote:
started.


On Thu, Oct 23, 2008 at 3:09 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

Hi again,
Now i found two pdds one for A leg and one for B leg
Both is different B leg's pdd is lower then A's pdd.

Will any body let me know how PDD is calculated for both legs in FS.

Thanks


shehzad p wrote:
Quote:

Its works, cool!
Thanks Minessale again
and also thanks to those all related to development of FS
FS rocks!

Anthony Minessale-2 wrote:
Quote:

the variables would be set on the b leg of the call not the a leg
so
Quote:
Quote:
you
Quote:
Quote:
would get them
from the cdr.

Since this is a pain for some people I added code so this
information
Quote:
Quote:
Quote:
Quote:
will
be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com>
wrote:
Quote:
Quote:
Quote:
Quote:

Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not
possible.
Quote:
Quote:
Quote:

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel
variable
Quote:
Quote:
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables
progress_time
Quote:
Quote:
Quote:
Quote:
Quote:
and
Quote:
Quote:
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to
get
Quote:
Quote:
Quote:
Quote:
Quote:
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com>
wrote:
Quote:
Quote:
Quote:
Quote:
Quote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting
from
Quote:
Quote:
Quote:
when
Quote:
Quote:
Quote:
the
call was originated from fs upto the time when the number
starts
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate
PDD
Quote:
Quote:
for
Quote:
Quote:
Quote:
a
Quote:
Quote:
Quote:
call.
Any help would be appreciated.
--
View this message in context:



http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at
Nabble.com.
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com
<MSN%3Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
Quote:

Quote:
Quote:
<

MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%25253Aanthony_minessale@hotmail.com<MSN%2525253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%25253Aanthony.minessale@gmail.com<PAYPAL%2525253Aanthony.minessale@gmail.com>
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org
<sip%3A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
Quote:

Quote:
Quote:
<

sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%25253A888@conference.freeswitch.org<sip%2525253A888@conference.freeswitch.org>
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888



googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%25253Aconf%25252B888@conference.freeswitch.org<googletalk%2525253Aconf%2525252B888@conference.freeswitch.org>
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:


http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com<MSN%3Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
Quote:
<
MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
Quote:

Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org<sip%3A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
Quote:
<
sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
Quote:

Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888


googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
Quote:

Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:

http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20126320.html
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com
<MSN%3Aanthony_minessale@hotmail.com><
MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
Quote:

IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org
<sip%3A888@conference.freeswitch.org><
sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
Quote:

iax:guest@conference.freeswitch.org/888

googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
Quote:

pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users

UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
http://www.freeswitch.org



--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20146995.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com <MSN%3Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org <sip%3A888@conference.freeswitch.org>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20262913.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
anthony.minessale at g...
Guest





PostPosted: Fri Oct 31, 2008 8:33 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

correct progressusec is microseconds.


On Fri, Oct 31, 2008 at 5:04 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:
Quote:

Hi again,

Today when I calculated the PDD with ngrep:
I got following ngrep trace :Only invite and 183 is displayed here (note the
time stamp):
######################################################
U 2008/10/31 02:58:47.480059 xx.xx.xxx.xx:5060 -> fs.fs.fsfs.fs:5060
INVITE sip:12127773456@fs.fs.fsfs.fs SIP/2.0.

U 2008/10/31 02:58:49.982140 fs.fs.fsfs.fs:5060 -> xx.xx.xxx.x:5060
SIP/2.0 183 Session Progress.
######################################################

In my code I got 2540 figure in "progressmsec" variable, for above test
call.
As previously told we are getting this in microseconds, converting it into
seconds will give 0.0025 seconds.

But above ngrep shows that it is minimum 2.5 seconds.

So I think PDD given by "progressmsec" is in milliseconds and NOT
mircoseconds.
Is it correct?

Thanks
MSP



Anthony Minessale-2 wrote:
Quote:

now you can use those 2 values to calculate how many microseconds it took
to
pass 180 from leg b to leg a Wink


On Fri, Oct 24, 2008 at 4:28 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:

Quote:


Difference is about 100 to 300
Yes as it is in measured in microseconds, no need to consider that
difference
Its Great!


Anthony Minessale-2 wrote:
Quote:

How much lower?
it's microsecond accuracy afterall.

There is just a timestamp set when a 180 or 183 is received.
its calculated by subtracting that time from the time the call
origination
Quote:
started.


On Thu, Oct 23, 2008 at 3:09 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:

Quote:

Hi again,
Now i found two pdds one for A leg and one for B leg
Both is different B leg's pdd is lower then A's pdd.

Will any body let me know how PDD is calculated for both legs in FS.

Thanks


shehzad p wrote:
Quote:

Its works, cool!
Thanks Minessale again
and also thanks to those all related to development of FS
FS rocks!

Anthony Minessale-2 wrote:
Quote:

the variables would be set on the b leg of the call not the a leg
so
Quote:
Quote:
you
Quote:
Quote:
would get them
from the cdr.

Since this is a pain for some people I added code so this
information
Quote:
Quote:
Quote:
Quote:
will
be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)>
wrote:
Quote:
Quote:
Quote:
Quote:

Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not
possible.
Quote:
Quote:
Quote:

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel
variable
Quote:
Quote:
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables
progress_time
Quote:
Quote:
Quote:
Quote:
Quote:
and
Quote:
Quote:
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to
get
Quote:
Quote:
Quote:
Quote:
Quote:
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)>
wrote:
Quote:
Quote:
Quote:
Quote:
Quote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting
from
Quote:
Quote:
Quote:
when
Quote:
Quote:
Quote:
the
call was originated from fs upto the time when the number
starts
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate
PDD
Quote:
Quote:
for
Quote:
Quote:
Quote:
a
Quote:
Quote:
Quote:
call.
Any help would be appreciated.
--
View this message in context:



http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at
Nabble.com.
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])>
Quote:

Quote:
Quote:
<

MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])>
<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])>


Quote:
Quote:
<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])<MSN%2525253Aanthony_minessale@hotmail.com ([email]MSN%252525253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])>

Quote:
Quote:
<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])<PAYPAL%2525253Aanthony.minessale@gmail.com ([email]PAYPAL%252525253Aanthony.minessale@gmail.com[/email])>
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:
<

sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])>
<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])>

Quote:
Quote:
<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])<sip%2525253A888@conference.freeswitch.org ([email]sip%252525253A888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888



googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])>
<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])>

Quote:
Quote:
<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])<googletalk%2525253Aconf%2525252B888@conference.freeswitch.org ([email]googletalk%252525253Aconf%252525252B888@conference.freeswitch.org[/email])>

Quote:
Quote:
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:


http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
Quote:
<
MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])>
Quote:

Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
Quote:
<
sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888


googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:




Quote:
Quote:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20126320.html
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])><
MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
Quote:

IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])><
sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
Quote:

iax:guest@conference.freeswitch.org/888

googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
Quote:

pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users

UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
http://www.freeswitch.org



--
View this message in context:


Quote:
Quote:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20146995.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email]) <MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email]) <sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--

View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20262913.html

Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org





--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])
pstn:213-799-1400
Back to top
msc at freeswitch.org
Guest





PostPosted: Fri Oct 31, 2008 2:59 pm    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

Shezad,

progressmsec is indeed milliseconds. Microseconds are listed as usec. See here for more info:
http://wiki.freeswitch.org/wiki/Mod_xml_cdr#Examples

It specifies which values are seconds, milliseconds, and microseconds. It also has a sample XML CDR record to look at which contains the same kinds of variables that you are pulling info from.

-MC

On Fri, Oct 31, 2008 at 3:04 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:
Quote:

Hi again,

Today when I calculated the PDD with ngrep:
I got following ngrep trace :Only invite and 183 is displayed here (note the
time stamp):
######################################################
U 2008/10/31 02:58:47.480059 xx.xx.xxx.xx:5060 -> fs.fs.fsfs.fs:5060
INVITE sip:12127773456@fs.fs.fsfs.fs SIP/2.0.

U 2008/10/31 02:58:49.982140 fs.fs.fsfs.fs:5060 -> xx.xx.xxx.x:5060
SIP/2.0 183 Session Progress.
######################################################

In my code I got 2540 figure in "progressmsec" variable, for above test
call.
As previously told we are getting this in microseconds, converting it into
seconds will give 0.0025 seconds.

But above ngrep shows that it is minimum 2.5 seconds.

So I think PDD given by "progressmsec" is in milliseconds and NOT
mircoseconds.
Is it correct?

Thanks
MSP


Anthony Minessale-2 wrote:
Quote:

now you can use those 2 values to calculate how many microseconds it took
to
pass 180 from leg b to leg a Wink


On Fri, Oct 24, 2008 at 4:28 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:

Quote:


Difference is about 100 to 300
Yes as it is in measured in microseconds, no need to consider that
difference
Its Great!


Anthony Minessale-2 wrote:
Quote:

How much lower?
it's microsecond accuracy afterall.

There is just a timestamp set when a 180 or 183 is received.
its calculated by subtracting that time from the time the call
origination
Quote:
started.


On Thu, Oct 23, 2008 at 3:09 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)> wrote:

Quote:

Hi again,
Now i found two pdds one for A leg and one for B leg
Both is different B leg's pdd is lower then A's pdd.

Will any body let me know how PDD is calculated for both legs in FS.

Thanks


shehzad p wrote:
Quote:

Its works, cool!
Thanks Minessale again
and also thanks to those all related to development of FS
FS rocks!

Anthony Minessale-2 wrote:
Quote:

the variables would be set on the b leg of the call not the a leg
so
Quote:
Quote:
you
Quote:
Quote:
would get them
from the cdr.

Since this is a pain for some people I added code so this
information
Quote:
Quote:
Quote:
Quote:
will
be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)>
wrote:
Quote:
Quote:
Quote:
Quote:

Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not
possible.
Quote:
Quote:
Quote:

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a channel
variable
Quote:
Quote:
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables
progress_time
Quote:
Quote:
Quote:
Quote:
Quote:
and
Quote:
Quote:
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000 to
get
Quote:
Quote:
Quote:
Quote:
Quote:
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p <pmhshz@gmail.com (pmhshz@gmail.com)>
wrote:
Quote:
Quote:
Quote:
Quote:
Quote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call starting
from
Quote:
Quote:
Quote:
when
Quote:
Quote:
Quote:
the
call was originated from fs upto the time when the number
starts
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I calculate
PDD
Quote:
Quote:
for
Quote:
Quote:
Quote:
a
Quote:
Quote:
Quote:
call.
Any help would be appreciated.
--
View this message in context:



http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at
Nabble.com.
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])>
Quote:

Quote:
Quote:
<

MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])>
<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])>
<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])<MSN%2525253Aanthony_minessale@hotmail.com ([email]MSN%252525253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])<PAYPAL%2525253Aanthony.minessale@gmail.com ([email]PAYPAL%252525253Aanthony.minessale@gmail.com[/email])>
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:
<

sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])>
<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])>
<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])<sip%2525253A888@conference.freeswitch.org ([email]sip%252525253A888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888



googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])>
<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])>
<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])<googletalk%2525253Aconf%2525252B888@conference.freeswitch.org ([email]googletalk%252525253Aconf%252525252B888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:


http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
Quote:
<
MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])<MSN%25253Aanthony_minessale@hotmail.com ([email]MSN%2525253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])<PAYPAL%25253Aanthony.minessale@gmail.com ([email]PAYPAL%2525253Aanthony.minessale@gmail.com[/email])>
Quote:

Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
Quote:
<
sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])<sip%25253A888@conference.freeswitch.org ([email]sip%2525253A888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888


googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])<googletalk%25253Aconf%25252B888@conference.freeswitch.org ([email]googletalk%2525253Aconf%2525252B888@conference.freeswitch.org[/email])>
Quote:

Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:

http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20126320.html
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email])
<MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])><
MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])<MSN%253Aanthony_minessale@hotmail.com ([email]MSN%25253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])<PAYPAL%253Aanthony.minessale@gmail.com ([email]PAYPAL%25253Aanthony.minessale@gmail.com[/email])>
Quote:

IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email])
<sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])><
sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])<sip%253A888@conference.freeswitch.org ([email]sip%25253A888@conference.freeswitch.org[/email])>
Quote:

iax:guest@conference.freeswitch.org/888

googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])<googletalk%253Aconf%252B888@conference.freeswitch.org ([email]googletalk%25253Aconf%25252B888@conference.freeswitch.org[/email])>
Quote:

pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users

UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
http://www.freeswitch.org



--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20146995.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com ([email]MSN%3Aanthony_minessale@hotmail.com[/email]) <MSN%3Aanthony_minessale@hotmail.com ([email]MSN%253Aanthony_minessale@hotmail.com[/email])>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com ([email]PAYPAL%3Aanthony.minessale@gmail.com[/email])<PAYPAL%3Aanthony.minessale@gmail.com ([email]PAYPAL%253Aanthony.minessale@gmail.com[/email])>
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org ([email]sip%3A888@conference.freeswitch.org[/email]) <sip%3A888@conference.freeswitch.org ([email]sip%253A888@conference.freeswitch.org[/email])>
iax:guest@conference.freeswitch.org/888
googletalk:conf+888@conference.freeswitch.org ([email]googletalk%3Aconf%2B888@conference.freeswitch.org[/email])<googletalk%3Aconf%2B888@conference.freeswitch.org ([email]googletalk%253Aconf%252B888@conference.freeswitch.org[/email])>
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20262913.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org (Freeswitch-users@lists.freeswitch.org)
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
pmhshz at gmail.com
Guest





PostPosted: Sat Nov 01, 2008 12:38 am    Post subject: [Freeswitch-users] How to calculate PDD for a call Reply with quote

Thanks Michael, for your kind support.
My misunderstanding is resolved now.

MSP


Michael S Collins-2 wrote:
Quote:

Shezad,

progressmsec is indeed milliseconds. Microseconds are listed as usec. See
here for more info:
http://wiki.freeswitch.org/wiki/Mod_xml_cdr#Examples

It specifies which values are seconds, milliseconds, and microseconds. It
also has a sample XML CDR record to look at which contains the same kinds
of
variables that you are pulling info from.

-MC

On Fri, Oct 31, 2008 at 3:04 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

Hi again,

Today when I calculated the PDD with ngrep:
I got following ngrep trace :Only invite and 183 is displayed here (note
the
time stamp):
######################################################
U 2008/10/31 02:58:47.480059 xx.xx.xxx.xx:5060 -> fs.fs.fsfs.fs:5060
INVITE sip:12127773456@fs.fs.fsfs.fs SIP/2.0.

U 2008/10/31 02:58:49.982140 fs.fs.fsfs.fs:5060 -> xx.xx.xxx.x:5060
SIP/2.0 183 Session Progress.
######################################################

In my code I got 2540 figure in "progressmsec" variable, for above test
call.
As previously told we are getting this in microseconds, converting it
into
seconds will give 0.0025 seconds.

But above ngrep shows that it is minimum 2.5 seconds.

So I think PDD given by "progressmsec" is in milliseconds and NOT
mircoseconds.
Is it correct?

Thanks
MSP


Anthony Minessale-2 wrote:
Quote:

now you can use those 2 values to calculate how many microseconds it
took
Quote:
to
pass 180 from leg b to leg a Wink


On Fri, Oct 24, 2008 at 4:28 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:


Difference is about 100 to 300
Yes as it is in measured in microseconds, no need to consider that
difference
Its Great!


Anthony Minessale-2 wrote:
Quote:

How much lower?
it's microsecond accuracy afterall.

There is just a timestamp set when a 180 or 183 is received.
its calculated by subtracting that time from the time the call
origination
Quote:
started.


On Thu, Oct 23, 2008 at 3:09 AM, shehzad p <pmhshz@gmail.com> wrote:

Quote:

Hi again,
Now i found two pdds one for A leg and one for B leg
Both is different B leg's pdd is lower then A's pdd.

Will any body let me know how PDD is calculated for both legs in
FS.
Quote:
Quote:
Quote:
Quote:

Thanks


shehzad p wrote:
Quote:

Its works, cool!
Thanks Minessale again
and also thanks to those all related to development of FS
FS rocks!

Anthony Minessale-2 wrote:
Quote:

the variables would be set on the b leg of the call not the a
leg
Quote:
Quote:
so
Quote:
Quote:
you
Quote:
Quote:
would get them
from the cdr.

Since this is a pain for some people I added code so this
information
Quote:
Quote:
Quote:
Quote:
will
be set on the A leg too
so update and try it now Wink


On Wed, Oct 22, 2008 at 11:19 AM, shehzad p <pmhshz@gmail.com>
wrote:
Quote:
Quote:
Quote:
Quote:

Quote:

Hi Minessale,

I got problem with those variables:
all the variables you have suggested remain 0 .
means i get the PDD in 0 seconds or microseconds which is not
possible.
Quote:
Quote:
Quote:

Thanks again..


shehzad p wrote:
Quote:

Thanks a lot Minessale, Its great.
"FS rocks"


Anthony Minessale-2 wrote:
Quote:

The value is calculated for you and is available as a
channel
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
variable
Quote:
Quote:
that
can be used
in the cdr template or in your script.

at any time in a current call you have the variables
progress_time
Quote:
Quote:
Quote:
Quote:
Quote:
and
Quote:
Quote:
progress_media_time
which is a microsecond epoch timestamp (divide it by 1000000
to
Quote:
Quote:
Quote:
Quote:
get
Quote:
Quote:
Quote:
Quote:
Quote:
regular
epoch time)


once the channel has been hungup you have the variables
progresssec pdd to 180 in seconds
progressmsec pdd to 180 in microsec
progress_mediasec pdd to 183 in sec
profress_mediamsec pdd to 183 in microsec



On Wed, Oct 22, 2008 at 7:55 AM, shehzad p
<pmhshz@gmail.com>
Quote:
Quote:
Quote:
Quote:
wrote:
Quote:
Quote:
Quote:
Quote:
Quote:

Quote:

I want to calculate PDD (Post Dial Delay) for a call
starting
Quote:
Quote:
Quote:
Quote:
from
Quote:
Quote:
Quote:
when
Quote:
Quote:
Quote:
the
call was originated from fs upto the time when the number
starts
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
ringing.
(When fs receives 180 ringing from receiver side).

I am originating call from js script. So how can I
calculate
Quote:
Quote:
PDD
Quote:
Quote:
for
Quote:
Quote:
Quote:
a
Quote:
Quote:
Quote:
call.
Any help would be appreciated.
--
View this message in context:




http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20110120.html
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at
Nabble.com.
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org

http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm


MSN:anthony_minessale@hotmail.com<MSN%3Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%25253Aanthony_minessale@hotmail.com<MSN%2525253Aanthony_minessale@hotmail.com>
Quote:

Quote:
Quote:

Quote:
Quote:
<


MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%25253Aanthony_minessale@hotmail.com<MSN%2525253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%25253Aanthony_minessale@hotmail.com<MSN%2525253Aanthony_minessale@hotmail.com>
<MSN%25253Aanthony_minessale@hotmail.com<MSN%2525253Aanthony_minessale@hotmail.com>
<MSN%2525253Aanthony_minessale@hotmail.com<MSN%252525253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%25253Aanthony.minessale@gmail.com<PAYPAL%2525253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%25253Aanthony.minessale@gmail.com<PAYPAL%2525253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%25253Aanthony.minessale@gmail.com<PAYPAL%2525253Aanthony.minessale@gmail.com>
<PAYPAL%25253Aanthony.minessale@gmail.com<PAYPAL%2525253Aanthony.minessale@gmail.com>
<PAYPAL%2525253Aanthony.minessale@gmail.com<PAYPAL%252525253Aanthony.minessale@gmail.com>
Quote:

Quote:
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference


sip:888@conference.freeswitch.org<sip%3A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%25253A888@conference.freeswitch.org<sip%2525253A888@conference.freeswitch.org>
Quote:

Quote:
Quote:

Quote:
Quote:
<


sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%25253A888@conference.freeswitch.org<sip%2525253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%25253A888@conference.freeswitch.org<sip%2525253A888@conference.freeswitch.org>
<sip%25253A888@conference.freeswitch.org<sip%2525253A888@conference.freeswitch.org>
<sip%2525253A888@conference.freeswitch.org<sip%252525253A888@conference.freeswitch.org>
Quote:

Quote:
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888




googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%25253Aconf%25252B888@conference.freeswitch.org<googletalk%2525253Aconf%2525252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%25253Aconf%25252B888@conference.freeswitch.org<googletalk%2525253Aconf%2525252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%25253Aconf%25252B888@conference.freeswitch.org<googletalk%2525253Aconf%2525252B888@conference.freeswitch.org>
<googletalk%25253Aconf%25252B888@conference.freeswitch.org<googletalk%2525253Aconf%2525252B888@conference.freeswitch.org>
<googletalk%2525253Aconf%2525252B888@conference.freeswitch.org<googletalk%252525253Aconf%252525252B888@conference.freeswitch.org>
Quote:

Quote:
Quote:

Quote:
Quote:

Quote:
Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org

http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:



http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20114475.html
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at
Nabble.com.
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com
<MSN%3Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
Quote:

Quote:
Quote:
<

MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
<MSN%25253Aanthony_minessale@hotmail.com<MSN%2525253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
<PAYPAL%25253Aanthony.minessale@gmail.com<PAYPAL%2525253Aanthony.minessale@gmail.com>
Quote:

Quote:
Quote:

Quote:
Quote:

Quote:
IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org
<sip%3A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
Quote:

Quote:
Quote:
<

sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
<sip%25253A888@conference.freeswitch.org<sip%2525253A888@conference.freeswitch.org>
Quote:

Quote:
Quote:

Quote:
Quote:

Quote:
iax:guest@conference.freeswitch.org/888



googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
<googletalk%25253Aconf%25252B888@conference.freeswitch.org<googletalk%2525253Aconf%2525252B888@conference.freeswitch.org>
Quote:

Quote:
Quote:

Quote:
Quote:

Quote:
pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org





--
View this message in context:


http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20126320.html
Quote:
Quote:
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm

MSN:anthony_minessale@hotmail.com<MSN%3Aanthony_minessale@hotmail.com>
<MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
Quote:
<
MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
<MSN%253Aanthony_minessale@hotmail.com<MSN%25253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
<PAYPAL%253Aanthony.minessale@gmail.com<PAYPAL%25253Aanthony.minessale@gmail.com>
Quote:

Quote:
Quote:

IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference

sip:888@conference.freeswitch.org<sip%3A888@conference.freeswitch.org>
<sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
Quote:
<
sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
<sip%253A888@conference.freeswitch.org<sip%25253A888@conference.freeswitch.org>
Quote:

Quote:
Quote:

iax:guest@conference.freeswitch.org/888


googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
<googletalk%253Aconf%252B888@conference.freeswitch.org<googletalk%25253Aconf%25252B888@conference.freeswitch.org>
Quote:

Quote:
Quote:

pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users

UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
Quote:
http://www.freeswitch.org



--
View this message in context:

http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20146995.html
Quote:
Quote:
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:
http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
Quote:
http://www.freeswitch.org




--
Anthony Minessale II

FreeSWITCH http://www.freeswitch.org/
ClueCon http://www.cluecon.com/

AIM: anthm
MSN:anthony_minessale@hotmail.com
<MSN%3Aanthony_minessale@hotmail.com><
MSN%3Aanthony_minessale@hotmail.com<MSN%253Aanthony_minessale@hotmail.com>
GTALK/JABBER/PAYPAL:anthony.minessale@gmail.com<PAYPAL%3Aanthony.minessale@gmail.com>
<PAYPAL%3Aanthony.minessale@gmail.com<PAYPAL%253Aanthony.minessale@gmail.com>
Quote:

IRC: irc.freenode.net #freeswitch

FreeSWITCH Developer Conference
sip:888@conference.freeswitch.org
<sip%3A888@conference.freeswitch.org><
sip%3A888@conference.freeswitch.org<sip%253A888@conference.freeswitch.org>
Quote:

iax:guest@conference.freeswitch.org/888

googletalk:conf+888@conference.freeswitch.org<googletalk%3Aconf%2B888@conference.freeswitch.org>
<googletalk%3Aconf%2B888@conference.freeswitch.org<googletalk%253Aconf%252B888@conference.freeswitch.org>
Quote:

pstn:213-799-1400

_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users

UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
Quote:
http://www.freeswitch.org



--
View this message in context:
http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20262913.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org



--
View this message in context: http://www.nabble.com/How-to-calculate-PDD-for-a-call-tp20110120p20277694.html
Sent from the Freeswitch-users mailing list archive at Nabble.com.


_______________________________________________
Freeswitch-users mailing list
Freeswitch-users@lists.freeswitch.org
http://lists.freeswitch.org/mailman/listinfo/freeswitch-users
UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users
http://www.freeswitch.org
Back to top
Display posts from previous:   
Post new topic   Reply to topic    VoIP Mailing List Archives Forum Index -> freeSWITCH Users All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group

VoiceMeUp - Corporate & Wholesale VoIP Services