Modification of software to allow for analysis
Incomputer programming,instrumentation is the act of modifying software so thatanalysis can be performed on it.[1]
Generally, instrumentation either modifiessource code orbinary code. Execution environments like the JVM provide separate interfaces to add instrumentation to program executions, such as theJVMTI, which enables instrumentation during program start.
Instrumentation enablesprofiling:[2]measuring dynamic behavior during a test run. This is useful for properties of a program that cannot beanalyzed statically with sufficient precision, such asperformance andalias analysis.
Instrumentation can include:
- Logging events such as failures and operation start and end[3]
- Measuring and logging the duration of operations
Instrumentation is limited by execution coverage. If the program never reaches a particular point of execution, then instrumentation at that point collects no data. For instance, if a word processor application is instrumented, but the user never activates the print feature, then the instrumentation can say nothing about the routines which are used exclusively by the printing feature.
Instrumentation increases the execution time of a program. In some contexts, this increase might be dramatic and hence limit the application of instrumentation to debugging contexts. The instrumentation overhead differs depending on the used instrumentation technology.[4]
- Hooking – range of techniques used to alter or augment the behavior of an operating system, of applications, or of other software components by intercepting function calls or messages or events passed between software components.
- Instruction set simulator – simulation of all instructions at machine code level to provide instrumentation
- Runtime intelligence – technologies,managed services and practices for the collection, integration, analysis, and presentation of application usage levels, patterns, and practices.
- Software performance analysis – techniques to monitor code performance, including instrumentation.
- Hardware performance counter
- DTrace – A comprehensive dynamic tracing framework for troubleshooting kernel and application problems on production systems in real time, implemented inSolaris,macOS,FreeBSD, and many other platforms and products.
- Java Management Extensions (JMX) – Java technology for managing and monitoring applications, system objects, devices (such as printers), and service-oriented networks.
- Application Response Measurement – standardized instrumentationAPI forC andJava.
- Dynamic recompilation – a feature of some emulators and virtual machines where the system may recompile some part of a program during execution.
- ^A. Sabetta and H. Koziolek, “Measuring Performance Metrics: Techniques and Tools,” in Dependability metrics. Springer, 2008, pp. 226–232.
- ^"Commenting, Testing, and Instrumenting Code".Dr. Dobb's. January 3, 2011. RetrievedJanuary 29, 2014.
- ^Source Code Instrumentation Overview at IBM website
- ^Reichelt, D. G., Bulej, L., Jung, R., & van Hoorn, A. (2024, May). Overhead Comparison of Instrumentation Frameworks. In Companion of the 15th ACM/SPEC International Conference on Performance Engineering (pp. 249-256).