<div>Hi All,</div><div><br></div><div>I have the following simple Lua script answer a inbound call then dial another number and bridge the call.</div><div><br></div><div>Is there any way to get the  call duration or billing sec using the </div>
<div>
<br></div><div>session:getVariable(  );</div><div><br></div><div><br></div><div><br></div><div>-- answer the call</div><div>session:answer();</div><div><br></div><div>-- sleep a second</div><div>session:sleep(1000);</div>

<div><br></div><div>-- Initiate an outbound call</div><div>obSession = freeswitch.Session(&quot;sofia/gateway/voipms/14165555555&quot;,session)</div><div><br></div><div>obSession:execute(&quot;sched_hangup&quot;,&quot;+60 alloted_timeout&quot;);</div>

<div><br></div><div>-- bride the call</div><div>    freeswitch.bridge(session, obSession);</div><div><br></div><div>-- hangup</div><div>session:hangup();</div><div><br></div><div><br></div><div>Thank you</div><div>Lloyd</div>