File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ instrumented application.
144
144
The easiest way it can be done is by adding ` assertInverse.set(true) ` to the ` pass ` muzzle
145
145
directive. The plugin will add an implicit ` fail ` directive that contains all other versions of the
146
146
instrumented library.
147
- It is worth using ` assertInverse.set(true) ` by default when writing instrumentation modules, even for
147
+ You SHOULD use ` assertInverse.set(true) ` when writing instrumentation modules, even for
148
148
very old library versions. The muzzle plugin will ensure that those old versions won't be
149
149
accidentally instrumented when we know that the instrumentation will not work properly for them.
150
150
Having a ` fail ` directive forces the authors of the instrumentation module to properly specify
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ may be restricted by the interception APIs provided by the library.
45
45
Within the subfolder, create three folders ` library ` (skip if library instrumentation is not
46
46
possible),` javaagent ` , and ` testing ` .
47
47
48
- For example, if you are targeting the RPC framework ` yarpc ` at version ` 1.0 ` , you would have a
48
+ For example, if you are targeting the RPC framework ` yarpc ` at minimal supported version ` 1.0 ` , you would have a
49
49
directory tree like the following:
50
50
51
51
```
@@ -60,7 +60,7 @@ instrumentation ->
60
60
build.gradle.kts
61
61
```
62
62
63
- The top level ` settings.gradle.kts ` file would contain the following:
63
+ The top level ` settings.gradle.kts ` file would contain the following (please add in alphabetical order) :
64
64
65
65
``` kotlin
66
66
include(" instrumentation:yarpc-1.0:javaagent" )
You can’t perform that action at this time.
0 commit comments