EP1308844A2 - System and method for monitoring an application on a server - Google Patents

System and method for monitoring an application on a server Download PDF

Info

Publication number
EP1308844A2
EP1308844A2 EP02257177A EP02257177A EP1308844A2 EP 1308844 A2 EP1308844 A2 EP 1308844A2 EP 02257177 A EP02257177 A EP 02257177A EP 02257177 A EP02257177 A EP 02257177A EP 1308844 A2 EP1308844 A2 EP 1308844A2
Authority
EP
European Patent Office
Prior art keywords
application
statistics
counters
maintaining
operational
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
EP02257177A
Other languages
German (de)
French (fr)
Other versions
EP1308844B1 (en
EP1308844A3 (en
Inventor
Murthy Chintalapati
Sreeram Duvvuru
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Oracle America Inc
Original Assignee
Sun Microsystems Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Sun Microsystems Inc filed Critical Sun Microsystems Inc
Publication of EP1308844A2 publication Critical patent/EP1308844A2/en
Publication of EP1308844A3 publication Critical patent/EP1308844A3/en
Application granted granted Critical
Publication of EP1308844B1 publication Critical patent/EP1308844B1/en
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/30Monitoring
    • G06F11/34Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment
    • G06F11/3409Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment for performance assessment
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/30Monitoring
    • G06F11/34Recording or statistical evaluation of computer activity, e.g. of down time, of input/output operation ; Recording or statistical evaluation of user activity, e.g. usability assessment
    • G06F11/3447Performance evaluation by modeling
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2201/00Indexing scheme relating to error detection, to error correction, and to monitoring
    • G06F2201/87Monitoring of transactions
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2201/00Indexing scheme relating to error detection, to error correction, and to monitoring
    • G06F2201/875Monitoring of systems including the internet
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2201/00Indexing scheme relating to error detection, to error correction, and to monitoring
    • G06F2201/88Monitoring involving counting

Definitions

  • This invention relates generally to computer systems, and more particularly to a technique for monitoring an application running on a server.
  • server in this context is intended to generally mean the computer system that provides the logic to serve at least the needs for content and application services.
  • Web servers are employed by enterprises and service providers to serve content.
  • the demand for web servers includes stringent requirements with respect to the serving of content and to the management of the server in order to meet high network traffic demands.
  • web servers are required to provide a platform for servicing requests for dynamic content. Servicing content requests on a web server often requires execution of applications on the web server, in order to accept and process user input and to respond accordingly.
  • Application servers are employed by many organizations, from organizations that want to maintain an e-commerce presence to organizations that are in the business of providing applications through a network, i.e., application service providers.
  • the demands on application servers are also high, due to requirements with respect to developing, deploying, and managing the applications that run on the server.
  • application servers are required to provide services to, and thus interact with, other servers, one or more enterprise directories, database repositories, client software, and multiple device platforms.
  • An additional challenge arises from the increasing number of available computing platforms that can access an application server, such as hand-held computers, Internet appliances, and wireless devices.
  • Application servers allow IT departments to fully leverage their back-end resources, e.g., legacy applications, distributed systems databases, and even other Web-based content, and make them available to customers, partners, and employees over enterprise networks, and/or the public Internet
  • one embodiment of the present invention provides a method and system for monitoring a server-based application through the collection of application component statistics and runtime environmental statistics.
  • the method includes maintaining counters of statistics related to operation of the application, collecting first operational statistics based on counters from one or more application components, collecting second operational statistics based on counters from one or more application runtime environment components, updating aggregation statistics based on the collected statistics, and storing the statistics for access by a presentation agent which can interface with external monitoring tools.
  • the data is represented in Extensible Markup Language (XML) to facilitate accessibility over the Internet.
  • XML Extensible Markup Language
  • statistics are collected in aggregate form at the application level from a plurality of application components.
  • statistics are collected at the application component level. For example, the number of service hits, service exceptions, and service errors, as well as the average service time for each of a plurality of application components, may be generated and collected.
  • the environmental statistics are collected from a class loader that manages the loading of application component classes, a data source facilitator that manages connections to an external data source during running of the application, and a session manager that manages user sessions during running of the application. For example, the number of times an exception was encountered indicating that a class was not found for loading, and the size of all of the application classes loaded by the class loader, may be generated by and collected from the class loader. The maximum number of user sessions concurrently active, the number of new sessions created, and the number of times an attempt to create a session during running of the application, may also be generated by and collected from the session manager.
  • SLA service level agreements
  • a further benefit is the compilation and use of historical operational data, based on the collected statistics. These can be used for server capacity planning purposes. (Note that the advantages and benefits described above are presented by way of illustration only).
  • FIG. 1 is a block diagram illustrating a client-server operating environment 100.
  • the operating environment 100 shown in FIG. 1 includes a server 102, which is generally a combination of computer hardware and software capable of executing instructions to perform tasks.
  • the server 102 may be an application server such as an iPlanetTM Application Server, or a web server such as an iPlanetTM Web Server, both available from Sun Microsystems, Inc.
  • the server 102 includes a container 104, which provides a runtime environment for executing application components (see 204 of FIG. 2) and component interfaces (see 206 of FIG. 2) on the server 102.
  • the container is described in more detail in reference to FIG. 2.
  • An application component may be a servlet using JavaTM Servlet technology, which provides a component-based, platform-independent method for building web-based applications that execute on a server.
  • An application component interface may be a JavaServer PageTM (JSP), which utilizes an extension of the servlet technology to support authoring of HTML and XML pages, thereby making it easier to combine fixed or static template data with dynamic content.
  • JSPs are often used as the front end to a back-end servlet, both running on a server such as server 102, to present information to a user, wherein the dynamic information is typically provided by the servlet.
  • both application components 204 and application component interfaces 206 may be referred to collectively herein as application components (without an identifying element number).
  • the container 104 includes one or more virtual servers 106, one or more application context managers 108, and runtime components 112.
  • a virtual server 106 is typically implemented to run applications for a specific customer or user, or to support a specific e-commerce or application web site, and operates as a configurable, stand-alone server from the user's viewpoint.
  • Each virtual server 106 can interoperate with more than one application context manager 108, whereby each application context manager 108 facilitates the execution of a single application.
  • the context manager 108 provides instructions to the runtime components 112 and invokes a requested application 110.
  • the server 102 includes a memory 114, which may be shared by multiple server instances running on a single server hardware platform, thus providing an efficient single location for the operational statistics maintained and collected by the embodiments described herein.
  • Server instances are multiple executions of a server program running in its own process space, for redundancy and reliability purposes, all of which can utilize the shared memory 114.
  • a container 104 exists within each of the server instances.
  • thread is used herein to describe a processing resource needed to serve a particular service request, or in other words, to execute a series of instructions embodied in software code.
  • a thread allows a program to know which user is being served as the program is alternately re-entered on behalf of different users. There could be multiple simultaneous threads serving the same or different application component).
  • a worker thread can then invoke the service function, i.e., load and initialize the applicable application components and component interfaces, and can execute the service logic of the application. Errors and exceptions can occur during loading and initializing the application components and interfaces. For example, an application component or interface may not be present, or the component or interface may not initialize, possibly due to the absence of a resource or service that is currently unavailable. In addition, there may be exceptions that occur during service execution, which may be recognized by an unexpected service time. For example, a database connection may be lost, or a user may not be authorized. These and other errors and exceptions are recognized and processed, as described below.
  • FIG. 2 is a block diagram illustrating a container 104, in which a method for monitoring an application running on a server may be implemented.
  • the container 104 provides an environment for running applications, that is, it provides the infrastructure, resources, and external resource interface modules that an application uses to execute properly.
  • the container 104 can load the applicable application classes for instantiating and executing a requested application service; it can load database drivers upon an application making a database service request; and it can maintain and administer user sessions during execution of an application.
  • a container 104 may be embodied in a module such as a Java Virtual Machine, but it is not so limited.
  • the components depicted in container 104 include the virtual server 106, the application context manager 108, the application 110, and the runtime components 112, as described in reference to FIG. 1.
  • FIG. 2 embellishes on the application 110 and the runtime components 112.
  • the server 102 identifies the requested application by mapping the URL to an application context. For example, consider the following URL: http://server.com/catalog/shoppingservlet. The "server.com” portion of the URL maps to a virtual server 106. The "/catalog/shoppingservlet” is termed a request URI (Uniform Resource Identifier). The "catalog” portion of the URL is a context path which maps to an application named “catalog”. The "shoppingservlet” portion of the request URI maps to an application component named “shoppingservlet”.
  • URL Uniform Resource Locator
  • the application context manager 108 controls the maintenance of statistics for monitoring the execution of an application on the server 102. Statistics are maintained both at the virtual server 106 level for all applications running thereon, at the application level for all instances of the application, and at the application component level for components and component interfaces of an application instance.
  • the context manager 108 interfaces with a session manager 212, which manages the user sessions associated with the application. Management of the user sessions includes, for example, keeping records of each user session associated with an application, freeing resources upon expired sessions, and maintaining user state information such that it is available upon a server crash and subsequent reboot.
  • Valuable statistics are available from the session manager 212. Therefore, during execution of a service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain counters of specified statistics related to the user sessions, via the session manager 212, and related to the application of interest. In one embodiment, the following statistics or data attributes are maintained by the session manager 212 at the request of the context manager 108, and can be encapsulated within the session manager 212:
  • session data store which is the mechanism for maintaining user information in case of a server crash.
  • the following data attributes are collected by the session manager 212 at the request of the context manager 108:
  • a virtual server 106 can invoke more than one application context manager 108 and that each context manager 108 is associated with only one application. Thus, many users could be requesting the same application service through a single context manager 108.
  • the application classes In order to instantiate the application, the application classes must be loaded so that a worker thread 202 can execute the objects associated with the application instance to service the request.
  • the context manager 108 Based on the context path and the associated application components 204 and component interfaces 206, the context manager 108 knows which classes need to be loaded to run the components 204 and component interfaces 206, including dependent classes resolved from a class path directory. Hence, the context manager 108 invokes a class loader 208 to load the appropriate classes into the container 104 in order to instantiate and execute them.
  • Valuable statistics are available from the class loader 208. Therefore, during execution of a service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain counters of specified statistics related to the loading of the application component classes, via the class loader 208, and related to the application of interest. In one embodiment, the following statistics or data attributes are maintained by the class loader 208 at the request of the context manager 108, and can be encapsulated within the class loader 208:
  • the data source facilitator 210 operates to connect to a database, or other data source, and to manage the database drivers for the container 104. Due to the expense of database connections, the data source facilitator 210 may pool connections to the database. Hence, a single database connection may serve multiple processing threads and thus multiple application service requests.
  • the connection pool logic creates a connection to the database and maintains the connection for additional service requests, in addition to maintaining current requests connecting and disconnecting from the connection pool.
  • Valuable statistics are available from the data source facilitator 210, in relation to the connection pools and in relation to database transactions executing to service a particular request. Therefore, during execution of an application service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain counters of specified statistics related to interactions with a database, via the data source facilitator 210, and related to the application 110 of interest.
  • the following statistics or data attributes are maintained by the data source facilitator 210 at the request of the context manager 108, with respect to specific database connection pools, and can be encapsulated within the data source facilitator 210:
  • the techniques described In addition to collecting statistics related to the processes performed by the runtime components 112, the techniques described also maintain and collect statistics related to the application 110. In one embodiment, statistics are gathered at an aggregated application component 204 level. In other words, statistics are gathered and compiled for all of the application components 204, in addition to for all of the application component interfaces 206.
  • application components 204 are executed directly (i.e., loaded, initialized, and passed for execution), whereas application component interfaces 206 are compiled prior to loading and subsequent execution.
  • application components 204 are executed directly (i.e., loaded, initialized, and passed for execution)
  • application component interfaces 206 are compiled prior to loading and subsequent execution.
  • some of the statistics described below may appear redundant, but they are associated with different types of application components that are processed and served differently.
  • statistics referred to with the same descriptor e.g., countLoaded, countDestroyed, etc. are representing different information.
  • Valuable statistics are available from the application components 204 of application 110. Therefore, during execution of an application service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain aggregated counters of specified statistics related to the components 204 of the application 110 of interest. In one embodiment, the following statistics or data attributes are maintained at the request of the context manager 108, and can be stored within the container 104:
  • Application component interfaces 206 are typically employed as tools for presenting static and/or dynamic content from the server 102 to a user, wherein the dynamic content is provided by the application component 204. Therefore, during execution of an application service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain aggregated counters of specified statistics related to the component interfaces 206 of the application 110 of interest. As noted above, in one embodiment, component interfaces 206 are compiled prior to servicing requests, whereas application components 204 are served as is.
  • the techniques described In addition to collecting statistics related to the application component interfaces 206 and aggregated statistics related to the operation of application components 204, the techniques described also maintain and collect statistics separately for each application component 204 of the application 110.
  • Valuable statistics are available from each of the application components 204 of application 110. Therefore, during execution of an application service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain counters of specified statistics related to each of the components 204 of the application 110 of interest. In one embodiment, the following statistics or data attributes are maintained at the request of the context manager 108, and can be stored within the container 104:

Abstract

Methods for monitoring an application running on a server are described. One method includes maintaining counters of statistics related to operation of the application, collecting first operational statistics based on counters from one or more application components, collecting second operational statistics based on counters from one or more application runtime environment components, updating aggregation statistics based on the collected statistics, and storing the statistics for access by a presentation agent which can interface with external monitoring tools. The nature and level of the collected statistics provide insight into the operation of the application of interest.

Description

    Field of the Invention
  • This invention relates generally to computer systems, and more particularly to a technique for monitoring an application running on a server.
  • Background of the Invention
  • With the proliferation of the World Wide Web and the Internet, the demand for web content and web-based application services has increased dramatically. Consequently, the demand for robust, scalable, and manageable servers to serve the content and to service the application requests has also increased dramatically. The term "server" in this context is intended to generally mean the computer system that provides the logic to serve at least the needs for content and application services.
  • Web servers are employed by enterprises and service providers to serve content. The demand for web servers includes stringent requirements with respect to the serving of content and to the management of the server in order to meet high network traffic demands. Furthermore, with the trend towards the development and delivery of more and more dynamic content, often based on user input and requests, web servers are required to provide a platform for servicing requests for dynamic content. Servicing content requests on a web server often requires execution of applications on the web server, in order to accept and process user input and to respond accordingly.
  • Application servers are employed by many organizations, from organizations that want to maintain an e-commerce presence to organizations that are in the business of providing applications through a network, i.e., application service providers. The demands on application servers are also high, due to requirements with respect to developing, deploying, and managing the applications that run on the server. Furthermore, application servers are required to provide services to, and thus interact with, other servers, one or more enterprise directories, database repositories, client software, and multiple device platforms. An additional challenge arises from the increasing number of available computing platforms that can access an application server, such as hand-held computers, Internet appliances, and wireless devices.
  • Application servers allow IT departments to fully leverage their back-end resources, e.g., legacy applications, distributed systems databases, and even other Web-based content, and make them available to customers, partners, and employees over enterprise networks, and/or the public Internet
  • Since applications are increasingly being run on web servers, and since applications running on application servers are requiring increasingly demanding functionality, there is a need for leading-edge servers to provide a platform that serves the needs of application developers as well as server administrators. Application developers need to be able to monitor the loading and execution of their applications running on a server, during development, deployment, and the entire life-cycle of the application. Network, server, and service administrators, among others, need the capability to monitor applications running on their servers and networks. Furthermore, there is a need for the ability to monitor applications at a certain level of operation, with a view to obtaining an intimate knowledge of the application execution cycle. In order to efficiently and effectively monitor server-based applications, access to information about the execution of an application through standard or commonly used mechanisms is also needed.
  • Summary of the Invention
  • Accordingly, one embodiment of the present invention provides a method and system for monitoring a server-based application through the collection of application component statistics and runtime environmental statistics. The method includes maintaining counters of statistics related to operation of the application, collecting first operational statistics based on counters from one or more application components, collecting second operational statistics based on counters from one or more application runtime environment components, updating aggregation statistics based on the collected statistics, and storing the statistics for access by a presentation agent which can interface with external monitoring tools. In one embodiment, the data is represented in Extensible Markup Language (XML) to facilitate accessibility over the Internet.
  • In one embodiment, statistics are collected in aggregate form at the application level from a plurality of application components. In another embodiment, statistics are collected at the application component level. For example, the number of service hits, service exceptions, and service errors, as well as the average service time for each of a plurality of application components, may be generated and collected.
  • In still another embodiment, the environmental statistics are collected from a class loader that manages the loading of application component classes, a data source facilitator that manages connections to an external data source during running of the application, and a session manager that manages user sessions during running of the application. For example, the number of times an exception was encountered indicating that a class was not found for loading, and the size of all of the application classes loaded by the class loader, may be generated by and collected from the class loader. The maximum number of user sessions concurrently active, the number of new sessions created, and the number of times an attempt to create a session during running of the application, may also be generated by and collected from the session manager. The number of service connections for a specific connection pool to a data source, the time between a user request for a connection to a data source and the return of an established connection, and the number of rollbacks, may further be generated by and collected from a data source facilitator. The foregoing statistics are presented as examples only, and it will be appreciated that a range of other information could also or alternatively be generated.
  • In other embodiments, a computer apparatus and a computer readable medium are provided to carry out the foregoing.
  • Brief Description of the Drawings
  • The present invention is illustrated by way of example, and not by way of limitation, in the figures of the accompanying drawings, in which like reference numerals refer to similar elements. Although the drawings are provided for purposes of illustrating example embodiments, the invention is not limited to the specific context shown in the drawings, in which:
  • FIG. 1 is a block diagram illustrating a client-server operating environment
  • FIG. 2 is a block diagram illustrating a container, in which a method for monitoring an application running on a server may be implemented;
  • FIG. 3 is a flow diagram depicting a method of monitoring an application running on a server; and
  • FIG. 4 is a block diagram of a computer system such as may be used in the embodiment of Figure 1.
  • Detailed Description OVERVIEW
  • Methods for monitoring an application executing on a server are described herein that utilize the collection and presentation of detailed statistics related to the invocation and operation of applications and application components, in addition to statistics related to the surrounding infrastructure provided by the application runtime environment.
  • Gathering operational statistics at the application, application component, and runtime environment level, and making the statistics available in real-time, has many benefits. For example, by analyzing trend charts, service administrators can look for usage patterns, service response times, resource utilization patterns, resource bottlenecks, etc. Consequently, administrators can configure hardware and software with the enhanced knowledge provided by the statistical data. In addition, web servers and application servers increasingly allow dynamic resource allocating/resizing, either manually or through script code. The statistics collected contribute to these analytical and system administrative capabilities. Furthermore, application developers can utilize the detailed statistics to make more optimal design decisions about the application that they are developing.
  • Another useful benefit from the collection of these statistics is to utilize the statistics for maintaining service level agreements (SLA). The systems described herein could be integrated within an SLA tool.
  • A further benefit is the compilation and use of historical operational data, based on the collected statistics. These can be used for server capacity planning purposes. (Note that the advantages and benefits described above are presented by way of illustration only).
  • OPERATING ENVIRONMENT
  • FIG. 1 is a block diagram illustrating a client-server operating environment 100. The operating environment 100 shown in FIG. 1 includes a server 102, which is generally a combination of computer hardware and software capable of executing instructions to perform tasks. For example, the server 102 may be an application server such as an iPlanet™ Application Server, or a web server such as an iPlanet™ Web Server, both available from Sun Microsystems, Inc. The server 102 includes a container 104, which provides a runtime environment for executing application components (see 204 of FIG. 2) and component interfaces (see 206 of FIG. 2) on the server 102. The container is described in more detail in reference to FIG. 2. An application component may be a servlet using Java™ Servlet technology, which provides a component-based, platform-independent method for building web-based applications that execute on a server. An application component interface may be a JavaServer Page™ (JSP), which utilizes an extension of the servlet technology to support authoring of HTML and XML pages, thereby making it easier to combine fixed or static template data with dynamic content. JSPs are often used as the front end to a back-end servlet, both running on a server such as server 102, to present information to a user, wherein the dynamic information is typically provided by the servlet. Note that both application components 204 and application component interfaces 206 may be referred to collectively herein as application components (without an identifying element number).
  • The container 104 includes one or more virtual servers 106, one or more application context managers 108, and runtime components 112. A virtual server 106 is typically implemented to run applications for a specific customer or user, or to support a specific e-commerce or application web site, and operates as a configurable, stand-alone server from the user's viewpoint. Each virtual server 106 can interoperate with more than one application context manager 108, whereby each application context manager 108 facilitates the execution of a single application. When an application context manager 108 receives an application service request, the context manager 108 provides instructions to the runtime components 112 and invokes a requested application 110. In addition, the server 102 includes a memory 114, which may be shared by multiple server instances running on a single server hardware platform, thus providing an efficient single location for the operational statistics maintained and collected by the embodiments described herein.
  • Server instances are multiple executions of a server program running in its own process space, for redundancy and reliability purposes, all of which can utilize the shared memory 114. A container 104 exists within each of the server instances.
  • A user typically requests an application service from a client machine 120, via a web browser 122. Each client 120 may be any mechanism capable of communicating with the server 102, including (but not limited to) a computer running a browser program. The request is transmitted through a network 118 and received at the server 102. The client 120 may communicate with the server 102 using any suitable protocol, including (but not limited to) HTTP and IIOP. The network 118 may be a local area network or a wide area network such as the Internet, and may even be a direct connection. Any mechanism capable of facilitating communication between the client 120 and the server 102 may potentially serve as the network 118.
  • At the server 102, a listener thread receives the service request, and establishes a connection with a container 104. The listener thread queues the connections for passing to worker threads, which service the connection, primarily through the virtual server 106 and application context manager 108. The worker threads are generally capable of processing whatever requests, events, and activities are received on those connections. For example, a worker thread works with the server 102 to identify to which virtual server 106 a particular service request belongs, and works with the container 104 to invoke the application service logic, which in turn determines whether the applicable application components (see 204 of FIG. 2) and component interfaces (see 206 of FIG. 2) are loaded and whether the application classes are current or require class reloading.
  • (Note that the term thread is used herein to describe a processing resource needed to serve a particular service request, or in other words, to execute a series of instructions embodied in software code. A thread allows a program to know which user is being served as the program is alternately re-entered on behalf of different users. There could be multiple simultaneous threads serving the same or different application component).
  • Once service pre-processing is completed, for example, resource resolution and verification, a worker thread can then invoke the service function, i.e., load and initialize the applicable application components and component interfaces, and can execute the service logic of the application. Errors and exceptions can occur during loading and initializing the application components and interfaces. For example, an application component or interface may not be present, or the component or interface may not initialize, possibly due to the absence of a resource or service that is currently unavailable. In addition, there may be exceptions that occur during service execution, which may be recognized by an unexpected service time. For example, a database connection may be lost, or a user may not be authorized. These and other errors and exceptions are recognized and processed, as described below.
  • The operating environment 100 shown in FIG. 1 may further include a monitoring tool 130, which typically includes an agent 132 for acting on behalf of an administrator, developer, or other entity monitoring execution of an application such as application 110.
  • APPLICATION SERVICE REQUEST AND APPLICATION INVOCATION
  • FIG. 2 is a block diagram illustrating a container 104, in which a method for monitoring an application running on a server may be implemented. The container 104 provides an environment for running applications, that is, it provides the infrastructure, resources, and external resource interface modules that an application uses to execute properly. For example, the container 104 can load the applicable application classes for instantiating and executing a requested application service; it can load database drivers upon an application making a database service request; and it can maintain and administer user sessions during execution of an application. A container 104 may be embodied in a module such as a Java Virtual Machine, but it is not so limited. The components depicted in container 104 include the virtual server 106, the application context manager 108, the application 110, and the runtime components 112, as described in reference to FIG. 1. FIG. 2 embellishes on the application 110 and the runtime components 112.
  • Once a user requests an application service, typically by invoking a Uniform Resource Locator (URL) through a browser 122 (FIG. 1) program, the server 102 (FIG. 1) identifies the requested application by mapping the URL to an application context. For example, consider the following URL: http://server.com/catalog/shoppingservlet. The "server.com" portion of the URL maps to a virtual server 106. The "/catalog/shoppingservlet" is termed a request URI (Uniform Resource Identifier). The "catalog" portion of the URL is a context path which maps to an application named "catalog". The "shoppingservlet" portion of the request URI maps to an application component named "shoppingservlet". Once the server 102 resolves the URL to the appropriate application context, it can direct the container 104 to service the request, i.e., to invoke the application component identified in the URI. The container 104 provides the runtime, or execution time, environment for running the requested application. Thus, from the mapped request passed from the server 102, the application context manager 108 has the necessary information to deploy an instance of the application. In addition to mapping the URL to a resource, the server 102 performs numerous other tasks before passing control to the container 104, such as resource verification and allocation.
  • In one embodiment, it is the application context manager 108 that controls the maintenance of statistics for monitoring the execution of an application on the server 102. Statistics are maintained both at the virtual server 106 level for all applications running thereon, at the application level for all instances of the application, and at the application component level for components and component interfaces of an application instance.
  • SESSION MANAGER STATISTICS
  • Servicing an application request requires deployment of an instance of the application, which requires an invocation of the runtime components 112. Part of the task of servicing the request requires establishment and management of a user session, including making the session available for additional requests from the user. The context manager 108 interfaces with a session manager 212, which manages the user sessions associated with the application. Management of the user sessions includes, for example, keeping records of each user session associated with an application, freeing resources upon expired sessions, and maintaining user state information such that it is available upon a server crash and subsequent reboot.
  • Valuable statistics are available from the session manager 212. Therefore, during execution of a service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain counters of specified statistics related to the user sessions, via the session manager 212, and related to the application of interest. In one embodiment, the following statistics or data attributes are maintained by the session manager 212 at the request of the context manager 108, and can be encapsulated within the session manager 212:
  • countMaxSessions, defined as the maximum number of sessions concurrently active during running of the application 110;
  • countActiveSessions, defined as the number of sessions currently active;
  • countTotalSessions, defined as the number of new sessions created during running of the application 110;
  • countSessionCreationErrors, defined as the number of times an attempt to create a session failed (perhaps, but not necessarily, due to resource limitations) during running of the application 110;
  • countExpiredSessions, defined as the number of sessions that expired during running of the application 110;
  • countInvalidatedSessions, defined as the number of sessions that were explicitly invalidated during running of the application 110; and
  • countUpdateExceptions, defined as the number of times the session update request failed during running of the application 110.
  • In addition, statistics are kept in relation to the session data store, which is the mechanism for maintaining user information in case of a server crash. The following data attributes are collected by the session manager 212 at the request of the context manager 108:
  • countLoads, defined as the number of times the session data store loaded session data during running of the application 110;
  • countStores, defined as the number of times the session data is saved to data storage during running of the application 110;
  • countErrors, defined as the number of errors encountered by the session data store during running of the application 110;
  • countTotalBytesRead, defined as the number of data bytes read to the session data store during running of the application 110; and
  • countTotalBytesWritten, defined as the number of data bytes written to the session data store during running of the application 110.
  • A process for collecting these statistics from the session manager 212, and storing them in memory 114 is described in the section below entitled "Collection of Statistics."
  • CLASS LOADER STATISTICS
  • Note again that a virtual server 106 can invoke more than one application context manager 108 and that each context manager 108 is associated with only one application. Thus, many users could be requesting the same application service through a single context manager 108. In order to instantiate the application, the application classes must be loaded so that a worker thread 202 can execute the objects associated with the application instance to service the request. Based on the context path and the associated application components 204 and component interfaces 206, the context manager 108 knows which classes need to be loaded to run the components 204 and component interfaces 206, including dependent classes resolved from a class path directory. Hence, the context manager 108 invokes a class loader 208 to load the appropriate classes into the container 104 in order to instantiate and execute them.
  • Valuable statistics are available from the class loader 208. Therefore, during execution of a service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain counters of specified statistics related to the loading of the application component classes, via the class loader 208, and related to the application of interest. In one embodiment, the following statistics or data attributes are maintained by the class loader 208 at the request of the context manager 108, and can be encapsulated within the class loader 208:
  • countClassNotFound, defined as the number of times that an exception was encountered indicating that an application class was not found for loading;
  • countClassCacheEntries, defined as the number of entries in the class loader's cache; and
  • countClassCacheSize, defined as the size of all of the application classes loaded by the class loader.
  • A process for collecting these statistics from the class loader 208, and storing them in memory 114 is described in the section below entitled "Collection of Statistics."
  • DATA SOURCE STATISTICS
  • In order to invoke a database service that may be required to run the application of interest, a connection to a database is necessary. The data source facilitator 210 operates to connect to a database, or other data source, and to manage the database drivers for the container 104. Due to the expense of database connections, the data source facilitator 210 may pool connections to the database. Hence, a single database connection may serve multiple processing threads and thus multiple application service requests. The connection pool logic creates a connection to the database and maintains the connection for additional service requests, in addition to maintaining current requests connecting and disconnecting from the connection pool.
  • Valuable statistics are available from the data source facilitator 210, in relation to the connection pools and in relation to database transactions executing to service a particular request. Therefore, during execution of an application service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain counters of specified statistics related to interactions with a database, via the data source facilitator 210, and related to the application 110 of interest. In one embodiment, the following statistics or data attributes are maintained by the data source facilitator 210 at the request of the context manager 108, with respect to specific database connection pools, and can be encapsulated within the data source facilitator 210:
  • id, which identifies a specific data source connection pool;
  • maxConnections, defined as the maximum number of connections allowed for the specific connection pool;
  • countActiveConns, defined as the number of current service connections for the specific connection pool;
  • countTotalNewConnsRequested, defined as the total number of connections created via the specific connection pool;
  • countConnWaitTimeMillis, defined as the time between a user request for a connection to the data source and the return from the specific connection pool of an established connection;
  • countConnUseTimeMillis, defined as the average time the specific connection pool was used for;
  • countConnTimeouts, defined as the number of times connections via the specific connection pool timed-out, possibly but not necessarily for resource consolidation;
  • waitQueueLength, defined as the current number of users waiting for a connection, assuming that the specific connection pool has the maximum number of available connections currently in use; and
  • countConnReestablished, defined as the number of times the specific connection pool had to reestablish a connection to the data source.
  • In addition, statistics are kept in relation to data source transactions with respect to data source service requests. The following data attributes are collected by the data source facilitator 210 at the request of the context manager 108:
  • countActiveTransactions, defined as the number of currently active sessions to the data source;
  • countTransactions, defined as the number of successful transactions completed with respect to the data source; and
  • countRollbacks, defined as the number of rollbacks (a rollback is an undoing of a partly completed database change, if a database transaction is determined to have failed).
  • A process for collecting these statistics from the data source facilitator 210, and storing them in memory 114 is described in the section below entitled "Collection of Statistics".
  • AGGREGATED APPLICATION COMPONENT STATISTICS
  • In addition to collecting statistics related to the processes performed by the runtime components 112, the techniques described also maintain and collect statistics related to the application 110. In one embodiment, statistics are gathered at an aggregated application component 204 level. In other words, statistics are gathered and compiled for all of the application components 204, in addition to for all of the application component interfaces 206.
  • In to one embodiment, a distinction between application components 204 and application component interfaces 206 is that application components 204 are executed directly (i.e., loaded, initialized, and passed for execution), whereas application component interfaces 206 are compiled prior to loading and subsequent execution. Thus, some of the statistics described below may appear redundant, but they are associated with different types of application components that are processed and served differently. Hence, statistics referred to with the same descriptor (e.g., countLoaded, countDestroyed, etc.) are representing different information.
  • Valuable statistics are available from the application components 204 of application 110. Therefore, during execution of an application service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain aggregated counters of specified statistics related to the components 204 of the application 110 of interest. In one embodiment, the following statistics or data attributes are maintained at the request of the context manager 108, and can be stored within the container 104:
  • countDeployed, defined as the total number of application components 204 specified in the application deployment descriptor, or a similar file that specifies application configuration and deployment information;
  • countLoaded, defined as the number of application components 204 currently loaded into the container 104;
  • countDestroyed, defined as the number of application components 204 that have been destroyed during running of the application 110, possibly but not necessarily due to dynamic reconfiguration or resource cycling;
  • countLoadExceptions, defined as the number of exceptions encountered while trying to load an application component, i.e., an application component 204, during running of the application 110;
  • countInitExceptions, defined as the number of exceptions encountered while initializing an application component 204, during start up phase of the application 110 or when the component is requested and initialized for the first time during running of the application 110;
  • countServiceHits, defined as the number of application components 204 accessed during running of the application 110;
  • countServiceExceptions, defined as the number of exceptions encountered while an application component 204 is servicing a request during running of the application 110;
  • countServiceErrors, defined as the number of application components 204 that indicated protocol errors during running of the application 110;
  • countISBytesRead, defined as the number of bytes read by application components 204 during running of the application 110;
  • countOSBytesWritten, defined as the number of bytes written by the application components 204 during running of the application 110;
  • countFormAuthLoginSuccess, defined as the number of times an application component 204 authorization succeeded during running of the application 110;
  • countFormAuthLoginFailed, defined as the number of times an application component 204 authorization failed during running of the application 110; and
  • avgServiceTime, defined as the average time to complete a service by application components 204 during running of the application 110.
  • A process for collecting these statistics from the container 104, and storing them in memory 114 is described in reference to the section below entitled "Collection of Statistics."
  • Furthermore, valuable statistics are available from the application component interfaces 206 of application 110. Application component interfaces 206 are typically employed as tools for presenting static and/or dynamic content from the server 102 to a user, wherein the dynamic content is provided by the application component 204. Therefore, during execution of an application service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain aggregated counters of specified statistics related to the component interfaces 206 of the application 110 of interest. As noted above, in one embodiment, component interfaces 206 are compiled prior to servicing requests, whereas application components 204 are served as is.
  • In one embodiment, the following statistics or data attributes are maintained at the request of the context manager 108, and can be stored within the container 104:
  • countLoaded, defined as the number of application component interfaces 206 currently loaded into the container 104;
  • countDestroyed, defined as the number of application component interfaces 206 that have been destroyed during running of the application 110, possibly but not necessarily due to dynamic reconfiguration or resource cycling;
  • countCompileExceptions, defined as the number of exceptions encountered while an application component interface 206 is compiled;
  • countInitExceptions, defined as the number of exceptions encountered while an application component interface 206 is initializing, during running of the application 110;
  • countServiceHits, defined as the number of application component interfaces 206 accessed during running of the application 110;
  • countServiceExceptions, defined as the number of exceptions encountered while an application component interface 206 is servicing a request during running of the application 110;
  • countServiceErrors, defined as the number of application component interfaces 206 that indicated protocol errors during running of the application 110; and
  • avgServiceTime, defined as the average time to complete a service by application component interfaces 206 during running of the application 110.
  • A process for collecting these statistics from the container 104, and storing them in memory 114 is described in the section below entitled "Collection of Statistics."
  • PER APPLICATION COMPONENT STATISTICS
  • In addition to collecting statistics related to the application component interfaces 206 and aggregated statistics related to the operation of application components 204, the techniques described also maintain and collect statistics separately for each application component 204 of the application 110.
  • Valuable statistics are available from each of the application components 204 of application 110. Therefore, during execution of an application service request, the context manager 108 instructs a worker thread 202 to employ program logic to maintain counters of specified statistics related to each of the components 204 of the application 110 of interest. In one embodiment, the following statistics or data attributes are maintained at the request of the context manager 108, and can be stored within the container 104:
  • componentPath, which identifies a specific application component 204 of interest;
  • countServiceHits, defined as the number of accesses to, or invocations of, a specific application component 204 during running of the application 110;
  • countServiceExceptions, defined as the number of exceptions encountered while a specific application component 204 is servicing a request during running of the application 110;
  • countServiceErrors, defined as the number of times a specific application component 204 indicated protocol errors during running of the application 110;
  • avgServiceTime, defined as the average time to complete a service by a specific application component 204 during running of the application 110.
  • A process for collecting these statistics from the container 104 and storing them in memory 114 is described the section below entitled "Collection of Statistics."
  • COLLECTION OF STATISTICS
  • The application context manager 108 is configured with logic for periodically collecting the statistics that are maintained as described above. In one embodiment, this feature is implemented to allow a user to define the collection period. The mechanism for collecting the statistics is through a collector thread 214 that executes context manager 108 logic to invoke objects which execute methods for querying the various components that maintain the statistics. In one embodiment, the collector thread 214 communicates with the virtual server 106 to employ logic for collecting statistics.
  • In one embodiment, with respect to the session manager statistics, the context manager 108 utilizes an interface for querying the session manager 212. An interface is used because the context manager 108 is not maintaining the relevant statistics and the method of maintaining the session manager statistics is private to the session manager 108. Thus, the session manager 212 is treated as an external module and data collection is consequently through a public interface. The interface operates to invoke "get" methods for the various session manager statistics (described as "count" methods above), which execute to provide the current counter values.
  • Similarly, in one embodiment, with respect to the application component interface 206 statistics, the context manager 108 utilizes an interface for collecting the related data. The interface operates to invoke "get" methods for the various application component interface statistics (described as "count" methods above), which execute to provide the current counter values.
  • With respect to the per application component statistics, which are maintained in one or more objects that encapsulate the counter data, in one embodiment, a hash table is utilized to map application component, or servlet, paths to the associated object for given data. The collector thread 214 invokes the object to execute the "get" methods, thus collecting the encapsulated data.
  • With respect to the data source statistics maintained by the data source facilitator 210, the class loader statistics maintained by the class loader 208, and the virtual server and aggregated application component statistics maintained by the container 104, the collector thread periodically executes context manager 108 logic to query the respective statistic-maintaining entities by invoking objects to execute associated "get" methods.
  • The foregoing data collection methods are described as particular embodiments, and represent implementations appropriate to a given operating environment. Nevertheless, it will be appreciated that different operating environments may require different collection mechanisms.
  • Each time the statistics are collected as described above, aggregations of each of the statistics for each of the applications are updated based on the newly collected statistics, and are stored in memory 114; In one embodiment, the data is stored in fixed size buckets that are initialized during virtual server 106 initialization. Statistic presentation modules, or agents, employ a specified data structure in order to present the statistical data in a desired format. In one embodiment, a statsxml generator can extract the data from memory 114, and format the data in Extensible Markup Language (XML) format according to a document type definition (DTD), so that external monitoring tools, such as monitoring tool 130 (FIG. 1), can understand and utilize the data. In another embodiment, a Simple Network Management Protocol (SNMP) Management Information Base (MIB), or agent, is utilized to extract and format the data such that it is accessible by a monitoring tool 130 through use of the associated protocol. The monitoring tools 130 can communicate with the agents via any suitable communication interface.
  • METHOD OF MONITORING AN APPLICATION RUNNING ON A SERVER
  • FIG. 3 is a flow diagram depicting a method of monitoring an application running on a server according to one embodiment of the invention. After an application service request is received, a URL associated with the service request is resolved to an application context path, which identifies the application being requested. For example, a service request may originate from a user working at a client computer 120 (FIG. 1), through a web browser 122 (FIG. 1), and is received by a listener thread at a server 102 (FIG. 1). Continuing with the example, the user may enter "http://server.com/catalog/shoppingservlet" which is resolved to identify "catalog" as the requested application service. Then, the requested application is invoked. Thus, the applicable component classes are loaded and instantiated, and the associated methods executed.
  • At block 302, a counter for each operational statistic of interest is maintained. Specifically, one or more of the statistical data described above are maintained through the use of counters. Application context manager 108 (FIG. 1) logic directs the application 110 (FIG. 1) and runtime components 112 (FIG. 1) to keep various counters of the statistical data of interest, as described above, while processing their portion of the application service request. At block 304, the operational statistics represented by the counters are collected from each of the respective application 110 and runtime components 112, for example, application components 204 (FIG. 2), application component interfaces 206 (FIG. 2), class loader 208 (FIG. 2), data source facilitator 210 (FIG. 2), and session manager 212 (FIG. 2). Collector thread 214 (FIG. 2) is utilized to run program logic for querying each of the statistic-maintaining components to extract the counter information. The collector thread 214 may communicate directly with the context manager 108 or may communicate through the virtual server 106 (FIG. 2). Furthermore, according to one embodiment, operational statistics are collected from a virtual server, such as virtual server 106, running within a runtime environment, such as container 104 (FIG. 2).
  • At block 306, an aggregation of each of the operational statistics for each of the statistic-maintaining components of application 110 (FIG. 1) and the runtime components 112 (FIG. 1) is updated. Data representing the operational statistics, as maintained through counters, is pulled from memory 114 (FIG. 1) and updated based on the operational statistics collected at block 304. At block 308, the aggregated operational statistics updated at block 306 are stored in a memory, such as memory 114. The statistics are stored such that they are accessible to a statistical presentation agent, which in one embodiment, can interface with an external agent that is requesting the statistics. For example, the data may be structured according to an XML DTD, and therefore accessible by an external monitoring tool agent, such as agent 132 (FIG. 1), communicating with the server 102 (FIG. 1).
  • The type of statistics gathered is described above by listing the specific data gathered. However, the invention is not limited to the maintenance and collection of only the specific data described, but also includes the acquistion of data from similar application and environmental components. In addition, the statistic collection methods described above are provided in one particular environment, but it will be appreciated that other collection methods may be implemented in other operating environments.
  • HARDWARE OVERVIEW
  • In one embodiment, the container 104 (FIG. 1) and application context manager 108 (FIG. 1) and its various components are implemented as a set of instructions executable by one or more processors. Fig. 4 shows a hardware block diagram of a computer system 400 according to one embodiment of the invention. Computer system 400 includes a bus 402 or other communication mechanism for communicating information, and a processor 404 coupled with bus 402 for processing information. Computer system 400 also includes a main memory 406, such as a random access memory ("RAM") or other dynamic storage device, coupled to bus 402 for storing information and instructions to be executed by processor 404. Main memory 406 also may be used for storing temporary variables or other intermediate information during execution of instructions to be executed by processor 404. Computer system 400 further includes a read only memory ("ROM") 408 or other static storage device coupled to bus 402 for storing static information and instructions for processor 404. A storage device 410, such as a magnetic disk, optical disk, or magneto-optical disk, is provided and coupled to bus 1002 for storing information and instructions.
  • Computer system 400 may be coupled via bus 402 to a display 412, such as a cathode ray tube ("CRT") or a liquid crystal display ("LCD"), for displaying information to a computer user. An input device 414, including alphanumeric and other keys, is coupled to bus 402 for communicating information and command selections to processor 404. Another type of user input device is cursor control 416, such as a mouse, a trackball, or cursor direction keys for communicating direction information and command selections to processor 404 and for controlling cursor movement on display 412. This input device typically has two degrees of freedom in two axes, a first axis (e.g., x) and a second axis (e.g., y), that allows the device to specify positions in a plane.
  • The invention is related to the use of computer system 400 for monitoring applications running on the system. According to certain embodiments of the invention, monitoring applications through collection of application and runtime environment components is provided by computer system 400 in response to processor 404 executing one or more sequences of one or more instructions contained in main memory 406. Such instructions may be read into main memory 406 from another computer-readable medium, such as storage device 410. Execution of the sequences of instructions contained in main memory 406 causes processor 404 to perform the process described herein. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions to implement the invention. Thus, embodiments of the invention are not limited to any specific combination of hardware circuitry and software.
  • The term "computer-readable medium" as used herein refers to any medium that participates in providing instructions to processor 404 for execution. Such a medium may take many forms, including but not limited to, non-volatile media, volatile media, and transmission media. Non-volatile media includes, for example, optical, magnetic, or magneto-optical disks, such as storage device 410. Volatile media includes dynamic memory, such as main memory 406. Transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise bus 402. Transmission media can also take the form of acoustic or light waves, such as those generated during radio wave and infrared data communications.
  • Common forms of computer-readable media include, for example, a floppy disk, a flexible disk, hard disk, magnetic tape, or any other magnetic medium, a CD-ROM, any other optical medium, punch cards, paper tape, any other physical medium with patterns of holes, a RAM, a PROM, and EPROM, a FLASH-EPROM, any other memory chip or cartridge, a carrier wave as described hereinafter, or any other medium from which a computer can read.
  • Various forms of computer readable media may be involved in carrying one or more sequences of one or more instructions to processor 404 for execution. For example, the instructions may initially be carried on a magnetic disk of a remote computer. The remote computer can load the instructions into its dynamic memory and send the instructions over a telephone line using a modem. A modem local to computer system 400 can receive the data on the telephone line and use an infrared transmitter to convert the data to an infrared signal. An infrared detector can receive the data carried in the infrared signal and appropriate circuitry can place the data on bus 402. Bus 402 carries the data to main memory 406, from which processor 404 retrieves and executes the instructions. The instructions received by main memory 406 may optionally be stored on storage device 410 either before or after execution by processor 404.
  • Computer system 400 also includes a communication interface 418 coupled to bus 402. Communication interface 418 provides a two-way data communication coupling to a network link 420 that is connected to a local network 422. For example, communication interface 418 may be an integrated services digital network ("ISDN") card or a modem to provide a data communication connection to a corresponding type of telephone line. As another example, communication interface 418 may be a local area network ("LAN") card to provide a data communication connection to a compatible LAN. Wireless links may also be implemented. In any such implementation, communication interface 418 sends and receives electrical, electromagnetic or optical signals that carry digital data streams representing various types of information.
  • Network link 420 typically provides data communication through one or more networks to other data devices. For example, network link 420 may provide a connection through local network 422 to a host computer 424 or to data equipment operated by an Internet Service Provider ("ISP") 426. ISP 426 in turn provides data communication services through the worldwide packet data communication network now commonly referred to as the "Internet" 428. Local network 422 and Internet 428 both use electrical, electromagnetic or optical signals that carry digital data streams. The signals through the various networks and the signals on network link 420 and through communication interface 418, which carry the digital data to and from computer system 400, are exemplary forms of carrier waves transporting the information.
  • Computer system 400 can send messages and receive data, including program code, through the network(s), network link 420 and communication interface 418. In the Internet example, a server 430 might transmit a requested code for an application program through Internet 428, ISP 426, local network 422 and communication interface 418. In accordance with the invention, one such downloaded application provides for monitoring server-based applications as described herein.
  • Processor 404 may execute the received code as it is received, and/or stored in storage device 410, or other non-volatile storage for later execution. In this manner, computer system 400 may obtain application code in the form of a carrier wave.
  • EXTENSIONS AND ALTERNATIVES
  • Further particular aspects of the invention in various embodiments are set out in the following numbered clauses:
  • 1. A method of providing statistics related to execution of an application on a server, the method comprising:
  • maintaining one or more counters of class loader statistics related to loading application classes for executing the application;
  • maintaining one or more counters of data source statistics related to communications with a data source during execution of the application;
  • maintaining one or more counters of session manager statistics related to application user sessions;
  • maintaining one or more counters of aggregated application component statistics related to execution of the application;
  • maintaining, for each of one or more application components, one or more counters of application component statistics related to execution of the application;
  • maintaining one or more counters of application component interface statistics related to execution of the application;
  • collecting the class loader statistics, the data source statistics, the session manager statistics, the aggregated application component statistics, the application component statistics, and the application component interface statistics; and
  • generating a structured presentation of the collected statistics.
  • 2. The method of clause 1 wherein the step of maintaining one or more counters of class loader statistics includes maintaining a count of exceptions indicating that a class was not found during loading of the classes.
  • 3. The method of clause 1 wherein the step of maintaining one or more counters of class loader statistics includes maintaining a count of entries stored in a class loader cache during loading of the classes.
  • 4. The method of clause 1 wherein the step of maintaining one or more counters of class loader statistics includes maintaining a count of an aggregated size of the classes loaded by the class loader.
  • 5. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of a current number of connections in a connection pool to the data source.
  • 6. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of a maximum number of connections allowed in a connection pool to the data source.
  • 7. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of a number of connections created to the data source via a specific connection pool.
  • 8. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of an average time between a request for a connection to the data source and establishment of the connection.
  • 9. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of an average use time of a connection to the data source.
  • 10. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of a number of connections to the data source that have timed out.
  • 11. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of a number of requests waiting for a connection to the data source.
  • 12. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of a number of times a connection pool to the data source reestablished connection to the data source.
  • 13. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of a number of active service transactions being serviced by the data source.
  • 14. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of a number of service transactions successfully serviced by the data source.
  • 15. The method of clause 1 wherein the step of maintaining one or more counters of data source statistics includes maintaining a count of a number of rollbacks performed by the data source, wherein a rollback is an operation to undo a partly completed change to the data source upon a data source transaction failure.
  • 16. The method of clause 1 wherein the step of maintaining session manager statistics includes maintaining a count of a maximum number of sessions concurrently active during running of the application.
  • 17. The method of clause 1 wherein the step of maintaining session manager statistics includes maintaining a count of a number of sessions currently active.
  • 18. The method of clause 1 wherein the step of maintaining session manager statistics includes maintaining a count of a number of new sessions created during running of the application.
  • 19. The method of clause 1 wherein the step of maintaining session manager statistics includes maintaining a count of a number of session creation failures during running of the application.
  • 20. The method of clause 1 wherein the step of maintaining session manager statistics includes maintaining a count of a number of sessions that expired during running of the application.
  • 21. The method of clause 1 wherein the step of maintaining session manager statistics includes maintaining a count of a number of sessions that were invalidated during running of the application.
  • 22. The method of clause 1 wherein the step of maintaining session manager statistics includes maintaining a count of a number of failed session update requests during running of the application.
  • 23. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of application components specified in an application deployment description file.
  • 24. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of application components currently loaded.
  • 25. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of application components destroyed during running of the application.
  • 26. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of exceptions experienced by the server while trying to load a resource during running of the application.
  • 27. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of initialization exceptions experienced by the application components during running of the application.
  • 28. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of application components invoked during running of the application.
  • 29. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of exceptions experienced by the application components during running of the application.
  • 30. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of protocol errors experienced by the application components during running of the application.
  • 31. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of bytes read by the application components during running of the application.
  • 32. The method of clause 1 wherein the step of maintaining one or more counters of aggregated application component statistics includes maintaining a count of a number of bytes written by the application components during running of the application.
  • 33. The method of clause 1 wherein the step of maintaining one or more counters of application component interface statistics includes maintaining a count of a number of application component interfaces currently loaded.
  • 34. The method of clause 1 wherein the step of maintaining one or more counters of application component interface statistics includes maintaining a count of a number of application component interfaces destroyed during running of the application.
  • 35. The method of clause 1 wherein the step of maintaining one or more counters of application component interface statistics includes maintaining a count of a number of initialization exceptions experienced by the application component interfaces during running of the application.
  • 36. The method of clause 1 wherein the step of maintaining one or more counters of application component interface statistics includes maintaining a count of a number of application component interfaces invoked during running of the application.
  • 37. The method of clause 1 wherein the step of maintaining one or more counters of application component interface statistics includes maintaining a count of a number of protocol errors experienced by an application component interface during running of the application.
  • 38. The method of clause 1 wherein the step of maintaining one or more counters of application component interface statistics includes maintaining a count of an average time to complete a service by an application component interface during running of the application.
  • 39. The method of clause 1 wherein the step of maintaining one or more counters of application component interface statistics includes maintaining a count of a number of exceptions encountered while compiling information during running of the application.
  • Although the embodiments described above have focused on operations within a server it will be appreciated that the invention is not so limited. Rather, the invention may be implemented in any type of operating environment and in any type of server or computer system that provides a platform for servicing application service requests, and in which there is interest in monitoring an application executing on such a platform.
  • In conclusion, it will be appreciated that the different embodiments described above are by way of illustration only, and not by way of limitation. Thus various modifications and adaptations of these embodiments will be apparent to the skilled person, and remain within the scope of the invention as specified by the following claims and their equivalents.

Claims (26)

  1. A method of monitoring an application running on a server, the method comprising:
    maintaining a counter for each of one or more first operational statistics for one or more components of the application;
    collecting the one or more first operational statistic represented by the counters; updating a first aggregation of each of the one or more first operational statistics for each of the one or more components of the application based on the first operational statistics represented by the counters; and
    storing the first aggregation for access by a statistical presentation agent.
  2. The method of claim 1 wherein the step of collecting the first operational statistics includes collecting a count of a number of service invocations experienced by each of the one or more application components during running of the application.
  3. The method of claim 1 wherein the step of collecting the first operational statistics includes collecting a count of a number of service exceptions experienced by each of the one or more application components during running of the application.
  4. The method of claim 1 wherein the step of collecting the first operational statistics includes collecting a count of a number of service errors experienced by each of the one or more application components during running of the application.
  5. The method of claim 1 wherein the step of collecting the first operational statistics includes collecting an average service time for each of the one or more application components during running of the application.
  6. The method of any preceding claim wherein the step of collecting the first operational statistics includes collecting statistics aggregated from two or more application components.
  7. The method of any preceding claim further comprising:
    maintaining a counter for each of one or more third operational statistics for one or more virtual servers running an application on the server;
    collecting the one or more third operational statistics represented by the counters;
    updating a third aggregation of each of the one or more third operational statistics for each of the one or more virtual servers based on the third operational statistics represented by the counters; and
    storing the third aggregation for access by a statistical presentation agent.
  8. The method of any preceding claim 1 further comprising:
    representing the first operational statistics for access by an external agent interfacing with the statistical presentation agent.
  9. The method of claim 8 wherein the first operational statistics are represented in Extensible Markup Language.
  10. A method of monitoring an application running on a server, the method comprising:
    maintaining a counter for each of one or more second operational statistics for one or more runtime environment components, the runtime environment components facilitating processing of service requests for the application;
    collecting the one or more second operational statistics represented by the counters;
    updating a second aggregation of each of the one or more second operational statistics for each of the one or more runtime environment components based on the second operational statistics represented by the counters; and
    storing the second aggregation for access by a statistical presentation agent.
  11. The method of claim 10 wherein the step of collecting the second operational statistics includes collecting statistics from a class loader, the class loader operating to load the classes for running the application.
  12. The method of claim 10 wherein the step of collecting the second operational statistics includes collecting statistics from a session manager, the session manager operating to manage user sessions for running the application.
  13. The method of claim 10 wherein the step of collecting the second operational statistics includes collecting statistics from a data source facilitator, the data source facilitator operating to facilitate a connection to a data source for running the application.
  14. The method of any of claims 10 to 13 further comprising:
    maintaining a counter for each of one or more third operational statistics for one or more virtual servers running an application on the server;
    collecting the one or more third operational statistics represented by the counters;
    updating a third aggregation of each of the one or more third operational statistics for each of the one or more virtual servers based on the third operational statistics represented by the counters; and
    storing the third aggregation for access by a statistical presentation agent.
  15. The method of any of claims 10 to 14 further comprising:
    representing the second operational statistics for access by an external agent interfacing with the statistical presentation agent.
  16. The method of claim 15 wherein the second operational statistics are represented in Extensible Markup Language.
  17. A method of providing statistics related to execution of an application on a server, the method comprising:
    maintaining one or more counters of class loader statistics related to loading application classes for executing the application;
    maintaining one or more counters of data source statistics related to communications with a data source during execution of the application; maintaining one or more counters of session manager statistics related to application user sessions;
    maintaining one or more counters of aggregated application component statistics related to execution of the application;
    maintaining, for each of one or more application components, one or more counters of application component statistics related to execution of the application;
    maintaining one or more counters of application component interface statistics related to execution of the application;
    collecting the class loader statistics, the data source statistics, the session manager statistics, the aggregated application component statistics, the application component statistics, and the application component interface statistics; and
    generating a structured presentation of the collected statistics.
  18. A computer program for implementing the method of any proceeding claim.
  19. A computer-readable medium carrying one or more sequences of instructions for monitoring an application running on a server, wherein execution of the one or more sequences of instructions by one or more processors causes the one or more processors to perform steps of:
    maintaining a counter for each of one or more first operational statistics for one or more components of the application;
    collecting the one or more first operational statistics represented by the counters;
    updating a first aggregation of each of the one or more first operational statistics for each of the one or more components of the application based on the first operational statistics represented by the counters; and
    storing the first aggregation for access by a statistical presentation agent.
  20. A computer-readable medium carrying one or more sequences of instructions for monitoring an application running on a server, wherein execution of the one or more sequences of instructions by one or more processors causes the one or more processors to perform steps of:
    maintaining a counter for each of one or more second operational statistics for one or more runtime environment components, the runtime environment components facilitating processing of service requests for the application;
    collecting the one or more second operational statistics represented by the counters;
    updating a second aggregation of each of the one or more second operational statistics for each of the one or more runtime environment components based on the second operational statistics represented by the counters; and
    storing the second aggregation for access by a statistical presentation agent.
  21. A computer-readable medium carrying one or more sequences of instructions for monitoring an application running on a server, wherein execution of the one or more sequences of instructions by one or more processors causes the one or more processors to perform steps of:
    maintaining one or more counters of class loader statistics related to loading application classes for executing the application;
    maintaining one or more counters of data source statistics related to communications with a data source during execution of the application; maintaining one or more counters of session manager statistics related to application user sessions;
    collecting the class loader statistics, the data source statistics, and the session manager statistics; and
    generating a structured presentation of the collected statistics.
  22. The computer readable medium of claim 21, wherein execution of the one or more sequences of instructions by one or more processors causes the one or more processors to perform the specified action by causing the one or more processors to perform the steps of:
    maintaining one or more counters of aggregated application component statistics related to execution of the application;
    maintaining, for each of the one or more application components, one or more counters of application component statistics related to execution of the application;
    maintaining one or more counters of application component interface statistics related to execution of the application;
    collecting the aggregated application component statistics, the application component statistics, and the application component interface statistics; and
    generating a structured presentation of the collected statistics.
  23. A computer apparatus comprising:
    a network interface;
    a memory; and
    one or more processors connected to the network interface and the memory, the one or more processors configured for:
    collecting first operational statistics from one or more application components;
    collecting second operational statistics from one or more application runtime environment components, the runtime environment components facilitating processing of the application service request; and
    storing the first and second operational statistics.
  24. A computer apparatus comprising:
    a network interface;
    a memory; and
    one or more processors connected to the network interface and the memory, the one or more processors configured for:
    maintaining one or more counters of class loader statistics associated with loading application component classes for executing the application;
    maintaining one or more counters of data source statistics related to communications with a data source during execution of the application;
    maintaining one or more counters of session manager statistics associated with application user sessions;
    maintaining one or more counters of aggregated application component statistics related to execution of the application;
    maintaining, for each of one or more application components, one or more counters of application component statistics related to execution of the application;
    maintaining one or more counters of application component interface statistics related to execution of the application;
    collecting the class loader statistics, the data source statistics, the session manager statistics, the aggregated application component statistics, the application component statistics, and the application component interface statistics; and
    generating a structured presentation of the collected statistics for access over a network.
  25. A method of monitoring an application running on a server, the method comprising:
    receiving an application service request;
    resolving a uniform resource locator associated with the application service request to an application context path identifying the application;
    invoking the application;
    maintaining a counter for each of one or more operational statistics for one or more components of the application;
    collecting the one or more operational statistics represented by the counters;
    updating an aggregation of each of the one or more operational statistics for each of the one or more components of the application based on the operational statistics represented by the counters; and
    storing the aggregation for access by a statistical presentation agent.
  26. A method of monitoring an application running on a server, the method comprising:
    receiving an application service request;
    resolving a uniform resource locator associated with the application service request to an application context path identifying the application;
    invoking the application;
    maintaining a counter for each of one or more operational statistics for one or more runtime environment components, the runtime environment components facilitating processing of service requests for the application;
    collecting the one or more operational statistics represented by the counters;
    updating an aggregation of each of the one or more operational statistics for each of the one or more runtime environment components of the application based on the operational statistics represented by the counters; and
    storing the aggregation for access by a statistical presentation agent.
EP02257177.2A 2001-10-31 2002-10-16 System and method for monitoring an application on a server Expired - Lifetime EP1308844B1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US09/999,646 US7216160B2 (en) 2001-10-31 2001-10-31 Server-based application monitoring through collection of application component and environmental statistics
US999646 2001-10-31

Publications (3)

Publication Number Publication Date
EP1308844A2 true EP1308844A2 (en) 2003-05-07
EP1308844A3 EP1308844A3 (en) 2005-09-07
EP1308844B1 EP1308844B1 (en) 2015-12-09

Family

ID=25546572

Family Applications (1)

Application Number Title Priority Date Filing Date
EP02257177.2A Expired - Lifetime EP1308844B1 (en) 2001-10-31 2002-10-16 System and method for monitoring an application on a server

Country Status (2)

Country Link
US (1) US7216160B2 (en)
EP (1) EP1308844B1 (en)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP2035955A2 (en) * 2006-06-16 2009-03-18 Microsoft Corporation An automated method and system for collecting and reporting api performance profiles
WO2012001224A1 (en) * 2010-07-02 2012-01-05 Nokia Corporation Method and apparatus for information and computation closures account management
CN109284212A (en) * 2017-07-21 2019-01-29 中兴通讯股份有限公司 It is a kind of tracking, monitoring software behavior method, device and equipment
US11115494B1 (en) * 2020-02-26 2021-09-07 International Business Machines Corporation Profile clustering for homogenous instance analysis

Families Citing this family (60)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7430738B1 (en) 2001-06-11 2008-09-30 Microsoft Corporation Methods and arrangements for routing server requests to worker processes based on URL
US7594230B2 (en) 2001-06-11 2009-09-22 Microsoft Corporation Web server architecture
US7159025B2 (en) * 2002-03-22 2007-01-02 Microsoft Corporation System for selectively caching content data in a server based on gathered information and type of memory in the server
US7490137B2 (en) 2002-03-22 2009-02-10 Microsoft Corporation Vector-based sending of web content
DE10250639A1 (en) * 2002-10-30 2004-05-13 Siemens Ag Management of data described with an extensible markup language
US8621031B2 (en) * 2003-04-29 2013-12-31 Oracle International Corporation Method and apparatus using connection pools in communication networks
US7912939B1 (en) * 2003-09-12 2011-03-22 Avaya Inc. Method and apparatus for selectively reading counter information in a network device
US8713626B2 (en) * 2003-10-16 2014-04-29 Cisco Technology, Inc. Network client validation of network management frames
US7380039B2 (en) 2003-12-30 2008-05-27 3Tera, Inc. Apparatus, method and system for aggregrating computing resources
US7636362B2 (en) * 2004-02-26 2009-12-22 Oracle International Corp. System and method of dynamically providing priority for network communications
US7555547B2 (en) * 2004-02-26 2009-06-30 Oracle International Corp. System and method for identifying network communications of a priority service among a plurality of services
GB0410151D0 (en) * 2004-05-07 2004-06-09 Zeus Technology Ltd Load balancing & traffic management
US8069443B2 (en) * 2004-06-29 2011-11-29 Novell, Inc. Techniques for providing services and establishing processing environments
US7418719B2 (en) * 2004-08-31 2008-08-26 Microsoft Corporation Method and system to support a unified process model for handling messages sent in different protocols
US7418709B2 (en) * 2004-08-31 2008-08-26 Microsoft Corporation URL namespace to support multiple-protocol processing within worker processes
US7418712B2 (en) * 2004-08-31 2008-08-26 Microsoft Corporation Method and system to support multiple-protocol processing within worker processes
US7681181B2 (en) * 2004-09-30 2010-03-16 Microsoft Corporation Method, system, and apparatus for providing custom product support for a software program based upon states of program execution instability
US20060070077A1 (en) * 2004-09-30 2006-03-30 Microsoft Corporation Providing custom product support for a software program
US7593930B2 (en) * 2004-12-14 2009-09-22 Sap Ag Fast channel architecture
US7600217B2 (en) * 2004-12-14 2009-10-06 Sap Ag Socket-like communication API for Java
US7580915B2 (en) * 2004-12-14 2009-08-25 Sap Ag Socket-like communication API for C
US7886294B2 (en) * 2004-12-28 2011-02-08 Sap Ag Virtual machine monitoring
US7689989B2 (en) * 2004-12-28 2010-03-30 Sap Ag Thread monitoring using shared memory
US7895594B2 (en) * 2005-03-28 2011-02-22 Freescale Semiconductor, Inc. Virtual machine extended capabilities using application contexts in a resource-constrained device
US20060242647A1 (en) * 2005-04-21 2006-10-26 Kimbrel Tracy J Dynamic application placement under service and memory constraints
US20070094266A1 (en) * 2005-10-17 2007-04-26 Microsoft Corporation Collecting information on component implementation and use
US8316354B2 (en) * 2005-12-15 2012-11-20 Ca, Inc. Execution flow shape compression for aggregate data reporting in an application manager
US8341605B2 (en) 2005-12-15 2012-12-25 Ca, Inc. Use of execution flow shape to allow aggregate data reporting with full context in an application manager
US7949673B2 (en) * 2005-12-15 2011-05-24 Computer Associates Think, Inc. Correlating cross process and cross thread execution flows in an application manager
US8346911B2 (en) * 2006-03-17 2013-01-01 International Business Machines Corporation Computer system evaluation
US7720893B2 (en) * 2006-03-31 2010-05-18 Research In Motion Limited Methods and apparatus for providing map locations in user applications using URL strings
US20080077652A1 (en) * 2006-09-06 2008-03-27 Credit Suisse Securities (Usa) Llc One Madison Avenue Method and system for providing an enhanced service-oriented architecture
US7840636B2 (en) * 2006-12-04 2010-11-23 Intel Corporation Provider presence information
US7685475B2 (en) * 2007-01-09 2010-03-23 Morgan Stanley Smith Barney Holdings Llc System and method for providing performance statistics for application components
US8171485B2 (en) 2007-03-26 2012-05-01 Credit Suisse Securities (Europe) Limited Method and system for managing virtual and real machines
US20080244607A1 (en) * 2007-03-27 2008-10-02 Vladislav Rysin Economic allocation and management of resources via a virtual resource market
WO2009061432A1 (en) * 2007-11-06 2009-05-14 Credit Suisse Securities (Usa) Llc Predicting and managing resource allocation according to service level agreements
US8219358B2 (en) 2008-05-09 2012-07-10 Credit Suisse Securities (Usa) Llc Platform matching systems and methods
US20090313160A1 (en) * 2008-06-11 2009-12-17 Credit Suisse Securities (Usa) Llc Hardware accelerated exchange order routing appliance
US8584087B2 (en) * 2009-12-11 2013-11-12 Sap Ag Application configuration deployment monitor
US9245246B2 (en) * 2010-04-22 2016-01-26 International Business Machines Corporation Capacity over-commit management in resource provisioning environments
US9311158B2 (en) 2010-09-03 2016-04-12 Adobe Systems Incorporated Determining a work distribution model between a client device and a cloud for an application deployed on the cloud
US8621069B1 (en) * 2010-09-03 2013-12-31 Adobe Systems Incorporated Provisioning a computing application executing on a cloud to a client device
US8490055B2 (en) 2010-09-17 2013-07-16 Ca, Inc. Generating dependency maps from dependency data
US8966059B2 (en) * 2011-04-06 2015-02-24 Microsoft Technology Licensing, Llc Cached data detection
US8438427B2 (en) 2011-04-08 2013-05-07 Ca, Inc. Visualizing relationships between a transaction trace graph and a map of logical subsystems
US8516301B2 (en) 2011-04-08 2013-08-20 Ca, Inc. Visualizing transaction traces as flows through a map of logical subsystems
US8782614B2 (en) 2011-04-08 2014-07-15 Ca, Inc. Visualization of JVM and cross-JVM call stacks
US9202185B2 (en) 2011-04-08 2015-12-01 Ca, Inc. Transaction model with structural and behavioral description of complex transactions
US9323634B2 (en) * 2011-07-26 2016-04-26 Salesforce.Com, Inc. Generating a configuration file based upon an application registry
US10445528B2 (en) * 2011-09-07 2019-10-15 Microsoft Technology Licensing, Llc Content handling for applications
US8386604B1 (en) * 2011-09-30 2013-02-26 Google Inc. Assigning blame to web browser extensions and applications
US8359389B1 (en) 2011-10-11 2013-01-22 Google Inc. Monitoring application program resource consumption
WO2013060791A1 (en) * 2011-10-28 2013-05-02 Openwave Mobility, Inc. Connection cache method and system
CN103425577B (en) * 2012-05-25 2018-06-26 腾讯科技(深圳)有限公司 A kind of test method and device
US20150200820A1 (en) * 2013-03-13 2015-07-16 Google Inc. Processing an attempted loading of a web resource
US10437651B2 (en) * 2015-09-22 2019-10-08 International Business Machines Corporation Intelligent mapping of empirical data
US10956246B1 (en) * 2018-07-16 2021-03-23 Amazon Technologies, Inc. Isolated read channel management interfaces at streaming data service
US11095644B2 (en) 2019-06-04 2021-08-17 Bank Of America Corporation Monitoring security configurations of cloud-based services
US11593084B2 (en) * 2019-10-31 2023-02-28 Dell Products L.P. Code development for deployment on a cloud platform

Family Cites Families (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP0576574B1 (en) * 1991-03-18 2001-10-31 Echelon Corporation Programming language structures for use in a network for communicating, sensing and controlling information
US6631402B1 (en) * 1997-09-26 2003-10-07 Worldcom, Inc. Integrated proxy interface for web based report requester tool set
US6321375B1 (en) 1998-05-14 2001-11-20 International Business Machines Corporation Method and apparatus for determining most recently used method
US6263361B1 (en) 1998-11-19 2001-07-17 Ncr Corporation Method for calculating capacity measurements for an internet web site
US6230313B1 (en) 1998-12-23 2001-05-08 Cray Inc. Parallelism performance analysis based on execution trace information
US6963912B1 (en) * 1999-06-28 2005-11-08 Xacct Technologies, Ltd. Method and apparatus for session reconstruction
US6957255B1 (en) * 1999-06-28 2005-10-18 Amdocs (Israel) Ltd. Method and apparatus for session reconstruction and accounting involving VoIP calls
US20020010757A1 (en) * 1999-12-03 2002-01-24 Joel Granik Method and apparatus for replacement of on-line advertisements
US20020143927A1 (en) * 2000-12-07 2002-10-03 Maltz David A. Method and system for configuring a network element in a computer network
US20020143926A1 (en) * 2000-12-07 2002-10-03 Maltz David A. Method and system for collecting traffic data in a computer network
US7889644B2 (en) * 2003-08-21 2011-02-15 Alcatel Lucent Multi-time scale adaptive internet protocol routing system and method

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
None

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP2035955A2 (en) * 2006-06-16 2009-03-18 Microsoft Corporation An automated method and system for collecting and reporting api performance profiles
EP2035955A4 (en) * 2006-06-16 2009-11-04 Microsoft Corp An automated method and system for collecting and reporting api performance profiles
US7895579B2 (en) 2006-06-16 2011-02-22 Microsoft Corporation Automated method and system for collecting and reporting API performance profiles
US9027000B2 (en) 2006-06-16 2015-05-05 Microsoft Technology Licensing, Llc Automated method and system for collecting and reporting API performance profiles
WO2012001224A1 (en) * 2010-07-02 2012-01-05 Nokia Corporation Method and apparatus for information and computation closures account management
US8401934B2 (en) 2010-07-02 2013-03-19 Nokia Corporation Method and apparatus for information and computation closures account management
CN109284212A (en) * 2017-07-21 2019-01-29 中兴通讯股份有限公司 It is a kind of tracking, monitoring software behavior method, device and equipment
EP3657335A4 (en) * 2017-07-21 2021-04-14 ZTE Corporation Method, device, and apparatus for tracking and monitoring software behavior
US11115494B1 (en) * 2020-02-26 2021-09-07 International Business Machines Corporation Profile clustering for homogenous instance analysis

Also Published As

Publication number Publication date
EP1308844B1 (en) 2015-12-09
US20030084018A1 (en) 2003-05-01
US7216160B2 (en) 2007-05-08
EP1308844A3 (en) 2005-09-07

Similar Documents

Publication Publication Date Title
US7216160B2 (en) Server-based application monitoring through collection of application component and environmental statistics
US7284054B2 (en) Systems, methods, and articles of manufacture for aligning service containers
US7188163B2 (en) Dynamic reconfiguration of applications on a server
US7607128B2 (en) Method and system for enabling a server application to be executed in the same virtual machine as a client application using direct object oriented programming method calls
US8849892B2 (en) Method and system for brokering messages in a distributed system
US6879995B1 (en) Application server message logging
US6845503B1 (en) System and method for enabling atomic class loading in an application server environment
US6859834B1 (en) System and method for enabling application server request failover
US7882501B1 (en) System and method for enabling dynamic modifed class reloading in an application server environment
US8813067B2 (en) One click deployment
US6976262B1 (en) Web-based enterprise management with multiple repository capability
EP1649366B1 (en) Maintainable grid managers
EP1212680B1 (en) Graceful distribution in application server load balancing
US7568199B2 (en) System for matching resource request that freeing the reserved first resource and forwarding the request to second resource if predetermined time period expired
EP1211865A2 (en) System and method for server-host communication connection management and screen object management system to serve anticipated future client connections
US20090083425A1 (en) Grid organization
JPH10124468A (en) Resource managing method and computer
EP1649365B1 (en) Grid manageable application process management scheme
US6038589A (en) Apparatus, method and computer program product for client/server computing with a transaction representation located on each transactionally involved server
US20030055862A1 (en) Methods, systems, and articles of manufacture for managing systems using operation objects
US8954584B1 (en) Policy engine for automating management of scalable distributed persistent applications in a grid
Herness et al. WebSphere Application Server: A foundation for on demand computing
Delaitre et al. GEMLCA: Grid execution management for legacy code architecture design
US6631424B1 (en) Distributing information using a computer
Barotto et al. Distributed network management using SNMP, Java, WWW and CORBA

Legal Events

Date Code Title Description
PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

AK Designated contracting states

Designated state(s): AT BE BG CH CY CZ DE DK EE ES FI FR GB GR IE IT LI LU MC NL PT SE SK TR

AX Request for extension of the european patent

Extension state: AL LT LV MK RO SI

PUAL Search report despatched

Free format text: ORIGINAL CODE: 0009013

AK Designated contracting states

Kind code of ref document: A3

Designated state(s): AT BE BG CH CY CZ DE DK EE ES FI FR GB GR IE IT LI LU MC NL PT SE SK TR

AX Request for extension of the european patent

Extension state: AL LT LV MK RO SI

17P Request for examination filed

Effective date: 20060222

AKX Designation fees paid

Designated state(s): DE FR GB

RAP1 Party data changed (applicant data changed or rights of an application transferred)

Owner name: ORACLE AMERICA, INC.

GRAP Despatch of communication of intention to grant a patent

Free format text: ORIGINAL CODE: EPIDOSNIGR1

INTG Intention to grant announced

Effective date: 20150626

GRAS Grant fee paid

Free format text: ORIGINAL CODE: EPIDOSNIGR3

GRAA (expected) grant

Free format text: ORIGINAL CODE: 0009210

AK Designated contracting states

Kind code of ref document: B1

Designated state(s): DE FR GB

REG Reference to a national code

Ref country code: GB

Ref legal event code: FG4D

REG Reference to a national code

Ref country code: DE

Ref legal event code: R096

Ref document number: 60247661

Country of ref document: DE

REG Reference to a national code

Ref country code: DE

Ref legal event code: R097

Ref document number: 60247661

Country of ref document: DE

PLBE No opposition filed within time limit

Free format text: ORIGINAL CODE: 0009261

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: NO OPPOSITION FILED WITHIN TIME LIMIT

26N No opposition filed

Effective date: 20160912

REG Reference to a national code

Ref country code: FR

Ref legal event code: ST

Effective date: 20170630

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: FR

Free format text: LAPSE BECAUSE OF NON-PAYMENT OF DUE FEES

Effective date: 20161102

REG Reference to a national code

Ref country code: DE

Ref legal event code: R082

Ref document number: 60247661

Country of ref document: DE

Representative=s name: D YOUNG & CO LLP, DE

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: GB

Payment date: 20210907

Year of fee payment: 20

PGFP Annual fee paid to national office [announced via postgrant information from national office to epo]

Ref country code: DE

Payment date: 20210908

Year of fee payment: 20

REG Reference to a national code

Ref country code: DE

Ref legal event code: R071

Ref document number: 60247661

Country of ref document: DE

REG Reference to a national code

Ref country code: GB

Ref legal event code: PE20

Expiry date: 20221015

PG25 Lapsed in a contracting state [announced via postgrant information from national office to epo]

Ref country code: GB

Free format text: LAPSE BECAUSE OF EXPIRATION OF PROTECTION

Effective date: 20221015