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

feat!: Allow overriding default tags #183

Merged
merged 10 commits into from
Mar 27, 2025
Merged

Conversation

dmehala
Copy link
Contributor

@dmehala dmehala commented Mar 11, 2025

Introduces the ability to override default tags using datadog_set.

Changes:

  • Refactor how tags are stored.
  • BREAKING CHANGE: only value tags can contain expressions which can be evaluated during request processing.
  • Update directive callbacks to use NGX_CONF_OK instead of NGX_OK for better consistency.

Resolves #172

How this solves #172?

This allows http.url to be overriden. To remove query string from the URL, one can set http.url to$scheme://$http_host$uri, where $uri is the normalized version of $request_uri used by default.

Usage example:

http {
  datadog_tag "http.url" "$scheme://$http_host$uri";
  
  location / {
    return 200 "hello, worl";
  }
}

dmehala added 7 commits March 6, 2025 19:16
This change involves moving the directive definitions to their
respective "submodules". This is an initial step toward modularizing the
module, ensuring a clear separation of concerns between the different
products.
Introduces the ability to override default tags using `datadog_set`.

Changes:
- Refactor how tags are stored.
- BREAKING CHANGE: only value tags can contain expressions which can be
  evaluated during request processing.
- Update directive callbacks to use `NGX_CONF_OK` instead of `NGX_OK`
  for better consistency.
@dmehala dmehala requested a review from a team as a code owner March 11, 2025 14:13
@dmehala dmehala requested review from cataphract, dubloom and pablomartinezbernardo and removed request for a team and cataphract March 11, 2025 14:13
@dmehala
Copy link
Contributor Author

dmehala commented Mar 11, 2025

@dmehala update the documentation please.

@codecov-commenter
Copy link

codecov-commenter commented Mar 11, 2025

Codecov Report

Attention: Patch coverage is 74.69880% with 21 lines in your changes missing coverage. Please review.

Project coverage is 72.01%. Comparing base (c848361) to head (6556270).

Files with missing lines Patch % Lines
src/request_tracing.cpp 72.72% 6 Missing ⚠️
src/tracing/directives.cpp 45.45% 5 Missing and 1 partial ⚠️
src/common/variable.cpp 85.71% 2 Missing and 2 partials ⚠️
src/ngx_http_datadog_module.cpp 76.47% 2 Missing and 2 partials ⚠️
src/datadog_directive.cpp 66.66% 1 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@                       Coverage Diff                        @@
##           dmehala/drop-in-otel-support     #183      +/-   ##
================================================================
- Coverage                         72.06%   72.01%   -0.05%     
================================================================
  Files                                46       47       +1     
  Lines                              6464     6432      -32     
  Branches                            918      907      -11     
================================================================
- Hits                               4658     4632      -26     
- Misses                             1364     1367       +3     
+ Partials                            442      433       -9     
Files with missing lines Coverage Δ
src/tracing_library.cpp 77.69% <100.00%> (+0.17%) ⬆️
src/datadog_directive.cpp 74.46% <66.66%> (ø)
src/common/variable.cpp 85.71% <85.71%> (ø)
src/ngx_http_datadog_module.cpp 70.51% <76.47%> (+7.68%) ⬆️
src/request_tracing.cpp 75.12% <72.72%> (-0.35%) ⬇️
src/tracing/directives.cpp 35.62% <45.45%> (-1.58%) ⬇️

... and 3 files with indirect coverage changes

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Collaborator

@pablomartinezbernardo pablomartinezbernardo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Couple small comments

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May be a left over?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

addressed in 6556270

Comment on lines 44 to 62
static ngx_http_complex_value_t *make_complex_value(ngx_conf_t *cf,
ngx_str_t &value) {
auto *cv = (ngx_http_complex_value_t *)ngx_pcalloc(
cf->pool, sizeof(ngx_http_complex_value_t));

ngx_http_compile_complex_value_t ccv;
ngx_memzero(&ccv, sizeof(ngx_http_compile_complex_value_t));

ccv.cf = cf;
ccv.value = &value;
ccv.complex_value = cv;
ccv.zero = 0;
ccv.conf_prefix = 0;

if (ngx_http_compile_complex_value(&ccv) != NGX_OK) {
return nullptr;
}

return static_cast<char *>(NGX_CONF_OK);
return cv;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it possible to reuse the implementation from common? Or does it actually need to be duplicated for some reason?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

addressed in 6556270

@dmehala dmehala force-pushed the dmehala/drop-in-otel-support branch from c848361 to ca24ac6 Compare March 17, 2025 10:31
@dmehala dmehala requested a review from a team as a code owner March 17, 2025 10:31
@dmehala dmehala force-pushed the dmehala/drop-in-otel-support branch from ca24ac6 to 5ebca82 Compare March 17, 2025 10:34
Base automatically changed from dmehala/drop-in-otel-support to master March 27, 2025 20:04
Comment on lines +155 to +156
if span["service"] != "nginx":
continue

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Code Quality Violation

too many nesting levels (...read more)

Avoid to nest too many loops together. Having too many loops make your code harder to understand.
Prefer to organize your code in functions and unit of code you can clearly understand.

Learn More

View in Datadog  Leave us feedback  Documentation

@dmehala dmehala merged commit 2f646bb into master Mar 27, 2025
49 of 50 checks passed
@dmehala dmehala deleted the dmehala/chore/tags-precedence branch March 27, 2025 20:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEATURE]: Ability to hide queryString from generated spans
3 participants