Thread monitor in portal

Hi.
I want to monitor thread usage in portal.
Where can I do this ?
I already try "System management -> Monitor -> Thread overview" but I don't know this is correct information.
Welcome any comments.
Regards, Arnold.

Hi Arnold,
Yes that is the correct place
Regards
Arun

Similar Messages

  • Servlet Exec Thread Monitor - MII 11.5

    We have some reports that get "stuck", and they consume CPU usage, so we have to go into Servlet Exec's Thread Monitor to kill these reports.
    Currently, we go into MII to manually check to see if there are any stuck reports.  It would be nice if we could have MII load these log files automatically and send us an eMail when a report is stuck, so I thought we could use the HTML loader to do this.  The problem is Servlet Exec has security, and it requires an ID and Password.  I thought I could use the HTTP Post action block to get around this, but for the life of me, I can't get it to work.
    Is it possible to use Logic Editor to open Servlet Exec's Thread Monitor screen, and if so, how?

    Hi Lino,
    Keep the original code of the applet.
    <APPLET NAME="myChart" CODEBASE="/Illuminator/Classes" CODE="iChart" ARCHIVE="illum8.zip" WIDTH="840" HEIGHT="400">
    <PARAM NAME="DisplayTemplate" VALUE="Demo_Project/Vale_POC/SampleChart.xml">
    <PARAM NAME="QueryTemplate" VALUE="Demo_Project/Vale_POC/QryValePOC.xml">
    <PARAM Name="TagName.1" VALUE="CylTemp1">
    </APPLET>
    In 11.5 existis guest user. add two parameters in you applet.
    <PARAM NAME="IllumLoginName" VALUE="Guest">
    <PARAM NAME="IllumLoginPassword" VALUE="Guest">
    I believe the best solution would be to use the SAP MII portal for developing your application and not the. NET. In SAP MII already have a lot tools ready for development of application.
    If you use frame follow the link.
    http://help.sap.com/saphelp_xmii115/helpdata/en/Security/Programmatic_Logins.htm
    Hope this help.
    Danilo Santos

  • Monitoring WebLogic Portal Components

    Hi All,
    Consider me a novice to Portal land; hence pardon me for any irrelevant or obvious queries.
    My requirement is to monitor the health/performance of WebLogic Portal Server and its components such as Desktops, Entitlements, Content Management, Portlets, Java Page Flows. This has to be accomplished using Java.
    The metrics that I want to capture for each of these components are Response Time and # of times invoked.
    Inputs on how I can write an application that can retrieve all this information and also insights to any other metrics, components I should be considering in order to be able to monitor a Portal Server holistically.
    Please provide your inputs.
    Thanks!

    I am also a newbie to portal performance. I would like to extend this a bit
    further:
    1- does it make sense to monitor portlet performance by user?
    2- is there anyway to correlate the portlet performance by a particular
    transaction? Does this even make sense or would there be just too many
    transactions?
    3- what are the important poral server metrics to watch (ie. cache metrics)?
    Thanks - Raj
    <Arvind N> wrote in message news:[email protected]..
    Hi All,
    Consider me a novice to Portal land; hence pardon me for any irrelevant or
    obvious queries.
    My requirement is to monitor the health/performance of WebLogic Portal
    Server and its components such as Desktops, Entitlements, Content
    Management, Portlets, Java Page Flows. This has to be accomplished using
    Java.
    The metrics that I want to capture for each of these components are
    Response Time and # of times invoked.
    Inputs on how I can write an application that can retrieve all this
    information and also insights to any other metrics, components I should be
    considering in order to be able to monitor a Portal Server holistically.
    Please provide your inputs.
    Thanks!

  • Does OEM Grid Control 10g support monitoring Oracle Portal 10g?

    Dear expert,
    It seems OEM GC 10g could monitor WebCenter, Weblogic portal and even Websphere portal, but I could not find any info for Oracle Portal. So,
    1.     Does OEM GC support to monitor Oracle Portal 10g? If not, does it support Oracle Portal 11g?
    2.     If does not support Oracle Portal, then is there any workaround for it? E.g. if it’s feasible through “web appliation”?
    Any comment and docs are welcome.
    Thank you in advance.

    Hi Rob,
    Thanks for your help.
    BTW, I have another question for your reply, that what do u mean by “You can use Oracle Enterprise Manager to monitor and manage OracleAS Portal”?
    Do you mean OEM AS Console or OEM GC? Boz I only find these metrics from OEM AS Console, which mentioned in this doc. http://download.oracle.com/docs/cd/B16240_01/doc/em.102/b25987/oracle_portal.htm#CHDFJHDD
    If these metrics only available in AS Console, then how to let the OEM send out email notification if critical threshold is over?
    Thank you.
    Tony

  • HTTP Acceptor Thread Monitoring

    I'm attempting to monitor the HTTP Acceptor Thread pool in a Production environment. JMX Monitoring threshold has been set to HIGH but I still can't seem to find the pool monitor. I see HTTP Listener Threads, but not acceptor thread monitoring.
    Is there any way to achieve this?

    Hi,
    Do you really need a HTTP Sender communication channel. Generally there is no need for a Sender communication channel for HTTP and IDOC adapter. They directly come into Integration engine.
    This would be the URL for communicating
    http://<hostname:port>/<path>?<query-string>
    The <query string> contains the following data:
    Sender namespace ?namespace=<namespace>
    Sender interface &interface=<interface>
    These details define the sender interface.
    Sender service &service=<service>
    Sender party (optional) &party=<party>
    Sender agency (optional) &agency=<agency>
    Sender scheme (optional) &scheme=<scheme>
    Thanks,
    Prakash

  • Synchronized thread monitors!!! AHHH!!!

    Hi,
    In my program , I'm trying to start a thread which immediately begins waiting and when a notify is received the Thread executes a method and then right back to waiting. The program I'm having trouble writing is far too bulky and complicated to be easily made sense of here, so I've written this concise version:
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    import java.util.*;
    class syncTest1 {
         public static void main(String[] args) {
              syncTest2 thread = new syncTest2();
              Monitor monitor = new Monitor();
              try {
                   for(int i = 1; i <= 100; i++) {
                        synchronized(monitor) {
                             System.out.println("Notifying...");
                             monitor.notify();
                             Thread.sleep(500);
              } catch(InterruptedException ie) {}
    class syncTest2 extends Thread {
         Monitor monitor;
         syncTest2() {}
         public void run() {
              try {
                   while (monitor.progress() < 100) {
                        synchronized(monitor) {
                             monitor.wait();
                             monitor.increment(1);
                             System.out.println("Notified! Progress = " + monitor);
              } catch(InterruptedException ie) {}
         public Monitor getMonitor() { return monitor; }
    // Used to store a dynamic integer value that can passed around as a synchronized monitor
    class Monitor {
         int Int;
         Monitor() { Int = 0; }
         public void increment(int howMuch) { Int += Math.abs(howMuch); }
         public void decrement(int howMuch) { Int -= Math.abs(howMuch) * -1; }
         public  int progress() { return Int; }
    }<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    When ran, this is the output:
    java syncTest1
    Notifying...
    Notifying...
    Notifying...
    Notifying...
    Notifying...
    Notifying...
    Notifying...
    <and so on>
    Notice how the monitor is never notified and syncTest1's monitor is still reacquired and able to be notified. I assume the problem lies somewhere in the trading of the monitor between classes, but for the life of me, I can't figure this one out...
    Any help at all would be appreciated.
    Thanks,
    Jick

    There are 2 things wrong.
    1) You did not start your your thread.
    2) You were not synchronizing on the same object.
    I have also made some cosmetic changes but you are free to remove them.
    import java.util.*;
    public class Test20041229
        public static void main(String[] args)
            syncTest2 thread = new syncTest2();
            Monitor monitor = thread.getMonitor();//new Monitor(); !!!!!!!!!!!!!!!!!!!!!!!!!!
            thread.start(); // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1
            for(int i = 1; i <= 100; i++)
                synchronized(monitor)
                    System.out.println("Notifying..." + i);
                    monitor.notify();
                    try
                        monitor.wait(500);
                    } catch(InterruptedException ie)
    class syncTest2 extends Thread
        Monitor monitor = new Monitor();
        syncTest2()
        public void run()
            while (monitor.progress() < 100)
                synchronized(monitor)
                    try
                        monitor.wait();
                    } catch(InterruptedException ie)
                    monitor.increment(1);
                    System.out.println("Notified! Progress = " + monitor);
        public Monitor getMonitor()
        { return monitor; }
    // Used to store a dynamic integer value that can passed around as a synchronized monitor
    class Monitor
        int Int;
        Monitor()
        { Int = 0; }
        public void increment(int howMuch)
        { Int += Math.abs(howMuch); }
        public void decrement(int howMuch)
        { Int -= Math.abs(howMuch) * -1; }
        public  int progress()
        { return Int; }
        public String toString()
            return "Monitor(" + Int + ")";
    }

  • Java threads monitoring

    I am using Java threads in my Java program, running on Windows Professional 2000. I am monitoring the threads using Windows Performance Monitor (WPM). However, even running a small Java program which creates only 2 threads, results in many (at least 10) instances of Java threads being reported by the WPM. Problem is, in WPM, there is no way to determine which threads in the WPM are the threads that I programmatically created. Any ideas on how to determine this?
    Thanks.
    Rhodie

    Hi Dmirty ,
    To handle large asynchronous message   in queues you can use  message packaging where multiple message are processed in one package . to make it applicable you have to perform these simple steps
    1. go to SXMB_ADM add one RUNTIME parameter PACKAGING and value 1
    2 GO TO transaction SXMS_BCONF set delay time 0 message count 100 messages and package size 1000 KB
    with these setting your improvement will increase .secondly also put  IN SXMB_ADM monitor category parameter QRFC_RESTART_ALLOWED TO 1
    this will automatically start your queue . Only thing you have to take care if you enable packaging them don't keep too many parallel queue i.e EO_INBOUND_PARALLEL and EO_OUTBOUND_PARALLEL should be less than 20
    Regards,
    Saurabh

  • How to monitor if portal access through browser is down

    I would like to catch the alert before users report Web site not
    accessible(HTTP 404). I'm thinking of an unix cron job. But what
    should I querry to check the status of Portal?

    In case you are still looking for responses to your question --
    We've been using a product called "WhatsUp Gold" from Ipswitch
    Inc. (http://www.ipswitch.com/products/whatsup/) to do
    monitoring like this for the past few weeks, and so far it's
    worked very well. I put a few simple "monitoring" pages on our
    web servers to return the status of each of the services, then
    we poll these pages every 60 seconds. If we don't get the
    expected response back from any of these queries, WhatsUp sends
    out emails and pages telling us what machine and what service is
    down.
    So far I'm polling the basic HTML service, the database
    connection (mod_plsql), the servlet service, JSP, and am working
    on a way to poll our report server engines and cluster
    machines. (I took the "poll exactly one and only one service at
    a time" approach so whenever something crashes (usually no more
    than once or twice a day... <sigh>), I know exactly what piece
    went down.)
    - Bill

  • Thread Monitoring in a clustered BPEL environment

    Hi BPEL community,
    does anybody know how I can monitor the "Pending Requests" and "Thread Allocation Activity" (BPEL Console - Threads) over all cluster-nodes? Inside the BPEL Console I only see the data of the cluster-node I'm logged in.
    I was not able to see an over-all cluster-nodes view of the load on the bpel-engine.
    Regards, Harald

    I am not familior with anything called Quartz but I think this issue should be handled task scheduler itself.
    In the place I work the task scheduler we use (I house developed one) has following approach
    Once the task is posted it is in "posted" state and once a batch server (Thats what we call the service that executes it) picks a task up it changes the state to "executing". Once the execution is complete it change the state to "ready". If an exception occures it will abort the operation and set the state to "error".
    Batch Server can pick up only the tasks with state "Posted" so two services will not pick up same task.
    By the way the tasks with error state can be reset to posted state by the user.
    probably you need a solution like this. Either you have to develop one or find one which considers the existance of multiple execution services

  • LV Threads, Monitors

    Hi,
    I am trying to solve something like a producer-consumer problem in Labview
    (thinking about Mesa-style monitors) but having a problem. It does not seem
    like the Notify VIs can atomically release a lock and go to sleep.
    Am I missing something?
    -joey

    "valiot" wrote in message
    news:[email protected]..
    > Why is the Notifier not working for you?
    > If you want the "wait on notification" vi to sleep then do not wire
    > the timeout value. Otherwise the wait function will timeout and
    > wake-up at the specified timeout value.
    Indeed, that works fine. I guess I should have been more specific. My
    understanding of Mesa-Monitors (just school, I am no expert) is that you
    must hold a lock before you wait() for a condition variable, and then wait()
    should atomically release then wait for the condition variable. That way
    whatever you signaled is blocked until after the wait() is complete.
    The problem becomes that I can implement locks with semaphores, and I can
    implement wait/signal with notify VIs, but I don't see how I can atomically
    release a lock and wait().
    It is of course possible to signal, unlock, wait. However "worst case" is
    that the signalled thread executes, signals, and the first thread was not
    waiting at the time so it misses the signal; unlikely but possible. In some
    cases it is possible to check the history for missed signals but it seems
    programmatically clumsy and does not always fix the problem.
    In short... Are monitors actually possible given the resources available? I
    was somewhat confused by the lack of atomic unlock/sleep.
    -joey

  • Cancel active thread in the Portal

    Hi
    We are working with NW04S portal and I'm wondering if it's possible to cancel an active thred from the portal ??
    If I remenber corectly it was possible in EP5 by going under system administration --> support --> portal runtime, something like that.
    If I want to cancel a thread on NW04S where do I go and how can I do it ??
    Regards

    How did you do that?
    I´m trying to do the opposite. Learners can see the cancel button in the portal but I´d like to avoid them from that option.
    I know there is an options by hidding the BSP, but we want to use the standard.
    Thanks a lot.

  • How are Apple Support Communities threads monitored?

    While most threads seem to be about  solving problems, or discussions on using products etc, I recently say two threads disappear, probably because the original posters were ranting, being overtly critical of Apple, and insulting other community members without reason. The threads really had no value at all.
    Do Apple employees actively monitor these threads? Or is it only after someone reports an abuse, or as you level up do you get special priveledges to boot people. XD

    "Do Apple employees actively monitor these threads? Or is it only after someone reports an abuse, or as you level up do you get special priveledges to boot people."
    It's a combination of both. Upper level users can report abuse on any observed topic or poster in a topic. There are also moderators who monitor the forums. They are Apple employees.

  • Tab MONITOR in Portal V. 10....

    On the 9.2 versionyou could find a tab with the 'monitor' name, and you has different forms and reports to get stadistics about visits on content area, items, folders, etc. On 10 version I couldn't find this tab, nor these kind of reports.
    Someone know if this possibility has been elimated or where I can find it?

    This feature has been partially deprecated as of Portal 9.0.2.x due to a change in architecture (ie the introduction of Web Cache) You can see more information here:
    http://www.oracle.com/technology/products/ias/portal/html/admin_monitor_10g_diagnostics_analytics.html

  • DPS 6 worker threads monitor command?

    In the deployment guide it states:
    Directory Proxy Server allows you to configure how many threads the server maintains to
    process requests. You configure this using the server property number-of-worker-threads,
    described in number-of-worker-threads(5dpconf). As a rule of thumb, try setting this number
    to 50 threads plus 20 threads for each data source used. To gauge whether the number is
    sufficient, monitor the status of the Directory Proxy Server work queue on cn=Work
    Queue,cn=System Resource,cn=instance-path,cn=Application
    System,cn=DPS6.0,cn=Installed Product,cn=monitor.
    How do you do an ldapsearch on monitor in a dps? I dont know how to do the command suggested in the manual.

    ldapsearch -p port -h host -b cn=monitor -D 'cn=proxy manager' -w password cn=*

  • Hanging threads in J2EE/Portal 7.0

    Hi,
    How to check/know the hanging threads in Portal 7.0 system
    what is the cause and avoid
    Thanks in advance

    Hi,
    Do you have Wily Intro-scope in your landscape?If yes then you can refer to this doc :
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50973df5-e1d1-2c10-cf89-c177fbfd7e65?QuickLink=index&overridelayout=true
    Otherwise, you can goto NWA->Availability and Performance management-->Java system report or LogViewer and explore options there.
    Normally,i refer to Java system reports.
    Thanks,
    Ashutosh

Maybe you are looking for

  • Web Service Call with Basic Authentication does not work

    If I try to use Basic Authentication in my Web Service Client with the automatically created methods setUsername(inUserName) setPassword(inPassword) setAddress(inAddress) the application does not make a call. Did I forget something? Is it possible to

  • CS 6 & plug ins

    After installing WAVES 6vr4, this comes up: Problem signature:   Problem Event Name:    APPCRASH   Application Name:    Adobe Audition CS6.exe   Application Version:    5.0.0.708   Application Timestamp:    4f70c4f6   Fault Module Name:    WavesLib 6

  • Import excel

    hi gurus, i am trying to import excel file through import manager to vendor repository. the schema of my repository is as follows <?xml version="1.0" encoding="UTF-8" standalone="no" ?><RepositorySchema Identity="35" MdsVersion="0,3,5,3,7,0,0,1,11"><

  • With DVI, no internet

    Hello, when I connect my macbook pro to my TV with mini disply to DVI cable, the laptop cannot connect to internet. When I disconnect it with TV, internet works fine again. could anyone help me out?

  • Getting FileNotFound Exception while using https url connection

    Hi I am facing a serious problem in running the code. I am using JSSE in my code and through this application I am hitting a URL which is also using HTTPS and that code is also using JSSE in servlets. Now when I use the code I get a FileNotFoundExcep