open-telemetry / open-telemetry/opentelemetry-python
Handle `extra` attributes of unknown classes
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 2.6k
- Forks
- 1k
- Avg merge
- 4d 15h
- Merged PRs (30d)
- 19
Description
Is your feature request related to a problem?
We use the "extra" field in the python logger to add extra context. Sometimes the objects are rich objects, e.g dataclasses. With the regular python logger this works reasonably well, while with this logger we get the errror Invalid type MyNotDataclass for attribute 'who' value. Expected one of ['bool', 'str', 'bytes', 'int', 'float'] or a sequence of those types and the extra value is dropped.
Here is an simple example:
import logging
import dataclasses
logging.basicConfig(level=logging.DEBUG, format="%(levelname)s: %(message)s. Who: %(who)s")
LOGGER = logging.getLogger(__name__)
@dataclasses.dataclass
class MyDataclass:
name: str
age: int
LOGGER.warning("I did something", extra={"who": MyDataclass(name="John", age=30)})
This would print
WARNING: I did something. Who: MyDataclass(name='John', age=30)
And if you used e.g. https://github.com/nhairs/python-json-logger you would get :
{"message": "I did something", "who": {"name": "John", "age": 30}}
With auto-instrumentation we get the error Invalid type MyDataclass for attribute 'who' value. Expected one of ['bool', 'str', 'bytes', 'int', 'float'] or a sequence of those types.
This is because of the handling in _clean_attribute where there is a small list of special cases handled, but in the generall case extra-values are thrown away.
(This is of course all a problem because the python logging module don't expose the extras in any way, and instead makeRecord injects them directly into the __dict__ the LogRecord. So there is really no nice way to process. But that is a rant for another time)
Describe the solution you'd like
In a perfect world any extra parameter which could be serialized as json would be, so the console output would be something like:
{
"body": "I did something",
"severity_number": 13,
"severity_text": "WARN",
"attributes": {
"otelSpanID": "0",
"who": {"name": "John", "age": 30}
...
But I imagine that this quickly gets dirty, and not something you want in here(?)
Maybe it could be possible to register some function which would be passed the attributes and which are free to return whatever?
Alternatively, and maybe less controversial is to call str) on the remaining attributes. Then it becomes something like:
{
"body": "I did something",
"severity_number": 13,
"severity_text": "WARN",
"attributes": {
"otelSpanID": "0",
"who": "MyDataclass(name='John', age=30)",
...
This is less usefull for further analysis, but at least the extra is not completely lost.
Describe alternatives you've considered
I have made a LoggerAdapter
import logging
from pythonjsonlogger.json import JsonFormatter
class ExtraLoggerAdapter(logging.LoggerAdapter):
def __init__(self, logger, extra=None, jsonify=True):
self.logger = logger
self.extra = extra
self.jsonify = jsonify
if self.jsonify:
self.jsonformater = JsonFormatter()
def process(self, msg, kwargs):
kwargs["extra"] = (self.extra or {}) | kwargs.get("extra", {})
if self.jsonify:
kwargs["extra"] = {
k: self.jsonformater.jsonify_log_record(v)
for k, v in kwargs["extra"].items()
}
else:
kwargs["extra"] = {k: str(v) for k, v in kwargs["extra"].items()}
return msg, kwargs
But this must be used explicitly everywere things are logged, like logger= ExtraLoggerAdapter(logging.getLogger(__name__), jsonify=True). And the inner json gets escaped:
{
"body": "I did something",
"severity_number": 13,
"severity_text": "WARN",
"attributes": {
"who": "{\"name\": \"John\", \"age\": 30}",
...
Additional Context
No response
Would you like to implement a fix?
None
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start in opentelemetry-api/src/opentelemetry/attributes/init.py at _clean_attribute, then review the Python logging makeRecord behavior linked in the issue. Compare the proposed JSON serialization, string conversion, and registration approaches, and check existing attribute tests. Done should mean that the chosen handling preserves unknown logging extras without violating attribute rules.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- observability-sre
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 25/100