|
From: Simon F. <sim...@gm...> - 2007-09-27 12:03:45
|
Hi Olav,
This may be way-off, but would loging a custom message to a file help?
For example:
<recv request="INVITE" crlf="true" rrs="true">
<action>
<ereg regexp=".*" search_in="hdr" header="Some-New-Header:" assign_to="1" />
<log message="From is [last_From]. Custom header is [$1]"/>
</action>
</recv>
or
<recv request="INVITE">
<action>
<exec command="echo [last_From] is the from header received
>> from_list.log"/>
</action>
</recv>
Simon
On 9/27/07, Olav Kvittem <Ola...@un...> wrote:
> Hello simon,
>
> sim...@gm... said:
> > You should only need 1 or 2 SIPp instances for the UAC and UAS. A single SIPp
> > instance can handle many users by using a CSV injection file. Just put ALL
> > users in the one CSV file, not just BOB!
>
> I tried that, but discovered that the .csv report files did not contain
> the destination id's.
> I am trying to send repeated calls to different echoing proxys
> to make statistics so I need to know individual numbers.
> Is there a place I can hack to accomplish that ?
>
> And can i make the report files land in a different directory rather than
> that of the config file directory
> (patch sent to the list a couple of months ago).
>
> Olav
>
>
|