Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document GA for exception profiling #20880

Merged
merged 5 commits into from
Dec 20, 2023
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions content/en/tracing/trace_collection/library_config/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,15 +134,18 @@ Enable the allocation size and allocation bytes profile type. Added in version `
**Default**: `1`<br>
Enable the experimental CPU profile type. Added in version `0.69.0`. For version `0.76` and below it defaulted to `0`.

`DD_PROFILING_EXPERIMENTAL_EXCEPTION_ENABLED`
: **INI**: `datadog.profiling.experimental_exception_enabled`. INI available since `0.92.0`.<br>
**Default**: `0`<br>
Enable the experimental exception profile type. Added in version `0.92.0`.
`DD_PROFILING_EXCEPTION_ENABLED`
: **INI**: `datadog.profiling.exception_enabled`. INI available since `0.96.0`.<br>
**Default**: `1`<br>
Enable the exception profile type. Added in version `0.92.0` and GA
in version `0.96.0`.
realFlowControl marked this conversation as resolved.
Show resolved Hide resolved
**Note**: This supersedes the `DD_PROFILING_EXPERIMENTAL_EXCEPTION_ENABLED` environment variable (`datadog.profiling.experimental_exception_enabled` INI setting), which was available since `0.92`. If both are set, this one takes precedence.

`DD_PROFILING_EXPERIMENTAL_EXCEPTION_SAMPLING_DISTANCE`
: **INI**: `datadog.profiling.experimental_exception_sampling_distance`. INI available since `0.92.0`.<br>
`DD_PROFILING_EXCEPTION_SAMPLING_DISTANCE`
: **INI**: `datadog.profiling.exception_sampling_distance`. INI available since `0.96.0`.<br>
**Default**: `100`<br>
Configure the sampling distance for exceptions. The higher the sampling distance, the fewer samples are created and the lower the overhead.
realFlowControl marked this conversation as resolved.
Show resolved Hide resolved
**Note**: This supersedes the `DD_PROFILING_EXPERIMENTAL_EXCEPTION_SAMPLING_DISTANCE` environment variable (`datadog.profiling.experimental_exception_sampling_distance` INI setting), which was available since `0.92`. If both are set, this one takes precedence.

`DD_PROFILING_EXPERIMENTAL_TIMELINE_ENABLED`
: **INI**: `datadog.profiling.experimental_timeline_enabled`. INI available since `0.89.0`.<br>
Expand Down
Loading