This file contains hidden or 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
inspectit: | |
instrumentation: | |
actions: | |
# Checks if the given input string fully matches any of the provided regexes. | |
# If it does, the matched regex is returned. Otherwise, null is returned. | |
# | |
# the patterns are expected to be a list of the following form: | |
# constant-input: | |
# patterns: | |
# - <regexA> |
This file contains hidden or 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
inspectit: | |
instrumentation: | |
rules: | |
'r_tracing_global_attributes': | |
include: | |
'r_tracing_exception_attributes': false |
This file contains hidden or 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
inspectit: | |
instrumentation: | |
actions: | |
'a_get_size_of_stream': | |
imports: | |
- 'java.io.ByteArrayOutputStream' | |
input: | |
_arg1: Object | |
value-body: | | |
try { |
This file contains hidden or 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
inspectit: | |
instrumentation: | |
actions: | |
'a_get_class_information': | |
imports: | |
- 'java.lang.StringBuffer' | |
- 'java.lang.reflect.Method' | |
- 'java.lang.reflect.Field' | |
input: | |
_arg1: Object |
This file contains hidden or 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
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# Action for extracting header fields of a HTTP requests | |
# processed by the Java Servlet API. If multiple headers | |
# with the specified name exists, only the first one | |
# will be returned. | |
# | |
# field : String | |
# The name of the header field to extract | |
# | |
# return |