-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4382 from camilosm/add-topic-instrumentation
create topic: instrumentation
- Loading branch information
Showing
2 changed files
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
display_name: Instrumentation | ||
short_description: Instrumentation is the act of inserting instructions into software to analyze it without changing its overall behavior. | ||
topic: instrumentation | ||
wikipedia_url: https://en.wikipedia.org/wiki/Instrumentation_(computer_programming) | ||
related: code-instrumentation, binary-instrumentation | ||
--- | ||
In computer science, **instrumentation** is a technique that consists of inserting specific instructions into a program to monitor and/or analyze its performance, functionality, or behavior, but without changing how it behaves. | ||
It can be done statically, changing the program before executing it, or dynamically, inserting instructions while it's being executed. |