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
The http.url span tag is currrently set to "$scheme://$http_host$request_uri" which includes the query parameters.
Since these are more likely to contain sensitive information, would it make sense to remove the query parameters from the tag ?
Thanks!
The text was updated successfully, but these errors were encountered:
@pauqilaz You are right. I would advice to obfuscate/drop tag in opentelemetry collector side.
Another suggestion to move sensitive information from query to headers, just because of this.
The url is mostly likely be logged or shared in other places.
Removing it altogether is one possibility, since it can still be re-added as an optional tag. Alternatively, replacing it with "$scheme://$http_host$uri" should already remove the query parameters.
The http.url span tag is currrently set to "$scheme://$http_host$request_uri" which includes the query parameters.
Since these are more likely to contain sensitive information, would it make sense to remove the query parameters from the tag ?
Thanks!
The text was updated successfully, but these errors were encountered: