WebLogic Monitoring tools

Are there any monitoring tools (say monitoring weblogic server is up or not , finding no of JMS queues and active connections, finding how much java heap is being used etc) available for WebLogic Server? Are there any documents available from Bea detailing the classes available for accomblishing the same.
Thanks
Venkat

Venkat,
There is a company called Precise (www.precise.com) that offers products for
WebLogic, Oracle, EMC, some ERP systems, and CISCO, as well as software that
ties all the information together. AFAIK, their WebLogic monitoring product
is currently only available as part of a "solution" (i.e. it comes in a
package with a consultant and may be bundled with some of their other
products).
Peace,
Cameron Purdy
Tangosol, Inc.
http://www.tangosol.com
+1.617.623.5782
WebLogic Consulting Available
"Venkat" <[email protected]> wrote in message
news:3a313863$[email protected]..
>
Are there any monitoring tools (say monitoring weblogic server is up ornot , finding no of JMS queues and active connections, finding how much java
heap is being used etc) available for WebLogic Server? Are there any
documents available from Bea detailing the classes available for
accomblishing the same.
>
Thanks
Venkat

Similar Messages

  • Perfect Weblogic Monitoring Tool

    I am working on Weblogic from last six years, I could not experienced any Monitoring tool that can be used 100%.
    Please post me if any one knows any tool, custom script that can be used.
    Any Ideas or discussions also on this can be continued.

    50% considering all the high level necessary monitoring.
    Remaining... Events, Logs Monitoring and reporting is really looking.

  • Java - Weblogic performance monitoring tool

    Hi there,
    I would like to use a performance monitoring tool for the JVM 1.2.2.x running on weblogic5.1,
    I understand this is quite old version of JVM and already EOL. However We are having performance issue needs to be addressed ASAP.
    Please advice, many thanks in advance.
    - Arun Janarthanan

    Free performance monitoring tool? You can try WebLogic Scripting Tool, you
    can download from
    https://codesamples.projects.dev2dev.bea.com/servlets/Scarab?id=S13
    You can write your own JMX code to get some runtime status from WebLogic as
    you want.
    http://e-docs.bea.com/wls/docs81/jmx/index.html
    "John Marmelstein" <[email protected]> wrote in message
    news:[email protected]..
    Hello,
    Might anyone know of a free performace monitoring tool? Just I've used
    the monitoring part of Mercury before, it makes nice graphs of memory use.
    Is there some free equivalent out there?
    Or maybe someone has cooked up some JMX script ?
    thanks!
    JM

  • Which Performance Monitoring Tool is good for Weblogic?

    Please advise me on good performance monitoring software. Budget is no issue.
    A typical performance monitoring tool has:
    Server monitoring
    Application server monitoring
    Database monitoring
    Web services monitoring
    Virtualization monitoring
    An example is ManageEngine's Applications Manager
    currenty, I want to monitor:
    1 - BEA Weblogic server 8.1
    2 - Oracle 9i Rel 2
    Once I can identify the bottlenecks, recommendation for hardware / software upgrade can be made easily.
    Thanks.

    Thanks Faisal, I will evaluate this product if full functional trial version is available.
    so far I have come to know about these tools:
    Applications Manager
    up.time
    Still not sure which one brings more value to the business.
    Regards,
    Yasar
    Edited by: user12145614 on Dec 5, 2010 11:02 AM

  • Anyone tried the new Weblogic Scripting Tool (WLST)?

    Has anyone tried using the new WebLogic Scripting Tool (WLST) that was recently
    posted on the dev2dev WebLogic Utilities site: http://dev2dev.bea.com/resourcelibrary/utilitiestools/adminmgmt.jsp
    It looks to be a handy tool that is built upon jython and enables you to easily
    navigate, inspect and manipulate the WebLogic MBean tree on a running server.
    It also has a nice scripting tool which allows you to convert a config.xml file
    into a script that can be run to recreate a domain or specific resources within
    the domain. This is exactly something I have been looking for because we occasionally
    recreate domains or subsets of a domain for testing and POC purposes.
    The utility is fairly well documented and works well for the most part. The only
    issue I have run into so far is that is does not seem to understand JMS Distributed
    Destinations. When I try to convert a config.xml that contains a DD to a script
    it throws a null pointer exception. I have not tried a cluster yet.
    I noticed the utility was authored by someone at BEA. Is there potential that
    BEA will support this in the future if it catches on? Has anyone had experience
    with WLST or jython that would cause you to reccomend (or not) using it?
    Thanks.

    Darryl,
    Thanks for the valuable feedback. My comments are inline.
    Darryl Stoflet wrote:
    As a fairly long time wlshell user who recently started testing wlst there are
    few features I have found lacking in wlst.
    1. For monitoring purposes I am frequently using the -g and -r options to wlshell's
    get command for graphing and repeating respectivelyI haven't looked at -g and -r options in wlshell, but will do so.
    Although there is no graphical monitoring of attributes in wlst, but
    there is certainly some monitoring capability (which will be enhanced
    further in the coming version). Please take a look at the
    monitorAttribute() function.
    wls:/(offline)> help('monitorAttribute')
    Description:
    Monitors the specified attribute every by polling every interval.
    Syntax:
    monitorAttribute(attributeName, interval, monitorFile)
    attributeName = Name of the attribue that you would like to monitor.
    interval = Time (in seconds) to wait before the next fetch
    monitorFile=[optional] File path where the monitored data will be
    written to.
    Example:
    wls:/mydomain/runtime/ServerRuntimes/myserver/ExecuteQueueRuntimes/weblogic.kernel.Default>
    monitorAttribute("ServicedRequestTotalCount",10)
    Press Return to quit monitoring
    Monitoring started for attribute ServicedRequestTotalCount
    wls:/(offline)>
    >
    2. wlshell 2.0 adds the option when connecting to the admin server to also connect
    to all managed servers in that domain. This is a nice feature for monitoring because
    you then have access to all the runtime mbeans in each managed serverYes, this indeed seems to be a very nice feature. We will consider this
    for our next release.
    >
    3. There is not a good way to pass cmd line options(variables) to wlst. In wlshell
    I can send cmd line options via -v. I have tried something similar with wlst using
    -loadProperties but this is a little laborious because I do not necessarily want
    to create a properties file when a passing in only one or two variables. Also
    I find loadProperties lacking somewhat (see 4 below)ok, I just realised that there is indeed a bug in wlst where the command
    line arguments are not being honored. In Jython one can access the
    command line arguments from the sys.argv variable. For example,
    java weblogic.WLST -i foo.py var1 var2 var3
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to Weblogic Server Administration Scripting Shell
    Type help() for help on available commands
    wls:/offline> print sys.argv
    ['foo.py', 'var1', 'var2', 'var3']
    wls:/offline>
    But this isn't working properly, please keep using the loadProperties
    untill this has been fixed.
    >
    4) loadProperties treats all created variables as strings. While this is understandable
    from the perspective that getProperty returns a string, it would be nice if wlst
    was smart enough that when a property is numbers only its an int, otherwise a
    string etc.
    wlshell does this logic/conversion for you which really simplifies calling methods
    that expect the particular datatype. To get around this problem you can create a script file say,
    variables.py which would look like,
    # variables that will be used
    theInterpreter.set('var1',10)
    theInterpreter.set('var2','i am a string')
    java weblogic.WLST variables.py
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to Weblogic Server Administration Scripting Shell
    Type help() for help on available commands
    wls:/(offline)> print var1
    10
    wls:/(offline)> print var2
    'i am a string'
    >
    5. I'd like to be able to send cmd output etc to a file while running within wlst.
    In wlshell its a simple as adding >> filename to the end of the command. In wlst it is not as simple as doing >>, it is more than that. You can
    choose any output stream to direct your output to. In your case you can
    create a FileOutputStream and route the output to this stream for any
    particular command.
    Example,
    # create a file output stream say fos
    from java.io import FileOutputStream
    fos = FileOutputStream("output.txt")
    # save the default output stream to a variable to
    # switch it back
    sys.stdout=fos
    # Now all output for any function will go to output.txt
    ls()
    cd('foo')
    # after done with your functions switch it back
    sys.stdout=origOutput
    This is the right Jython way to do it. This works for all output streams
    , very useful when you embed an interpreter in a servlet and would like
    to display the output via a PrintStream etc.
    >
    >
    All in all wlst is a nice tool. Personally if the above features were added it
    would be much easier to transistion to wlst for good.
    Also I really like the wlst offline tool. Its nice to be able to do the whole
    create and configure domain process with one tool. Will this be supported. Yes indeed. We are working on merging both the tools into one.
    I do
    not want to rely on it too much if it will not work in future weblogic versions.It will be supported in future release of weblogic.
    Thanks,
    -satya
    >
    Thanks,
    Darryl
    "Steve Hess" <[email protected]> wrote:
    Hello,
    I am the BEA Product Manager behind WLST.
    WLST, as it appears today on dev2dev, is an early release version of
    a tool that
    BEA does intend to support as part of our next major release. We decided
    to issue
    early versions of the tool because of the demand for a supported scripting
    solution,
    and to generate feedback from our user community. I encourage you to
    work with
    WLST, and assure you that this tool represents our current direction
    in management
    scripting.
    Also note, this newsgroup can be used to issue questions, concerns and
    feedback
    about WLST. The engineering and PM team will monitor this group and
    respond to
    your questions as quickly as we can. While we will not be able to respond
    to
    every feature request, we really value your suggestions, and will endeavor
    to
    improve the tool in ways that meet your real-world needs.
    Cheers,
    Steve Hess
    Director, WLS PM
    "George Lupanoff" <[email protected]> wrote:
    Has anyone tried using the new WebLogic Scripting Tool (WLST) that was
    recently
    posted on the dev2dev WebLogic Utilities site: http://dev2dev.bea.com/resourcelibrary/utilitiestools/adminmgmt.jsp
    It looks to be a handy tool that is built upon jython and enables you
    to easily
    navigate, inspect and manipulate the WebLogic MBean tree on a running
    server.
    It also has a nice scripting tool which allows you to convert a config.xml
    file
    into a script that can be run to recreate a domain or specific resources
    within
    the domain. This is exactly something I have been looking for because
    we occasionally
    recreate domains or subsets of a domain for testing and POC purposes.
    The utility is fairly well documented and works well for the most part.
    The only
    issue I have run into so far is that is does not seem to understandJMS
    Distributed
    Destinations. When I try to convert a config.xml that contains a DDto
    a script
    it throws a null pointer exception. I have not tried a cluster yet.
    I noticed the utility was authored by someone at BEA. Is there potential
    that
    BEA will support this in the future if it catches on? Has anyone had
    experience
    with WLST or jython that would cause you to reccomend (or not) using
    it?
    Thanks.

  • Performance monitoring tool?

    Hello,
    Might anyone know of a free performace monitoring tool? Just I've used the monitoring part of Mercury before, it makes nice graphs of memory use. Is there some free equivalent out there?
    Or maybe someone has cooked up some JMX script ?
    thanks!
    JM

    Free performance monitoring tool? You can try WebLogic Scripting Tool, you
    can download from
    https://codesamples.projects.dev2dev.bea.com/servlets/Scarab?id=S13
    You can write your own JMX code to get some runtime status from WebLogic as
    you want.
    http://e-docs.bea.com/wls/docs81/jmx/index.html
    "John Marmelstein" <[email protected]> wrote in message
    news:[email protected]..
    Hello,
    Might anyone know of a free performace monitoring tool? Just I've used
    the monitoring part of Mercury before, it makes nice graphs of memory use.
    Is there some free equivalent out there?
    Or maybe someone has cooked up some JMX script ?
    thanks!
    JM

  • Monitoring Tool : sje-systems

    Hi,
    Whether anybody using monitoring tool of sje-systems for weblogic 8.1.
    http://www.free-administrator.com/Oracle-Weblogic-8.1-Monitor?n2123375857=119
    http://www.sje-systems.com/
    Please provide your inputs for any similar free tools for weblogic monitoring.

    Hi
    SAPMSG.INI file only for SAP systems, for non sap systems monitoring data exclusively pushed by the local agents
    for detail please refer under [http://service.sap.com/monitoring|http://service.sap.com/monitoring]
    Thanks,
    Jansi

  • Oracle EPM 11.1.2.1 Monitoring tools

    Gurus,
    could you please let me know what are the available system monitoring or performance monitoring tools for oracle EPM 11.1.2.1 or in case licenses are involved what are the best key areas for manual procedures to monitor the system?
    Many thanks !

    Hello,
    Monitoring is a broad term. There are many 3rd party tools available that can provide monitoring, it all depends on what exactly you're looking for.
    Oracle has a document on setting up Oracle Enterprise Manager to monitor Hyperion Applications: http://www.oracle.com/technetwork/middleware/bi-foundation/sys9-oem-integration-1-129287.pdf. For performance monitoring, you can also look at this: https://blogs.oracle.com/pa/entry/epm_11_1_2_how3. This will basically connect to the JRockit JVM and look at the performance for the web application.
    If you want to do more monitoring (services, servers, processor, CPU), you can look into Hyperic HQ: http://www.hyperic.com/. They have both an open source version and an enterprise version. I've used the open source version myself and it is pretty good and plays well with Windows. You can see many metrics, graphics and information via the web based application. You can also setup email alerts on certain activities (service stop, service start) and also monitor website availability. For being an open source software, I think it offers alot and it is very reliable.
    Again, these are just a few suggestions. There are many tools out there that can accomplish what you're looking for.
    Regards,
    Luis

  • Where can i check in the real time monitoring tool if there are active calls in progress?

    where can i check in the real time monitoring tool if there are active calls in progress? 

    Hi
    Selecting Call Manager -->Call Process ---> call activity
    HTH
    Regards
    Carlo

  • Please suggest DB monitoring tool

    Our DB have some performance issues, I need your suggestions to buy a DB monitoring tool to help us to resolve these problems.
    If you can share your experiences on the tool, it will be the best.

    Hi,
    We don't have enough knowledge on DB.In that case, beware of tools that make recommendations that you cannot understand . . .
    Some advanced monitoring tools can be cryptic for beginners.
    Is OEM or Statspack suitable to a beginner? Beware, the OEM diagnostic pack and the OEM performance pack are really expensive, over $6,000 per seat:
    http://www.dba-oracle.com/news_tuning_packs_price.htm
    Plus, consider 3rd party tuining tools.
    Historically, Oracle tools have had a bad reputation, and Oracle's Oracle Expert tool was widely criticized for making ridiculous tuning recommendations . .
    Everybody has a monitoring tool to plug, I even have a few that I wrote myself.
    There are a zilllion of them, but they all offer test drives, but try to find:
    - A monitoring tool that makes recommendations in plain English
    - A tool that is reasonably priced
    - A tool from a well-know vendor with a good track record
    Lastly, if you are not familiar with Oracle tuning, it may be better and cheaper to buy an Oracle health check.
    A guru can find tuning problems in just a few hours, faster and more efficient that using a tuning tool.
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/t_oracle_tuning_book.htm
    "Time flies like an arrow; Fruit flies like a banana".

  • Throws a weblogic.i18n.tools.GenException

    In WebLogic 6.0, I'm trying to use weblogic.i18ntools.l10ngen to
    generate localized properties file for simple text. and when i
    have a japanese AdderLabels.xml file, it fails during parse. the
    japanese AdderLabels.xml just has english text in it. and it was
    created using weblogic.i18ntools.gui.MessageLocalizer
    Here's the error:
    weblogic.i18n.tools.GenException: Code gen exception: Parse failed
    for: \weblogic\msgcat\ja\AdderLabels.xml
    at weblogic.i18ntools.l10ngen.parseIt(l10ngen.java:358)
    at weblogic.i18ntools.l10ngen.buildLangOutputs(l10ngen.java:302)
    at weblogic.i18ntools.l10ngen.generate(l10ngen.java:408)
    at weblogic.i18ntools.l10ngen.run(l10ngen.java:422)
    at weblogic.i18ntools.l10ngen.main(l10ngen.java:459)
    Any ideas? Please email me at [email protected]
    Thanks.

    In WebLogic 6.0, I'm trying to use weblogic.i18ntools.l10ngen to
    generate localized properties file for simple text. and when i
    have a japanese AdderLabels.xml file, it fails during parse. the
    japanese AdderLabels.xml just has english text in it. and it was
    created using weblogic.i18ntools.gui.MessageLocalizer
    Here's the error:
    weblogic.i18n.tools.GenException: Code gen exception: Parse failed
    for: \weblogic\msgcat\ja\AdderLabels.xml
    at weblogic.i18ntools.l10ngen.parseIt(l10ngen.java:358)
    at weblogic.i18ntools.l10ngen.buildLangOutputs(l10ngen.java:302)
    at weblogic.i18ntools.l10ngen.generate(l10ngen.java:408)
    at weblogic.i18ntools.l10ngen.run(l10ngen.java:422)
    at weblogic.i18ntools.l10ngen.main(l10ngen.java:459)
    Any ideas? Please email me at [email protected]
    Thanks.

  • Messages are Holding in message monitoring tool

    Hi All,
    I am facing the problem with messages which are in holding state.
    My scenario is file to proxy. The file content contains of EDI. my scenario is already gone to production last year.
    and its working fine. Used java mappings for validation of EDI file. its running successfully.
    where as in Dev system till october first i used to load the files in FTP inbox folder and messages were processed successfully.
    But from october first week when i load the files in FTP inbox, file has been picking succesfully and can see the logs in sender comm channel  but the i can see that my interface is in holding state in message monitoring tool and its not going to receiver comm channel. I have loaded 5 files and all are in holding state. 
    even i have cancelled first error message and tried to resend the next message swhich is in holding state, but this is not happening.
    i am using EOIO queue.
    when i cancel the error message remaining messages should processed automatically but its not getting processed here.
    sequencing of the interface triggering is
    1. Interface_1
    2. Interface_2
    3. Interface_3
    4. Interface_4
    Here i am stucking up with the first interface itself.Here only first interface is in holding state.
    can any one advise what could be the problem..
    I m on SP 10.
    Thanks,
    Bhaskar

    Hi Abhijit,
    Even after unchecking the checkbox maintain order at runtime, its not working.
    i think there is no disturbed in message processing sequence.
    my first sender interface itself going into hold state.
    i have cancelled the hold message, even after that remaining messages are processing automatically.
    and also i could not fine any messages in SMQ1 and SMQ2.
    I also deresister and registered te queues and activated.
    Kindly advise what would be the problem..
    in production its working fine and development its not working fine.
    Thanks,
    Bhaskar

  • Monitoring Tool for Monitoring Business Process

    Hi All,
    Is there any monitoring tool which is able to monitor various technologies .
    we are integrating biztalk with SAP and we are looking for a tool which we can use to monitor both, is there any?
    Praj Dixit

    Hi All,
    Is there any monitoring tool which is able to monitor various technologies .
    we are integrating biztalk with SAP and we are looking for a tool which we can use to monitor both, is there any?
    Praj Dixit
    If if want just to monitor various technologies, lets say BizTalk, then there are lot of tools available for this. BizTalk 360 and SCOM are two main tools.
    similarly if you want to monitor SAP- like availbility of SAP services/URLS/Databases etc, then HP OpenView can be one option.
    However, if you just want to make sure your business process ( integrated BizTalk/SAP..etc) are up and running then you could write some Automated Smoke test scripts, which will perform some basic testing and make sure all components are up and running. 
    Hope this helps. 
    Greetings,HTH
    Naushad Alam
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or
    Mark As Answer
    alamnaushad.wordpress.com

  • What is Business Process Monitoring Tool (BPMT)?

    Dear colleagues
    There is also a strange tool named Business Process Monitoring Tool (BPMT), provided as an Add-on installation within SAP Netweaver 701 SP06
    [Note 1453759 - BPMT 701 Business Process Monitoring Tool: Installation|https://service.sap.com/sap/support/notes/1453759]
    What is it, and how it is connected with SAP NW BPM?
    Any explanation would be much appreciated

    Hi,
    this tool is to provide a business process monitoring within the ABAP stack. So you're able to get information about "how many processes of process X have not been finished, yet". This is based on several agents listening to the business process implementations (e.g. SAP Business Workflow) and provides those generated events to a monitoring engine.
    As far as I know this component has not been released, yet. I don't know the delivery date (maybe in QII or QIII 2011) --> who know's?
    Cheers
    Martin

  • BEST DB MONITORING TOOL

    hai every body ,
    from your experience which is the best DB monitoring Tool ...?
    my purpose is to watch the activities(insertion,deletion,updation on which tables?)  when an application is working...
    or is there any other oracle supplied packages,which satisfies my purpose...?
    please specify to me...
    thanks in advance...
    john

    Hi John,
    which is the best DB monitoring Tool ...?For proactive monitoring, you cannot beat STATSPACK, all free . . . .
    For reactive monitoring, I like Quest Spotlight and Confio Ignite.
    my purpose is to watch the activities(insertion,deletion,updation on which tables?) when an application is working...That not monitoring, that's auditing!
    You can use LogMiner for free . . .
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

Maybe you are looking for

  • Permanently deleting emails from Gmail, while saving them in AppleMail

    I'm trying to figure out how to permanently delete emails from my Gmail All Mail folder without deleting them from the folders I moved them to in the On My Computer area of my AppleMail on my MacBook Pro.  I like the IMAP syncing function in Gmail th

  • Null is not an object

    I'm trying to make a very simple epub and am getting a "null is not an object" error. I am finding nothing on why I am getting this error. I have no footnotes, no embedded objects, just text. Anyone have an idea why this is heppening and how I can fi

  • IMac 24" GT 130 vs HD 4850 and 3.06 vs 2.93 - 24inch iMac

    Hi I'm thinking of buying an iMac - either the 24" 3.06 or 2.93 and either the GT130 or Radeon HD4850. I plan to dual boot with Windows XP. Couple of questions: 1. Which is the best option? Bang for Buck etc. 2. How big a partition should I create fo

  • Any way of getting your current location in Numbers for iOS

    I was looking for a way to get geographic location information from the iPad Core Location API from within Numbers and based on the iPad's location, a cell's value would change based on the location. Does anyone know if Numbers supports location info

  • The loss of Events: serious consequences

    As everyone discovers once the import of an iPhoto library into Photos is complete, iPhoto Events are now converted to good old fashioned Albums. This has two consequences that I consider completely unacceptable. Photos can belong to multiple albums;