Triple Combo GUI tool for CUCM trace files analysis

Hi folks,
the link to the Triple Combo GUI tool to analyze CUCM trace files appears to be broken:
www.employees.org/~tiryaki/tc
any idea where the tool is gone or with whaht was is replaced?
thanks
best wishes
Lucio

Hi Lucio,
you can try TranslatorX.
http://translatorx.cisco.com/index.html
//Suresh
Please rate all the useful posts.

Similar Messages

  • GUI Tool for Image Analysis (delimited ascii file)

    i've created a Java GUI Tool for Image Analysis. It does length calculation and locate the coordinate of centroid of an image...the problem now is how do i save the results in a delimited ascii file??

    Create a FileOutputStream, use that to construct a PrintWriter, then use the PrintWriter as you use System.out. Print out the data, then append the delimiter manually after each set of data.
    To get the file, the simplest ways would be to hard code an output file name or at least have a text field so the user can enter it. If you want it to look more professional, use a JFileChooser.
    I hope this helps!
    -JBoeing

  • Trace file analysis: High cpu timings for FETCH

    Hi!
    I am doing a 10046 trace file analysis for a performance problem we see on a customer site, but we can't reproduce the problem on our local reference test system.
    Basically, the cpu timings for FETCH calls for a SELECT statement are ten times as high on the customer system. There are no WAIT events in the trace file (for this statement), only a high cpu timing for the FETCHES:
    Customer instance:
    FETCH #19:c=140625,e=140189,p=0,cr=3358,cu=0,mis=0,r=1,dep=1,og=1,tim=1500177409
    Reference system;
    FETCH #4:c=15625,e=7984,p=0,cr=2262,cu=0,mis=0,r=1,dep=1,og=1,tim=5624714062
    I see that the number of consistant reads is 50% higher, but I don't see why this result in 10 times the CPU time and about 20 times the elapsed time. This is does not seem to be a general problem with all statements, so the general timings are comparable to our reference system. The problem seems to be this Select statement only which only joins two tables.
    I had the idea that a long running transaction that didn't commit would lead to this problem, since Oracle would need to reconstruct blocks from undo, but there are no such transactions on the system.
    With no WAIT events emitted, where does the time go?
    Thanks for your help,
    Marcus

    MMarcus wrote:
    Here is the execution plan for the query. It is the same on both systems, with slightly different total costs (8 or 10).
    | Id  | Operation                      | Name                | Rows  | Bytes | Cost (%CPU)| Time     |                                                                                                                                                                                                      
    |   0 | SELECT STATEMENT               |                     |     1 |    35 |    10  (10)| 00:00:01 |                                                                                                                                                                                                      
    |   1 |  SORT ORDER BY                 |                     |     1 |    35 |    10  (10)| 00:00:01 |                                                                                                                                                                                                      
    |*  2 |   FILTER                       |                     |       |       |            |          |                                                                                                                                                                                                      
    |*  3 |    TABLE ACCESS BY INDEX ROWID | PLANHIERARCHIE      |     1 |    35 |     5   (0)| 00:00:01 |                                                                                                                                                                                                      
    |*  4 |     INDEX RANGE SCAN           | PLANHIERARCHIEINDEX |    21 |       |     2   (0)| 00:00:01 |                                                                                                                                                                                                      
    |   5 |    NESTED LOOPS                |                     |     1 |    39 |     4   (0)| 00:00:01 |                                                                                                                                                                                                      
    |*  6 |     TABLE ACCESS BY INDEX ROWID| PLANSCHRITTFOLGE    |     1 |    21 |     3   (0)| 00:00:01 |                                                                                                                                                                                                      
    |*  7 |      INDEX RANGE SCAN          | PLANSCHRITTFOLGEPK  |    11 |       |     2   (0)| 00:00:01 |                                                                                                                                                                                                      
    |*  8 |     TABLE ACCESS BY INDEX ROWID| PLANHIERARCHIE      |     1 |    18 |     1   (0)| 00:00:01 |                                                                                                                                                                                                      
    |*  9 |      INDEX UNIQUE SCAN         | PLANHIERARCHIEPK    |     1 |       |     0   (0)| 00:00:01 |                                                                                                                                                                                                      
    You have omitted the predicate section from the execution plan - and [+*there may be important clues*+|http://jonathanlewis.wordpress.com/2008/12/03/predicate-problems/] in the predicate section.
    In your case the problem may +(*for example*+) simply be the way in which the predicates apply to the PLANSCHRITTFOLGEPK index range scan.
    Imagine you have 250 index entries per leaf block, and the predicates that apply to the index identify an index range scan that spans 25 entries in one system but 25000 entries (100 leaf blocks) in the other. It is possible that filter predicates against the index eliminate most of the index entries before you go to the table. The CPU used to examine (filter) large numbers of index leaf entries can be significant - and since that index range scan is part of a filter subquery it could many several time - escalating the CPU usage. A check of the access and filter predicates may give you some clue about whether you are seeing that type of problem.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    To post code, statspack/AWR report, execution plans or trace files, start and end the section with the tag {noformat}{noformat} (lowercase, curly brackets, no spaces) so that the text appears in fixed format.
    "Science is more than a body of knowledge; it is a way of thinking"
    Carl Sagan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Gui tool for gpresult

    The Group Policy Management console
    Right click on "Group Policy Results" and use the assistant

    is there any gui tool for gpresult
    This topic first appeared in the Spiceworks Community

  • Gui tool for browsing environments

    Does anyone know of a good, preferably free, gui tool for browsing environments and performing queries on them?

    Hi,
    I am aware of oXygen and Stylus Studio.
    Ron

  • Reporting (Monitoring) Tool for CUCM 8.6

    Hi ,
    I am looking for a reporting or statistic tool for CUCM 8.6. , better we search a Monitoring tool .
    Our main concrn is that we would like monitoring the Lines , the Phones , Calls (In und Out) , Count of Calls etc. not only print but a dashboard also .
    Could you recommend me a programm by your experience ?
    Thanks for your support
    Homayoun

    Here's a quick summary of what to do to view the number of registered phones per subscriber. There's lots more detail on all the available parameters in the docs from that link I gave above.
    Open RTMT and select the Default profile. From the left hand window, select the "Performance" option.
    This will open the Performance screen. Pick one subscriber from the list of nodes, expand it out, and then expand out the "Cisco CallManager" branch. Select and drag the Registered HardwarePhones option to one of the six blank squares.(You can adjust the divider to make reading the labels easier - but selecting the divider isn't always easy) You can repeat for all your other subscribers.
    You can add extra tabs by selecting Edit (From the top-level menu bar) -> New Category.
    GTG

  • GUI tool for launchers

    Is there any GUI or console tools for managing services (LaunchAgents & LaunchDaemons) in Mac OS X?
    It is becoming a really frustrating process to manage my huge list of launchers by hand on terminal, especially since most of the developers use really poorly named plist files for these.
    I've been just fine managing many services in the *nix world (Debian, Fedora and CentOS mostly) and I have no problem using console or cli tools there, so why can't it be as easy on my Mac?
    Oh, and I've got no intention of paying for this, I might just code it on my own if it doesn't exists...
    - Thank You in advance.

    Thanks. The interface isn't the best one but it gets the job done.
    Would recommend to anyone having the same problem...

  • Question for lmd0 trace file

    Hi All,
    Our db is 2 nodes RAC db on window 2003 server. The database version is 10.2.0.3 Enterprise Edition. My question is: we have the following messages in our db alert log but when I tried to look into the trace file I can’t find the trace file in that directory at all. Then I did the search and found this file in Recycle Bin folder. So I restored the file to d:\oracle\admin\avprod\bdump\ directory. The strange thing is that the modify date of the file is 9/26/09 but it contains data from 10/01/09. Can anybody tell me what is going here? Why this trace file can’t be regenerated after deletion?
    Thu Oct 01 18:02:37 2009
    Global Enqueue Services Deadlock detected. More info in file
    d:\oracle\admin\avprod\bdump\avprod1_lmd0_5472.trc.
    Thu Oct 01 18:05:49 2009
    Global Enqueue Services Deadlock detected. More info in file
    d:\oracle\admin\avprod\bdump\avprod1_lmd0_5472.trc.
    Thanks a lot for your help and have a great weekend!
    Shirley

    Thanks Srini, for your response. The following is some of the content in lmd0 trace file:
    *** 2009-10-01 18:00:42.343
    * kjdrchkdrm: found an RM request in the request queue
    Dissolve pkey 498214
    DRM(480) ignoring dissolve of 498214
    * kjdrchkdrm: found an RM request in the request queue
    Dissolve pkey 498215
    DRM(480) ignoring dissolve of 498215
    *** 2009-10-01 18:02:37.171
    Global Wait-For-Graph(WFG) at ddTS[0.12b] :
    BLOCKED 00000002C399D470 5 [0xe4000b][0x237682],[TX] [1A2000-0003-0004049C] 1
    BLOCKER 00000002C399D320 5 [0xe4000b][0x237682],[TX] [1C2000-0003-00021E4B] 1
    BLOCKED 00000002C38B3760 5 [0x107001d][0x5db6],[TX] [1C2000-0003-00021E4B] 1
    BLOCKER 00000002C38B34A8 5 [0x107001d][0x5db6],[TX] [1A2000-0003-0004049C] 1
    *** 2009-10-01 18:05:08.375
    Setting 3-way CR grants to 0 global-lru off? 0
    *** 2009-10-01 18:05:39.781
    Setting 3-way CR grants to 1 global-lru off? 0
    Global Wait-For-Graph(WFG) at ddTS[0.12b] :
    BLOCKED 00000002C36CAB68 5 [0xde000f][0x198822],[TX] [1B2000-0003-00025BA2] 1
    BLOCKER 00000002C36CAA00 5 [0xde000f][0x198822],[TX] [1A2000-0003-0004048B] 1
    BLOCKED 00000002C358C0C8 5 [0x1000017][0x5bbb6],[TX] [1A2000-0003-0004048B] 1
    BLOCKER 00000002C358BF78 5 [0x1000017][0x5bbb6],[TX] [1B2000-0003-00025BA2] 1
    *** 2009-10-01 18:06:10.812

  • GUI Tools for SWING

    Does anyone have a recommendation for a good GUI development tool for SWING? We are doing everything by hand right now and it seems a bit tedious.
    What are the best tools that automatically build the containers? layouts? different field types? listeners? graphics? etc....
    Thanks

    Hmm ok netbeans is smaller, but the size you posted isnt accurate for the Sun One studio Community Edition, which is the free version.
    I downloaded the latest J2SDK + S1Studio for a total of 92 megs. If you download it alone I would presume its something around 80 megs.
    I would have suggested netbeans but I'm not 100% sure it has the same gui editor than s1 studio... I know s1 studio is built with netbeans but I honnestly dont know the difference between them, other than probably a bunch of extensions that come by default with s1 studio.

  • What are the best tools for converting .shg files to HTML image maps?

    After trying several different ways to import our WinHelp
    project into RH HTML, I'm left with recreating the project in HTML.
    There are over 200 .shg files. What's the best tool for converting
    them? Is there a free program that converts them? Or is there a
    better way?
    Lacona

    Yes, I have not been able to import the .hlp file, which was
    my last posted question/issue. I have tried creating a Microsoft
    HTML layout in RH4 Word; it begins to compile and, somewhere in the
    process, just freezes. I've tried importing the .hlp file into RH
    HTML; same result. I've tried creating a new HTML project with the
    .hlp file; same result. If I could import the file, it'd be great.
    Otherwise, I'll need to recreate the entire project, which brings
    me to converting the .shg files. Any ideas?

  • Gui tool for snapshot

    Hello,
    A blob storage backup is scheduled to run daily, target is say mybackup. I'm wondering whether there is a Gui tool to automate revolving snapshots of mybackup. For instance day 1 to day 7 and the day 8 will replace day1?
    Thank you

    hi Nic75,
    I am not familiar which tool has this feature. However, I know we could do this feature using code. I suggest you could refer to those blogs:
    https://gallery.technet.microsoft.com/scriptcenter/How-to-create-a-snapshot-b1dd8ba4
    http://www.dotnetcurry.com/showarticle.aspx?ID=1072
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Any GUI tool for JSF?

    Does anyone (IBM, SUN, Borland, open_source, etc) have GUI tool or GUI editor for building JSF?
    *Can I receive this forum at my email?                                                                                                                                                                                                                                                                               

    I just got back from the JavaONE convention in SF and Sun had a demo of an IDE project that is in progess. It was called "Project Rave". It looked like a really great tool. It had drag and drop components for a database query, web services functionality, and all of your JSP form objects. I was really impressed and think it will be a great tool. They also said that it would eventually support Java Rich Client development as well. They said it would not be available until Fall or the end of the year.
    -Andy

  • Specify a particular node for a trace file to be created

    When creating a trace file, is it possible to specify a node where the trace file will reside? fi so, pls give example...
    thank u

    I believe that is relative to the instance you are actually connected to/through.

  • GUI Tool  for ANT

    Dear All,
    I would like to inquire that if there exists any GUI based tool that can provide the same functionality as ANT(for building the project), plz inform me with details.
    Thanks and Regards,
    Suhas Pol

    Hi mlk,
    actually i am looking for a tool which will be any IDE independent and can be used to build the build.xml file thru some GUI.
    Thanks and regards
    Suhas Pol

  • Tool for generating properties files

    Hello Experties,
    I am wondering is there a tool or program for SAP to get SAP fields screen names from SAP backend for diffrent languages and generat the properties files?
    for java uwl or webdynpro they are all the same properties file.
    thanks

    WebDynpro i18n is done by .xlf files. Its an standard (http://en.wikipedia.org/wiki/Xliff) and there are some OSS editors available, just google xlf editor.Or check this one: http://okapi.opentag.com/applications.html#rainbow
    The Idea is, that you give your xlf files to the translator and safe the results with a suffix representing the language (_de.xlf for german).
    Hope this helps.

Maybe you are looking for

  • Unable to burst a report in 11.1.1.6.2 BP1

    Unless you're interested in the Subject line, you may probably disregard this thread. I recreated the data model from scratch, including the bursting definitions, and everything works just fine now. Something screwy in the XML, I suppose. A bursted r

  • Load an external gallery  file into a host div via Ajax method?

    I was just wondering if anyone has been able to get a spry gallery to work when placed within an external html file and loaded into the host div of a page using Ajax method to load. It must work remotely (on the Internet). I've tried and mutilated en

  • When I try to open itunes, 'my documents' comes up- and nothing else!

    Whenever I try to open itunes, windows explorer opens and displays my documents- and nothing else happens! And when I plug in my ipod, instead of opening itunes like normal, the same thing happens. Any ideas whats going on/how I can fix it? If I rein

  • 10g - write back - The system is unable to read the Write Back Template

    hi,experts, I enabled write back on a report. the button (write back) is enabled (not grey) but when I click the button, there is a message The system is unable to read the Write Back Template 'UPDATETESTWRITEBACK'. Please contact your system adminis

  • - + sign in a jtree

    hi, do we can replace the - + sign at the left of a jtree node by an icon ? if yes, how ?. thanks a lot