Is there a MS tool to monitor performance on thin clients (MS Embedded) ?

Application at user side is sluggish.
Everything checks out running out of things to eliminate. So I was wondering if I could trace what's happening when application is used from user standpoint.
Thanks in advance

Since it's built on Windows 7 platform you might use perfmon. 
--- Jeff (Netwrix)

Similar Messages

  • Monitor performance/load of the portal application.

    Hi,
    is there any best tool to monitor performance/load of portal application.please help me out...?
    Thanks
    ramesh jillella
    Edited by: Ramesh jillella on Mar 19, 2009 12:35 PM

    I used YourKit on a project about a year ago. I've used a few other profilers and this one was the simplest to install, configure, and use in my opinion. I was doing basic CPU profiling of a WebLogic Portal application on my machine using YourKit within about a few hours of learning of the existence of YourKit. I used it to find performance bottlenecks and it did the job.
    http://www.yourkit.com/home/index.jsp

  • Tools for monitoring database or DB logs analyser

    Hi
    Are there any commercial tools that can perform the following:
    - monitor DB failed access
    - monitor actions performed by system and DBA accounts through logs
    - monitor dormant accounts
    - track changes in privileges given to individuals
    I am aware that there are Database host-based IDS. wonder if it can do the above?
    Thanks for info.
    Lewis

    You're going to need to enable and configure auditing on the database before any tool is going to be able to monitor and/or report on the results of the auditing. If you are just looking for the reports you outlined above, I would wager that it would be significantly quicker and cheaper to have someone write some monitoring scripts than to evaluate and configure some third-party tools.
    If you are planning on using a third-party tool in a more comprehensive way, it probably makes sense to invest the time & effort to evaluate different tools, to buy one, and to configure it. For the reports you're talking about, though, even having someone come in for a couple days to set everything up will be cheaper and quicker.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Preferred tools to monitor firewalls for performance and capacity managment

    What is your prefered tool for monitoring firewalls for performance and capacity managment?  We have Cisco's Health and Performance Monitor but it does not provide historcal or trending information.
    Thank you,
    Sara

    Hi,
    There are a few commercial products such as:
    - Cisco Prime
    - Manage Engine
    - Solar Winds
    There are also free products available such as Cacti and OpenNMS.
    Don't forget to rate all posts that are helpful.
    Cheers
    Sean

  • Testing tool to monitor MDB performance

    Hi All,
    Can any one of you help me in identifying a tool to monitor the load/performance
    of MessageDrivenBean
    Thanks in advance
    vijayanand

    to find out top most query which take more time
    SELECT B.USERNAME UERNAME,A.DISK_READS READS,
    A.EXECUTINS EXEC,A.DISK_READS/DECODE(A.EXECUTIONS,0,1,A.EXECUTIONS) RDS_EXEC_RATION,
    A.SQL_TEXT STATEMENT
    FROM V$SQLAREA A,DBA_USERS B
    WHERE A.PARSING_USER_ID=B.USER_ID
    AND A.DISK_READS >10000
    ORDER BY A.DISK_READS DESC;
    TOP MOST QUERY
    SELECT * FROM
    (SELEC ADDRESS,RANK() OVER(ORDER BY BEFFER_GETS DESC) AS RANK_BUFGETS
    TO_CHAR(100 * RATION_TO_REPORT(BUFFER_GETS) OVER(), '999.99') PCT_BUFGETS FROM V$SQL )
    WHERE RANK_BUFGETS <11

  • Tool for diagnosing performance issues in oracle database

    Is there any tool to diagnose performance issues in queries and stored procedures in oracle similar to sql profiler for sql server
    Thanks

    you can use oem oracle enterprise manager to diagnose and monitor database .
    Chapter 10: Monitoring and Tuning the Database(refer the link , oracle obe series, step by step procedures with screenshot presentation)
    This chapter introduces you to some of the monitoring and tuning operations as performed through Enterprise Manager.
    http://www.oracle.com/technology/obe/2day_dba/monitoring/monitoring.htm
    refer: Monitoring and Tuning the Database
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10742/montune.htm
    hope, this will helps you.
    Edited by: rajeysh on Jul 14, 2010 9:28 PM

  • Any tool to monitor and Troubleshoot existing Voice setup

    Dear All,
    Please any one assist on below given points
    Existing setup facing performance and conference issue :
    1>  All of sudden I am facing the problem with conference calls between inter site  as well as intra site, Is there any tool to troubleshoot the same?
    2>  Is there any tool to monitor and maintain the Voice setup?
    3>  Is there any tool to troubleshoot the every single problems in voice setup(CUCM / Unity connection)?
    Every post would be highly appreciate.
    Thank's
    AT

    Cisco has Unified Operations Manager. It has good monitoring capabilities and and some troubleshooting capabilities.
    Check out the link below.
    http://www.cisco.com/en/US/products/ps6535/index.html
    HTH
    Sent from Cisco Technical Support iPhone App

  • Tools to evaluate performance of adobe forms

    Hi,
            I need some tool which will measure the performance of forms - time to load the form & time to load data in drop downs which are linked and dynamic and data for drop downs are getting fetched from database tables.
    Is there is any tool available for to measure the performance since in my current project we are concerned with too much of scripting slowing down the form?
    Please help.
    Rohit

    Hi Paul,
                Following are the specific scenarios for which we are concerned about performance.
    Our form is integrated in an enterprise portal and at the backend there is a webdynpro program in SAP environment.
    In our form, we have several sections and subsections which become hidden or read only based on the role of the person opening the form in the portal. Final rendtion of the form takes place according to the account group - one of the fields in the form and opening wndow in the portal. I figured out that there can be two approaches for these scenarios.
    Approach 1
    Sections in the form have been wrapped in subform - so I have status fields as hidden fields in the subform. Based on the value of the status field ('H' for hidden or 'R' for readOnly), the sections will be made read Only or Hidden. These status fields are set by SAP webdynpro at the backend. There will be several hidden status fields in the form.
    Approach 2
    The whole business logic is taken care of by javascripting in the following way.
    Step id is all that is being passed from the web dypro interface which determines the role of the user opening the form and the rest is done in javascripting In the approach we dont have so many status fields for individual sections.
    Sample PseudoCode
    switch(step_id) {
    case "01":
         //requester role so call req() function
         renderform(): //this function re renders the form according to account grp since form layout rendition is based on role and account grp (one of form fields)
    case "02":
         //approver role so call approver() function
         renderform();
    //Like wise we have 5 more cases for 5 different roles
    function renderform() {
         switch(acct_grp) {
              case "Z001":
                   function call to render form based on the Z001 acct_grp
             case "Z002":
                   function call to render form based on the Z002 acct_grp
    //Like wise we have 5 more cases for 5 different acct_grps
    the function in the switch statement does the same thing as the scripts used in the first approach i.e. making subforms readOnly or hidden.
    My question is - are these switch statements and nested function calls going to have additional overhead in performance like loading of form in the portal?
    Which approach is better from performance point of view?
    Please let me.
    Thanks
    Rohit

  • Monitoring & Performance Tuning

    Hi BW Gurus,
    Please let me know common Monitoring & Performance Tuning tasks/issues and how to resolve them.
    Thanks in advance
    Rajesh

    hi Rajesh,
    take a look sdn forum performance center
    Business Intelligence Performance Tuning [original link is broken]
    there are lots of docs
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5ee957e5-0201-0010-9c83-fe14a43cd04a
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cccad390-0201-0010-5093-fd9ec8157802
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ce7fb368-0601-0010-64ba-fadc985a1f94
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3f66ba90-0201-0010-ac8d-b61d8fd9abe9
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4c0ab590-0201-0010-bd9a-8332d8b4f09c
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1955ba90-0201-0010-d3aa-8b2a4ef6bbb2
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/c8c4d794-0501-0010-a693-918a17e663cc
    and check oss note
    557870 'FAQ BW Query Performance' and 567746 'Composite note BW 3.x performance Query and Web'
    417307, 409641 etc (search with 'bw performance')
    hope this helps.

  • Is there any Recommended Tools by Oracle for doing Penetration Testing

    Is there any Recommended Tools by Oracle for doing Penetration Testing in Oracle CRM On Demand (Single Tenant Environment.)

    HI,
    as far as I know Oracle not encouraged customers to perform this kind of tests.

  • Need tools to monitor bandwidth usage

    Dear Folkz,
    Is there any open source tool to monitor bandwidth on a switch port and take reports.?
    plz help me!!

    I think Open NMS (http://www.opennms.org/) and Cacti (http://www.cacti.net/) is one of the most used and best as per your requirements.

  • Any SAP tool that will perform audit logging views of personal data?

    Hi, 
    I am wondering if there is a SAP tool or a third party tool  that will perform audit logging of end users when viewing personal data?
    The audit record should contain: who is viewing, what data is being viewed and the date/time stamp.
    This is required to meet data privacy legal requirements.
    Janet S.

    There is a T-code SM20, through some requirement can be fulfilled.
    Regards,
    Subhash

  • Port monitoring performance issues

    We have 3500Xl series switches and some are running port monitoring so we can gather data on what kind of traffic is flowing through our network. The question is if 1 ethernet port is monitoring all the other ethernet ports on it, what kind of performance issues could we expect, if any. Is there a way to show the performance stats of the switch as well. For example, see below.
    interface FastEthernet0/47
    description ethereal87 port monitor
    no logging event link-status
    port monitor FastEthernet0/2
    port monitor FastEthernet0/1
    port monitor FastEthernet0/4
    port monitor FastEthernet0/3
    port monitor FastEthernet0/6
    port monitor FastEthernet0/5
    port monitor FastEthernet0/8
    port monitor FastEthernet0/10
    port monitor FastEthernet0/9
    port monitor FastEthernet0/12
    port monitor FastEthernet0/11
    port monitor FastEthernet0/14
    port monitor FastEthernet0/13
    port monitor FastEthernet0/16
    port monitor FastEthernet0/15
    port monitor FastEthernet0/20
    port monitor FastEthernet0/19
    port monitor FastEthernet0/22
    port monitor FastEthernet0/21
    port monitor FastEthernet0/24
    port monitor FastEthernet0/23
    port monitor FastEthernet0/26
    port monitor FastEthernet0/25
    port monitor FastEthernet0/28
    port monitor FastEthernet0/27
    port monitor FastEthernet0/30
    port monitor FastEthernet0/29
    port monitor FastEthernet0/32
    port monitor FastEthernet0/31
    port monitor FastEthernet0/34
    port monitor FastEthernet0/33
    port monitor FastEthernet0/36
    port monitor FastEthernet0/35
    port monitor FastEthernet0/38
    port monitor FastEthernet0/37
    port monitor FastEthernet0/40
    port monitor FastEthernet0/39
    port monitor FastEthernet0/42
    port monitor FastEthernet0/41
    port monitor FastEthernet0/44
    port monitor FastEthernet0/43
    port monitor FastEthernet0/46
    port monitor FastEthernet0/45
    switchport access vlan 87
    no snmp trap link-status
    spanning-tree portfast

    Hi,
    I noticed you are attempting this on a 3500XL switch.I'll attach a useful reference to some constraints with SPAN on XL
    http://www.cisco.com/en/US/partner/products/hw/switches/ps708/products_tech_note09186a008015c612.shtml#topic1
    These older switches use a blocking, shared memory architecture and shared buffers for groups of 4 ports. One performance condition that is possible in this type of scenario is intermittent packet loss within the group of ports when traffic is high. This condition becomes probable when utilisation of ports start exceeding about 70% of bandwidth simultaneously on all ports. The symptom is intermittent because of the nature of  traffic is typically bursty
    Example:
    Monitor port is 48.
    Servers are 45,46,47 -100MB
    Let's say a backup is run on the servers and all servers start to hit 70% of available bandwidth. If port is monitoring, then this is = 3 x 70MB = 210MB which exceeds monitor port.
    Monitor port would see overruns drops etc
    http://www.cisco.com/en/US/partner/products/hw/switches/ps607/products_tech_note09186a0080125913.shtml#troubleshoot_interface_errors
    but the server ports could intermittently start dropping traffic because of available buffer taken up by monitor port. There's no real way to determine at what rate this will happen but something to keep an eye out for. You may isolate the monitor port to it's own group of 4.
    HTH
    Eugene

  • Tools to Monitor Oracle Databases

    Hi
    What is the best tool available in the market to perform day-to-day DBA tasks and monitor real time performance of Oracle databases. I need suggestions apart Oracle EM or Toad .
    Thank You

    859206 wrote:
    Hi
    What is the best tool available in the market to perform day-to-day DBA tasks and monitor real time performance of Oracle databases. I need suggestions apart Oracle EM or Toad .
    Thank YouWhat are the best tools to monitor how my car is performing and to change a flat tire? I don't want to use the gauges on the instrument panel or the spare tire, jack, and lug wrench in the trunk.
    Why do you need suggestions apart from EM? Is someone in your company just burning to spend money with another vendor to buy the same functionality that Oracle provides for free with EM?

  • Tool for monitoring several linux desktops

    Hi i currently administer a small office all with linux machines. I also have a server that is up all the time. I'm looking for a tools to automate the processs of watching the desktops if they are behaving well. Something that is client-server. I can use the seerver that is always on to send me emails. I would like to monitor the desktops to see if they are healthy and replace parts or do mainteinace before they fail. Currently im working with very old computers so hard disk failure is common (one every two months), and also sometimes the users fill up the hard disk.
    Is there a tool that can send information from all these computers to a central server and then anaylze it? Im looking for info produced by smartmontools and df, and maybe other program, but im not looking for information on the network, as it is not very crucial and theyre desktop machines not servers.
    Ive looked at nagios but i think is overkill and mainly for servers.
    I just run around 12 computers with linux, all of them desktops except for one.
    Also is there a way to automate the update and installation of software of these machines? currently im using webmin cluster module for sending instructions to all of them, but it is rather clumsy.
    Is there such a tool, or should i relly in some custom solution, maybe bash scripts + ssh ?

    Unless your out of hard drive slots you have all those drives from the clients that keep going out.  If you had a backup tape system that would clear the single point of failure problem.  Of course, you can put the PXE install on a separate disk.
    hydrosIII wrote: i dont trust them as much as for putting rootless machines in the desktops
    The server that is serving the PXE clients, is impervious to the actual PXE installation.  It is efficient however to maintain, because you can use the main server's package cache (assuming you pay attention to differing architectures), and pacman into the PXE client installation specifying the PXE root for operations affecting the PXE installation.  You can run the PXE clients without disks in them.  On the windows side, there are windows installations via PXE and iSCSI.  Nothing says you can't use sshfs instead of nfs for  the clients.  You wouldn't need to necessarily log into the PXE clients root account to make changes.  Most of that could be done from the server that it resides on.  Point two is that the files actually serving the PXE clients can be on a totally different computer pointed to by DHCP.  You can turn the router DHCP off, and have the requests answered by Arch's dhcpd.

Maybe you are looking for

  • Adobe: No Linux Flash Player Till 2007

    see http://www.crn.com/sections/custom/custom.jhtml?articleId=192501179 >> Adobe: No Linux Flash Player Till 2007 By Stacy Cowley, CRN 2:25 PM EDT Fri. Sep. 01, 2006 Impatient Linux users will have to wait till the end of the year for even a preview

  • IBook to LCD TV

    This might be a really silly question, but I do a lot of graphic work on my iBook and the screen is just too small. Will connecting it to my 32" lcd tv work? I know I need to buy the appropriate adapters and such, I just want to check that it will wo

  • Ifsimportexport silent mode

    I am trying to run ExportContent in silent mode as documented in this manual: http://download-west.oracle.com/docs/html/B14176_01/migrating.htm#sthref1333 However, no matter what I do, the command results in a GUI interface for ifsimportexport. My en

  • How can i speak to a HUMAN about upgrading to Design Standard CS6

    how can i speak to a HUMAN about upgrading to Design Standard CS6?

  • Adobe Flash CS3 help needed

    I need help very badly.... Here is the reader's digest version..... I purchased a flash website template for my local band to try to elimate the pain of creating one from scratch. I never used Adobe Flash CS3 before, but figured I could figure out en