How to Monitor Applications on a single server

Hi Team
I need some advice on Application Monitoring, my boss wants to monitor every application running on a specific server using the Application Monitor displaying the app's current values, ave response time, availability, performance etc...
and advice would be greatly appreciated.

Use "Enable monitoring all web applications' on ApmAgent object:
http://blogs.technet.com/b/momteam/archive/2012/12/19/apm-throttling-settings-and-other-apm-overrides-in-sc2012-operations-manager.aspx
Also advice your boss to look at Application Insights:
http://msdn.microsoft.com/en-us/library/dn481095.aspx

Similar Messages

  • One Search service application for multiple web applications in a single server

      We are planning to host 17 Web applications in a single Server. Do I need to create search service application for each web application or I need to create one  Search service application , create a Content source for each web
    application and create a Result source for filtering. Which is the best approach. And which approach takes more RAM memory.
       In my application I am using Search web part, "Recently Changed Items", "Popular Items" web parts. when I created only one one  Search Service application for all web applications and using Result sources ,
    I am not getting the results. What could be the problem.

    Hi,
    One SSA is ok, but you should think about access rights. If the access is clear cut between all the web apps you should be ok with one SSA. Multiple result sources limiting on content source also works, but could easily be bypassed.
    Multiple SSA's will eat up RAM/CPU like a mother :)
    As for popular etc.. it could be due to how those sources are set up, but haven't investigated or tested this much.
    Thanks,
    Mikael
    Search Enthusiast - SharePoint MVP/MCT/MCPD - If you find an answer useful, please up-vote it.
    http://techmikael.blogspot.com/
    Author of Working with FAST Search Server 2010 for SharePoint

  • How to deploy application as a single unit

    Hi
    I have an application in jdeveloper that contains several bpel projects , some esb projects and some pure java based web service projects. Now i want a mechanism to deploy this whole application as a single unit on a production environment server. I know obant tool but problem is that it can deploy a single project and not a whole application. Any pointers on that how i can achieve this task?
    Thanks.

    Thanks ashish, with your help i am able to deploy several bpel projects at one go.
    But i am facing problem with auto esb deployments using ant build. As suggested by you i downloaded documentation.zip and executed steps given in it.
    When i run ant , it shows build successful but when i goto esb console nothing comes up(ie esb projects is not getting deployed).
    Here is my ESBMetadataMigrationTaskdefs.xml::
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - The import of this ant build file, by another ant build file, enables the
    - use of the custom ant tasks present in ESBMetadataMigration.jar
    - Doug Gschwind
    - 12 Dec 2006
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <project name="ESBMetadataMigrationTaskdefs">
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - PROPERTIES, Subject to the installation environment
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <property name="commons.httpclient.home" value="C:/ForEsbAutoDeploy/commons-httpclient-3.1"/>
    <property name="jaxb.v2.0.2.home" value="C:/ForEsbAutoDeploy/jaxb-ri-20060801"/>
    <property name="soa.suite.home" value="C:/product/10.1.3.1/BSNLEAIAS"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Custom ant task definitions, to enable import.
    - This section should be treated as immutable upon installation.
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <dirname property="imported.basedir" file="${ant.file.ESBMetadataMigrationTaskdefs}"/>
    <echo>
    imported basedir is:: ${imported.basedir}
    </echo>
    <taskdef resource="oracle/tip/esb/client/anttasks/antlib.xml">
    <classpath>
    <pathelement location="${imported.basedir}/ESBMetadataMigration.jar"/>
    <pathelement location="${commons.httpclient.home}/commons-httpclient-3.1.jar"/>
    <pathelement location="${soa.suite.home}/lib/xmlparserv2.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/commons-logging.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/commons-codec-1.3.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/oraesb.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/activation.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jaxb-api.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jsr173_1.0_api.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jaxb-impl.jar"/>
    </classpath>
    </taskdef>
    </project>
    =======================================================
    Here is my build.xml::
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <project name="ESBMetadataDeploymentTestProject" default="usage">
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - PROPERTIES
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <!--
    <property name="esbProjectToDeploy" value="C:\Oracle\product\JDeveloper\v10.1.3.1\jdev\mywork\ESBSamples\DGTest"/>
    <property name="deploymentPlanFilename" value="C:\Oracle\product\JDeveloper\v10.1.3.1\jdev\mywork\ESBSamples\DGTest\testDeploymentPlan.xml"/>
    -->
    <echo>Import ESBMetadataMigrationTaskdefs</echo>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Import, to enable the custom ESB Metadata Deployment ant tasks ...
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <import file="C:/ForEsbAutoDeploy/ESBMetadataMigrationTaskdefs.xml"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - TEST Deployment Automation
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="test.DeployESBProjects">
         <deployESBProjects esbMetadataServerHostname="localhost"
              esbMetadataServerPort="8888"
    userName="oc4jadmin"
    password="welcome1">
         <esbProject directory="C:/jdevstudio10133/jdev/mywork/AppAutoAnt/ESBProject1"/>
         </deployESBProjects>
    </target>
    <!--
    <target name="test.UndeployESBEntities">
         <undeployESBEntities esbMetadataServerHostname="localhost"
              esbMetadataServerPort="8889"
    userName="oc4jadmin"
    password="oc4jadmin">
         <system guid="8D61C3F0871111DB8F2675C60E6C31C6"/>
         <serviceGroup guid="0EB5F380896111DBBFBC9530C01627AC"/>
         <service guid="0547F370841611DBBFCF2D9BF80323FA"/>
         <service guid="05458270841611DBBFCF2D9BF80323FA"/>
         <system guid="86443990871611DB8F2675C60E6C31C6"/>
         <serviceGroup guid="B90E6B70895F11DBAF1483EEF470B835"/>
         <system guid="A62C91C1841511DBBFCF2D9BF80323FA"/>
         <system guid="D9F290E1896011DBBFBC9530C01627AC"/>
         <system guid="A9B213C1895F11DBAF1483EEF470B835"/>
         </undeployESBEntities>
    </target>
    -->
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - TEST Metadata Promotion to different ESB Metadata Servers (environments).
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <!--
    <target name="test.ExtractESBDeploymentPlan">
    <extractESBDeploymentPlan sourceDir="${esbProjectToDeploy}" deploymentPlanFile="${deploymentPlanFilename}"/>
    </target>
    <target name="test.DeployESBSuitcase">
         <deployESBSuitcase esbMetadataServerHostname="localhost"
    esbMetadataServerPort="8889" sourceDirectory="${esbProjectToDeploy}"
    deploymentPlanFilename="${deploymentPlanFilename}"
    forcedDeployment="false"/>
    </target>
    -->
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - USAGE
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="usage">
         <exec executable="ant" dir="${basedir}" vmlauncher="false">
         <arg value="-projecthelp"/>
         </exec>
    </target>
    </project>
    I guess i dont need those UndeployESBEntities target and ExtractESBDeploymentPlan target , so i have commented it. Also all the jars mentioned are correct(with versions >= mentioned in the document.).
    Thanks.
    Message was edited by:
    sameer h

  • How to monitor load on my database server ?

    Hi Experts,
    Could anybody please suggest me a way to monitor the load on my database server?
    What perfmon counters should I monitor on daily basis and confirm that load on the server is increasing day by day [or] by week by week [or] every month. Also, suggest me if we can achieve this using DMV's so that we can store this info in a table using a SQL
    agent job. Because a sql guy I would be more happy working with TSQL queries.
    Do all this helps me, to put for forward my argument to the management that this server can handle this much of load based on data and incase if the load is increased on the server , we might need more resources ( like cpu, better storage , more RAM etc ...)
    or move to a new server which has more power.
    Also, please suggest any load testing tools so that I can test this on testing environment.
    Thanks in Advance.

    About Perfmon counter, 
    You may refer the below perfmon counter pdf file. You may need to look at all memory counters to confirm the issues. 
    http://www.quest.com/backstage/images/promotions/SQLServer-Perfmonance-Poster.pdf
    Regarding
    your request on workload, you need to do a Capacity planning of your servers first. 
    Please refer the below link, this would explain complete info:
    http://sqlactions.com/2012/05/15/collection-and-reporting-of-perfmon-data-for-sql-server-capacity-planning-and-trend-analysis/
    To find the SQL Server Usage and monitoring server, you can even think of
    third party tools like Spotlight/Foglight etc...
    http://www.quest.com/foglight-for-sql-server/

  • Restart application on single server of a cluster

    Hi all,
    I have a cluster of three nodes/servers and I have deployed 2 applications on this cluster.
    I want to know if is it possible to stop and to start an application in a single server of the cluster, not on all servers of the cluster.
    Example:
    Cluster --> servers: 1, 2, 3
    Deployed applications --> A, B
    I want to stop B only at server 2, is it possible? If yes, how?
    Thank you in advance,
    Indrit Selimi

    Thank you very much for responding.
    Yes, I agree that theoretically all the nodes on the cluster will be aligned and there will be (and must be) no difference between nodes. But in real life applications, it can happen for example that one of the servers fails (ex. out of memory) and you have to reboot it; now, if for some reason application B fails to start (ex. problem with data source etc); why I should reboot the server halting also application A that have no problem? For this reason I was asking if there was a way to restart one application on single server of a cluster.
    Thank you very much again.
    Indrit

  • How to monitor SERVER performance

    hello,
    how to monitor the performance of the server,whether it is hit ratio is high or not
    can u please send the query
    regards

    Database Performance Monitoring is a little more complicate than running a query to get ratio. And different version of Oracle has different tools and utilities to help you.
    Strongly recommend you read Oracle® Database Performance Tuning Guide

  • Install 11.1.2.4 on a single server for testing

    I am not sure if anyone has installed 11.1.2.4 on a single server. If so can you please assit me. We are trying to consolidate some servers and would like to use a single server for testing of 11.1.2.4. Can this be done? Has anyone done this sucessfully or have any documents on how to do it on a single server.
    Any input would help

    If you are just looking for a quick environemnt to use for testing, and are not worried about the actual installation process, this might be useful:
    Hyperion Error of the Day: EPMVirt: Oracle Hyperion 11.1.2.4 Virtual Environment
    Nick

  • TA27369 how do you see the server monitor application

    I am trying to troubleshoot on an Xserve.  Cannot see the drive and triangle light is blinking.  My search tells me to view the server monitor application.  What is this and where can I find it if I am unable to see the hard drives? 

    Is the XServe booted? If not then Server Monitor isn't going to help you much. All it can do is give you environmental status of your server (power supply, memory, temperature, etc.). It can't diagnose a failed disk or restore a failed system.
    That said, if you want to run it, you can run it from any other system on your network. The Server Admin tools should have been included with your server disks, or you can download them from Apple.

  • How to monitor a telnet server

    Here a quick powershell script PS4Not tested, but it should test the port, email you if it is not up, if it is sleep for 600 sec and try againPowershell$Computername = "Server1"do{$Result = $NULL$Result = $Result = Test-NetConnection -computername $computername -Port 23 -InformationLevel Detailedif ($Result -eq $NULL){$MessageBody = "$Computername - Telnet Port no open!"Write-host $MessageBody -foreground red$smtpServer = "yoursmtpserver.domain.com"$msg = new-object Net.Mail.MailMessage$smtp = new-object Net.Mail.SmtpClient($smtpServer)$MailFrom = "[email protected]"$msg.From = $MailFrom$Mailto = "[email protected]"ForEach ($element in $Mailto) { $msg.To.Add($element)}$msg.Subject = "$Computername - Telnet Port not open!!!!!!!!"$msg.IsBodyHTML = $true$msg.body = "$MessageBody"$smtp.Send($msg)} Else{Write-host "$Computername has Telnet port...

    Hi everyone.  We are using a shop floor application to record the movement of parts and assemblies throughout the plant as operation sequences are performed by the workers.  It's a custom telnet server that receives connections via computers on the shop floor.  Its not perfectly stable, but its usually at night when it fails.  I'm the IT Manager and the entire IT Department, and it's part of my job to get it running again when it has failed, and sometimes that means a call at 6am from a shop supervisor telling me "MAXDC is down again."
    I need a way to monitor TCP port 23 on that server, but I haven't figured out how, especially with Spiceworks.  Can someone please point me in the right direction?  I don't want to spend money on this, considering it's just a single server/port I need to monitor like this.  Anyone?
    This topic first appeared in the Spiceworks Community

  • How to monitor an application using JMX

    Hi,
    How can I monitor the portal application running on  portal server by using MBeans (JMX)? For this I need to make a connection between my portal application and  MBean class, How to monitor operations? How can I do that? If anybody has come across the same requirement pls explain me with the implementation details.

    Hello,
    I have done that in a project (not Portal, but pure Java Application, should be no difference), working fine.
    The steps are as follows:
    - create MBean Server (e.g. MBeanServerFactory.createMBeanServer("test");)
    - create your MBeans
    - make them accessible to clients (register the MBeans in the server)
    - query them from clients
    see http://java.sun.com/developer/technicalArticles/J2SE/jmx.html
    for very good explanation including sample source code.
    CSY

  • How to monitor oracle 11g database sessions on Windows 2008 server?

    Hi Experts
    How to monitor the Oracle 11g database sessions on Windows 2008 server (other than SQL Developer tool), which procedure or query is taking more time with Java application.

    Recently i found this tool- myorasql on the net to monitor the performence of database, easy to setup and check the performence.  i never tested it but seems impresive.  It is free and i think it would be use ful to you.
    http://myorasql.com/
    You can also use Quest - Toad or sqlplus if you are very good at sql commands and all dictionary tables or OEM/EM grid if it is configured .

  • Monitoring JBoss Server and applications running on that Server

    Hi,
    I am new to JMX. My requirement is, we need to monitor health of application server like jBoss and applications running on that server.
    I would like to know, is JMX is suitable to my requirement? If so, how to monitor?
    Thanks,
    Naga Muni Reddy.

    Restarted computer and now it works. Are ports locked up if I get an exception in the 'wrong' place?

  • How to open two sockets in one single server

    May I open two sockets with different listening port numbers in a single server? For each socket, the way to deal with the inputstream and outputstream is different. May the thread be like this:
    public class twoSocketServer implements Runnable {
    public twoSocketServer() {
    try{
    SSLServerSocketFactory fact = SSLServerSocketFactory.getInstance(rand, selfPrivateKey, selfCertificate, trustEngine, null);
    serverSocket1 = (SSLServerSocket) fact.createServerSocket(ListeningPort1);
    serverSocket1.setNeedClientAuth(false);
    serverSocket2 = (SSLServerSocket) fact.createServerSocket(ListeningPort2);
    serverSocket2.setNeedClientAuth(false);
    } catch {...}
    public void run()
    while(true)
    try
    SSLSocket socket1 = (SSLSocket) serverSocket1.accept();
    new handler1(socket1).start();
    SSLSocket socket2 = (SSLSocket) serverSocket2.accept();
    new handler2(socket2).start();
    } catch {...}
    class handler1 extends Thread {...}
    class handler2 extends Thread {...}
    Is there something wrong with this idea? If yes, how can I correct it? Thanks.

    try
    SSLSocket socket1 = (SSLSocket)
    serverSocket1.accept();
    new handler1(socket1).start();
    SSLSocket socket2 = (SSLSocket)
    serverSocket2.accept();
    new handler2(socket2).start();
    Is there something wrong with this idea? If yes, how
    can I correct it? Thanks.You can do it.
    In the above code block you are going to need two threads. One for each SocketServer. The accept() method blocks until it recieves a connection. So in your above code it would first wait only for a connection on port 1. Then it would wait only for a connection on port 2. And then start over. That probably isn't what you want.

  • How to monitor all SAP Server through solution Manager?

    Dear Friends,
    How to monitor all SAP Server through solution Manager?
    Is it possible if yes then how? Please forward configuration and transaction also.
    Please help me as early as possible..
    Thanks,
    Regards,
    Sachin

    Hi sachin,
    You can monitor your sattilite systems through solution manager.
    If you want to monitor systems in solution manager means you need to configure those systems in solution manager.
    Before including the systems in solution manager we need to create a solution using tcode <b>DSWP</b>.
    After that you can include the systems using tcode <b>SMSY</b>.
    For configuring the systems we have lot of phases its very difficult to explain here.
    Try to login to<b> service.sap.com</b> and <b>help.sap.com</b> find the helpfull guides.
    i hope it will help you.
    any issues post it.
    kiran kumar.v

  • How do you clear system and application logs in a server?

    Hello all,
    How do you clear system and application logs in a server?
    thanks,
    mike

    go to start button,all programs,assosories, System tools T event viewer. now select application & rt click & clear & do not save.similarly do for sytem too.

Maybe you are looking for

  • HT5625 apple id problems with apple id and icloud log on

    hi all you dudes out there? i am having problems with my log on to itunes and icloud? really thye problem began some time ago when i got an upgrade from iphone 3s to iphone 4s, i kept my old iphone as a second phone then gave the old one to my mrs? t

  • Advance given to employees

    Hi, Suppose, I am giving separate three advances (in Cash as well as through Bank) to employees viz. Tour, staff and festival advance. Moreover, I am also recording the related expenses against particular advances. Now, I want to track these advances

  • KM Folders with Tree structure

    Hi Experts, I found 1 blog in SDN. It is tells how to create tree view with KM Folders using KM API. https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1424. [original link is broken] I am developing a custom application for uploading a file in mu

  • Finding the LCD with multiple numbers

    public static void main(String[] args)           Scanner keyboard= new Scanner(System.in);           System.out.print("Input how many numbers are going to be in this array ::");              int[] a = new int[keyboard.nextInt()];           for(int i=

  • My macbook pro suddenly cannot open ebay web page

    my macbook pro suddenly cannot open ebay web page. Osx Ver 10.8.5