Application Response Measurement

From Wikipedia, the free encyclopedia
Application Response Measurement
AbbreviationARM
StatusPublished
Year started1996; 28 years ago (1996)
Latest version4.1 version 1
2007; 17 years ago (2007)
OrganizationThe Open Group
AuthorsTivoli Software, Hewlett-Packard, The Open Group
DomainEnterprise application integration, Application programming interfaces
Websitecollaboration.opengroup.org/tech/management/arm/

Application Response Measurement (ARM) is an open standard published by the Open Group for monitoring and diagnosing performance bottlenecks within complex enterprise applications that use loosely-coupled designs or service-oriented architectures.

It includes an API for C and Java that allows timing information associated with each step in processing a transaction to be logged to a remote server for later analysis.

History[edit]

Version 1 of ARM was developed jointly by Tivoli Software and Hewlett-Packard in 1996. Version 2 was developed by an industry partnership (the ARM Working Group) and became available in December 1997 as an open standard approved by the Open Group. ARM 4.0 was released in 2003 and revised in 2004.

As of 2007, ARM 4.1 version 1 is the latest version of the ARM standard.

Introduction[edit]

Current application design tends to be more complex and distributed over networks. This leads to new challenges in today's development and monitoring tools to provide application developers, system- and application administrators with the information they need.

Within distributed applications it is not easy to estimate if the application performs well. The following issues help in the evaluation of distributed applications:

  • Are business transactions succeeding and, if not, what is the cause of failure?
  • What is the response time of a transaction?
  • Where are the bottlenecks, which sub-transaction could cause a bottleneck?
  • Which and how many transactions are executed in an application?
  • How to tune an application or its environment to perform better?

ARM helps answer these questions. It's important to mention that the ARM benefits as they are defined here are now just a subset of the Application Performance Management space.

Approach[edit]

The main approach of using ARM is:

  1. Define business as well as technical transactions which are of interest.
  2. Insert calls into the application to the ARM interface to measure these defined transactions.
  3. Deploy the instrumented application in their normal environment with an installed ARM agent.
  4. The used ARM implementation now provides the transaction measurements of interest.

Concepts[edit]

ARM defines the following concepts to provide the described functionality.

ARM application[edit]

Complex distributed applications usually consist of many different single applications (processes). In order to be able to understand the relationship between all single applications the concept of an ARM application is introduced with version 4.0 of the ARM standard. Each ARM transaction is executed exactly within one ARM application.

ARM transaction[edit]

Transactions are the main concept of the ARM standard and represents a single performance measurement. A transaction definition defines the type (name) and additional attributes of an ARM transaction. A transaction can be executed (started and stopped) several times which results in multiple measurements. Each measurement has basic attributes like status of completion (good, failed, aborted), start and stop timestamp, the resulting duration and the system address (host) it was executed on. Additionally special metrics or context properties can be associated with a transaction measurement.

ARM system address[edit]

Uniquely defines a host by its name, IP address or other unique information.

ARM correlator[edit]

ARM correlators are used to express a correlation between two ARM transactions. This is a synchronous relationship also known as parent-child relationship. Commonly, a parent transaction triggers a child transaction and only continues its execution when the child transaction has finished. Using correlators, it is possible to split a complex transaction into several nested child transactions, where each child transaction can have child transactions of its own. This results in a tree of transactions with the topmost parent transaction being the root of the tree.

ARM 4.1 defines asynchronous relationships to support data flow driven architectures.

ARM metric[edit]

ARM Metrics can be used to get more information about the execution of a transaction. ARM defines a set of metric types for different purposes such as a counter, a gauge or just a numeric value.

ARM properties[edit]

Properties are a set of so-called name–value pair strings which qualifies an ARM transaction or an ARM application beyond the basic definition of these entities and allows to associate additional context information to each transaction measurement.

ARM user[edit]

Defines a name of a user on behalf an transaction measurement was executed.

ARM instrumented applications[edit]

The following applications are already instrumented with ARM calls:


References[edit]

  1. ^ "Apache ARM 4.0 Module". Httpd.apache.org. Retrieved 2012-05-20.
  2. ^ "For productive environments modified Apache ARM 4.0 Module". Myarm.com. 2011-06-13. Archived from the original on 2012-03-03. Retrieved 2012-05-20.
  3. ^ "npARM xpcom extension for Mozilla Firefox". Myarm.com. 2011-11-26. Archived from the original on 2012-03-03. Retrieved 2012-05-20.
  4. ^ "WAS v6.1 ARM Transactions". Publib.boulder.ibm.com. 2012-04-04. Retrieved 2012-05-20.
  5. ^ "Enabling ARM on HTTP Server". Publib.boulder.ibm.com. Retrieved 2012-05-20.
  6. ^ http://publib.boulder.ibm.com/infocenter/eserver/v1r2/topic/ewlminfo/eicaaarmdb2.html[permanent dead link]
  7. ^ a b "ARM - Frequently Asked Questions". support.sas.com. Retrieved 2024-03-17.
  8. ^ "Using SAS 9.2 ARM Interface with Existing ARM Applications: SAS 9.2 ARM Interface with Existing SAS Applications Overview". Support.sas.com. 2010-05-27. Retrieved 2012-05-20.

External links[edit]