Logging calls in SPA9000

Hi all,
Is it possible to log/record outgoing calls (phone number + duration) in a SPA9000?
THankx

Hi me_grimlock,
How does this syslog data look like? Is it possible to grep (tcl, perl, etc) outgoing calls+IP+duration?
If ones requires 3rd-party SW (I read somewhere the linksys partners get this syslog daemon) + a PC running the syslog daemon then it may be more attrative to run an asterisk server on its own, doesn't it? 
 THanks

Similar Messages

  • Strange issue on log call.. calls registered in log ...

    i had this problem..
    i have some calls registered on my log calls that i never done!
    some of them are incoming and other outgoing... i notice this on a contact that i was checking the relative contact sheet .. i received a phone call from another contact and later i recognized that my phone logged different calls for that contact i was checking
    does anyone experienced the same issue? and in case what the reason? or cause?
    thanks in advance
    ps sorry for bad english

    I had same issue either, yesterday...
    Happen after last update on my iPhone 5.
    I had opened the contact list and after i received a call fot that contact and the contact called me, system registered a couple of calls in and out not happened.
    strange issue.. i ll try sw reset as Jason suggested..

  • Cisco Supervisor Desktop show "Agent Logs - call" and "Agent Logs - state" in N/A ::: UCCX 8.5.1

    Hi team.
    The Cisco Supervisor Desktop don't show any logs in the "Agent Logs - State" and "Agent Logs - Call" in some agents.
    I restarted the Cisco Desktop Services in CCX Serviceability but the issue continue.
    I appreciate any help respect this case.
    Thanks a lot.
    ErnestoG

    Hi Ernesto,
    Did you click or selct the Specific Agent\Inbound call which is currently being handled by the Agent. From the Screenshot you have attached (first one) doesn't look like the call has been selected.
    Please select or click on that Specific Agent\Inbound call from CSD and check these values.
    Hope this helps.
    Anand
    Please rate helpful posts !!

  • History log calls, name changed

    I received a call from a person A and in the history log call is shown as person B, but if I try to call it link me to the person A who originaly called me. It semmed that changes the names. It is a mess. It started to happen after butt upgrading to v. 10.1.0.273 in the z10. Is there any fix? Thanks

    Hi and Welcome to the Community!
    Unfortunately...refer:
    KB34577 Caller ID shows incorrect contact information for incoming calls and calls placed from the call log go to a different phone number than intended
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Is it possible to log calls with address book?

    Does anyone know how to log calls with address book - I usually dial right out of addessbook (via blue tooth) and always get the incoming calls as pop-ups on my screen. I was wondering if address book is logging them anywhere that I could access. I would appreciate anybody's help! Thanks, Paul

    Thanks for the response. Sometimes I just think my macs can do anything!
    I often use the incoming phone info through caller to create/ update contacts. Perhaps there is something third- party out there that will fill the bill.
    Anyway, have a great day! Paul

  • C2-01 Call log & Call cost feature is missing...

    Recently i updated nokia c2-01 with new firmware version 11.10, no problem occur..
    but in dial call log there is no call summary feature in NOKIA C2-01, there is only latest call duration option, but no call history option, and no call cost feature & call management as compared to other nokia phone, just like NOKIA 1209... 
    one problem is also occur , when i play any music from media player, during play  i open any msg or apply any new theme my phone is restart... 
    If I have helped you, please hit the star at the bottom of my posts - it's appreciated!
    Don't forget if your problem is solved to press the "Accept as Solution" button.

    There is a long thread on this at another forum..
    http://www.dslreports.com/forum/r23501543-IMG-Caller-ID-on-in-New-York
    It is normal for the box to start showing the option before it's actually live.
    You won't need any service call or change of equipment. it will just start working when it's live.
    From that thread some areas of NY have it. Verizon doesn't announce schedules on anything too much so you are highly unlikely to get an answer to "when".

  • Logging calls to cfcs

    Howdy gang!
    I have inherited an application with a fairly large number of cfcs. The codebase goes back quite a few years. Though the code is in mostly decent shape, as with most long lived apps, there are files no longer in use, etc.
    I am hoping to figure out a way to monitor cfc usage. Ideally, I would be getting something like:
    * cfc name
    * method
    * file called from
    * maybe args passed 
    I would stuff this info in to a table, so I can basically select all cfcs that have not seen any use in a given time period.
    Coming up completely blank on this one. Any ideas? Thanks!

    /Web-inf/debug/ directory (classic.cfm is the classic debugging that is visible at the end of the page)
    Indeed. The key code is
    <cfobject action="CREATE" type="JAVA" class="coldfusion.server.ServiceFactory" name="factory">
    <cfset cfdebugger = factory.getDebuggingService()>
    <cfset qEvents = cfdebugger.getDebugger().getData()>
    qEvents is a query. What you want to get your grimy mitts on is that query's template column.
    However, I should be wary of tampering with any of the files in /WEB-INF/debug/, as they are system files. Another consideration is load. The files in WEB-INF bootstrap a web application, and are generally meant to run before every request. Therefore, you wouldn't want to add any heavy-duty code in there.
    I can think of two ways around that. In either case you create a  temporary debug file with the sole purpose of logging the templates that your applications open. You will delete the files when you've collected enough information.
    The first possibility is to make a copy of classic.cfm, say, /WEB-INF/debug/myClassic.cfm. Then, in myClassic.cfm, you may add the following line immediately after <cfset qEvents = cfdebugger.getDebugger().getData()>:
    <cflog file="templates" text="#qEvents.template#">
    Alternatively, you can just create your own debug file, say,  /WEB-INF/debug/templateLogger.cfm. The file templateLogger.cfm would contain the barest minimum code you need for the job, namely
    <cfobject action="CREATE" type="JAVA" class="coldfusion.server.ServiceFactory" name="factory">
    <cfset cfdebugger = factory.getDebuggingService()>
    <cfset qEvents = cfdebugger.getDebugger().getData()>
    <cflog file="templates" text="#qEvents.template#">
    In fact, as you will see in a moment, you may choose to implement both myClassic.cfm and templateLogger.cfm. After all, you will only be able to apply one at a time! How then?
    In the Coldfusion Administrator, of course. Go to the section on Debugging & Logging. You will find that all the files in /WEB-INF/debug/ appear as a drop-down list entitled, "Select Debugging Output Format". You can only choose one!
    Tick the checkbox "Enable Request Debugging Output". Click the button to submit the changes, and you're in business.

  • Logging Call Bandwidth Usage on MCM

    I have a need to add a field to my videoconferencing call detail records that includes the bandwidth used by H.323 calls on a per call basis. I am currently logging my CDR to a radius server, but after parsing the output, I cannot find any fields corresponding to the bandwidth of the call (i.e. 384K,512K, 768K, etc.) Any help would be appreciated. Thanks.

    for what it's worth, I have not seen a bandwidth indicator in my call detail records either.
    The best I have been able to acheive is billing based upon the tech prefixes dialled when placing H.320 calls via the 3540 gateway.

  • No incoming calls with SPA9000.

    I just replaced our SPA9000 and now we can't get incoming calls. Outgoing calls works fine. We have all ports opened on our router and NAT Keep Alive is enabled. Any thoughts? I've reset the device and upgraded the firmware but still no luck.

    did you use the setup wizard for configuring the device? have you configured auto attendant for the device already? if you configured aa, check if you can call aa from the phone. if not, then it has something to do with the configuration for your aa. another option is to replace the contact list with the extension number so that calls will go to specific extension.

  • E51 - Not Logging Calls

    Hi 
    I own a Nokia E51 and for some reason just recently too I might add, it doesnt log any calls. Missed, Dialled or Recieved.
    I was wondering if it could be fixed, like have I accidently pressed something or changed a setting !! ....  
    Thanks in advance .. !! 

    Support forum ???????????? 

  • My e72 log call

    i have e 72 i chanage my call log setting to 30 day but acutlly am getting 2 weeks log only what is problem on the problem.

    Glad you enjoyed the face time feature. I'm enjoying it as well. I wonder if the choppy picture is due to any issues with your internet setup (routers, wifi, etc). I have a fast connection myself and it worked great when i tried a demo with the Apple people. I tried with a different friend and i received choppy video with them. More than likely because they were on a slower wifi connection. Enjoy!

  • 8220 Cannot access messages and phone doesn't log calls

    T-Mobile
    Pearl 8220
    v4.6.0.180
    File free before: 55153352 Bytes
    File free after: 64957940 Bytes
    Battery  Pull did not fix issue
    No BT device
    Okay, so after a call (incoming or outgoing) has ended, the next time I flip open the phone I see this error message:
    Uncaught exception: java.lang.NullPointerException
     I click OK and thats that.  The phone does not log the number of the caller or callee and the "messages" and "SMS and MMS" icons do not respond to being clicked on or the enter button and thus keeps me from accessing my messages/texts.  I can still text if I go through contacts, and I do still receive them.  I only can't access them.
    Using the desktop manager software I check for updates tho the device is up to date and has been since I recieved it a few months back.  Maybe 6 months or so.  So any help would be appreciated... before I toss the phone on the highway or into a lake or against the wall or something.  Thank you.

    did you solve your issue?
    what applications have you installed on your device?
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Optimization with logging calls (Logger class)

    Hi,
    Does anyone know if the compiler can optimize calls like the following:
    logger.fine("The object " + reference.getName() + " is in status " + reference.getStatus());
    so that it will only evaluate the argument string when the Level if set to FINE?
    If if doesn't, one has to check the level in order to avoid performance issues:
    if (logger.isLoggable(Level.FINE)) {
    logger.fine("The object " + reference.getName() + " is in status " + reference.getStatus());
    }

    No, the compiler doesn't do any special processing for methods of that class (or any other except String).

  • CUCM 8.6.1.2000 - Call History not logging, and no ring tone access.

    Hello,
    A little background:
    Recently, I setup a UCS C-210 M2 with CUCM 8.6.1 and restored our Pub and Sub to it. Also migrated to from physical Unity to Virtual CUC, same with Presence.
    I've also setup a 2nd CUCM Sub, as well as new CUC and CUP subs on a second UCS C210. I also upgraded CUP to 8.6.4. before adding the Sub CUP node.
    I'm thinking my problems began when I added the 2nd Subscriber CUCM node on our 2nd C210. Here is a description of what's going on.
    -  I cannot change ring tones on an IP phone. I get "Ring List Unavailable" when I try to change a ring tone. I noticed that my phone had changed over to the CTU ring tone around the time I brought up the VM environment. The CTU ring tone was a custom one I had loaded at one time.
    - I cannot access any call history on my IP phone. My Jabber client logs call history just fine.
    Seems to be a TFTP issue, but I restarted the Cisco TFTP service yesterday, and it did not help. I also reset the Device Pool, which didn't seem to do anything.
    Also, I'm still a bit unclear on which services I should be running on my new Subscriber node.
    Any help is very much appreciated. Thanks again, guys!!
    -Jonathan

    I had this issue and resolved it. The problem was that we had changed DHCP servers over to a different platform and the new DHCP server didn't have Option 66 defined to point the phones to a TFTP server. Once we re-specified the TFTP server IP's for option 66 in DHCP and reboot the phones the issue was resolved.

  • Call log issue in nokia 5230

    Hi all,
    i am having an issue in call log in my nokia 5230. It is logging call details only for 15 days in spite of making selection for 30 days. I am surprise to see it , when 15 days option it not available in the list, how it is happening.
    I have reloaded the software twice from Nokia site & several times selection for 30 days call log is selected, but all in vain. Can anybody help??
    Thanks  & regards 

    How did you reload the firmware? Did you backup the data and perform a reset using *#7370# before reloading? Try and reply.
    Nokia C7

Maybe you are looking for