You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:description=>"Manual override for the path to your local CA bundle. This CA bundle will be used to validate the SSL certificate presented by New Relic's data collection service."
446
+
:description=>"Manual override for the path to your local CA bundle. This CA bundle validates the SSL certificate presented by New Relic's data collection service."
Here is some Ruby source code that defines a `render_png` instance method for an `Image` class and a `notify` class method for a `User` class, both within a `MyCompany` module namespace:
1191
1191
1192
-
```ruby
1192
+
```rb
1193
1193
module MyCompany
1194
1194
class Image
1195
1195
def render_png
@@ -1207,15 +1207,15 @@ def self.notify
1207
1207
1208
1208
Given that source code, the `newrelic.yml` config file might request instrumentation for both of these methods like so:
1209
1209
1210
-
```yml
1210
+
```yaml
1211
1211
automatic_custom_instrumentation_method_list:
1212
1212
- MyCompany::Image#render_png
1213
1213
- MyCompany::User.notify
1214
1214
```
1215
1215
1216
1216
That configuration example uses YAML array syntax to specify both methods. Alternatively, you can use a comma-delimited string:
:description=>'Defines API paths the security agent should ignore in IAST scans. Accepts an array of regex patterns matching the URI to ignore. The regex pattern should provide a complete match for the URL without the endpoint. For example, `[".*account.*"], [".*/\api\/v1\/.*?\/login"]`'
2737
+
:description=>'Defines API paths the security agent should ignore in IAST scans. Accepts an array of regex patterns matching the URI to ignore. The regex pattern should find a complete match for the URL without the endpoint. For example, `[".*account.*"], [".*/\api\/v1\/.*?\/login"]`'
:description=>'If `true`, disables the detection of low-severity insecure settings (e.g., hash, crypto, cookie, random generators, trust boundary).'
2772
+
:description=>'If `true`, disables the detection of low-severity insecure settings. For example, hash, crypto, cookie, random generators, trust boundary).'
:description=>'Unique test identifier when runnning IAST in CI/CD environment to differentiate between different test runs, e.g., a build number.'
2910
+
:description=>'A unique test identifier when runnning IAST in a CI/CD environment to differentiate between different test runs. For example, a build number.'
0 commit comments