-
Notifications
You must be signed in to change notification settings - Fork 10
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
Conversation
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 update the documentation please. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ 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
🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couple small comments
src/common/directives
Outdated
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addressed in 6556270
src/tracing/directives.cpp
Outdated
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; |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addressed in 6556270
c848361
to
ca24ac6
Compare
ca24ac6
to
5ebca82
Compare
if span["service"] != "nginx": | ||
continue |
There was a problem hiding this comment.
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.
Introduces the ability to override default tags using
datadog_set
.Changes:
NGX_CONF_OK
instead ofNGX_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 sethttp.url
to$scheme://$http_host$uri
, where$uri
is the normalized version of$request_uri
used by default.Usage example: