|
289 | 289 | # ddtrace ruby gem version
|
290 | 290 | default['datadog']['ddtrace_gem_version'] = nil
|
291 | 291 |
|
| 292 | +# Live processes functionality settings |
| 293 | +# Set `enable_process_agent` to: |
| 294 | +# * `true` to explicitly enable the process agent |
| 295 | +# * `false` to explicitly disable it |
| 296 | +# Leave it to `nil` to let the agent's default behavior decide whether to run the process-agent |
| 297 | +default['datadog']['enable_process_agent'] = nil |
| 298 | + |
| 299 | +# Comma-separated list of regex patterns matching process commands to blacklist. |
| 300 | +# Example: 'my-secret-app,dbpass' |
| 301 | +default['datadog']['process_agent']['blacklist'] = nil |
| 302 | + |
| 303 | +# Comma-separated list of regex patterns of containers to include or skip. |
| 304 | +# Each pattern should be in the form of "field:pattern" where 'field' is either |
| 305 | +# 'image' or 'name'. |
| 306 | +# Example: 'image:redis,image:nginx' |
| 307 | +default['datadog']['process_agent']['container_blacklist'] = nil |
| 308 | +# Whitelist is applied after the blacklist. |
| 309 | +default['datadog']['process_agent']['container_whitelist'] = nil |
| 310 | + |
| 311 | +# Full path to store process-agent logs to override the default. |
| 312 | +default['datadog']['process_agent']['log_file'] = nil |
| 313 | + |
| 314 | +# If running in full process collection mode ('enable_process_agent' is true) |
| 315 | +# overrides the collection intervals for the full and real-time checks in seconds. |
| 316 | +default['datadog']['process_agent']['process_interval'] = nil |
| 317 | +default['datadog']['process_agent']['rtprocess_interval'] = nil |
| 318 | + |
| 319 | +# If only collecting containers ('enable_process_agent' is false but docker is available) |
| 320 | +# overrides the collection intervals for the full and real-time check. |
| 321 | +default['datadog']['process_agent']['container_interval'] = nil |
| 322 | +default['datadog']['process_agent']['rtcontainer_interval'] = nil |
| 323 | + |
292 | 324 | # For custom gem servers on restricted networks
|
293 | 325 | # This attribute only works on Chef >= 12.3
|
294 | 326 | # Change false to the URL of your custom gem server
|
|
0 commit comments