Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def _encode_attributes(
try:
pb2_attributes.append(_encode_key_value(key, value))
except Exception as error:
_logger.exception(error)
_logger.exception("Failed to encode key %s: %s", key, error)
else:
pb2_attributes = None
return pb2_attributes
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
import unittest
from logging import ERROR

from opentelemetry.exporter.otlp.proto.common._internal import (
_encode_attributes,
)
from opentelemetry.proto.common.v1.common_pb2 import AnyValue as PB2AnyValue
from opentelemetry.proto.common.v1.common_pb2 import (
ArrayValue as PB2ArrayValue,
)
from opentelemetry.proto.common.v1.common_pb2 import KeyValue as PB2KeyValue


class TestOTLPAttributeEncoder(unittest.TestCase):
def test_encode_attributes_all_kinds(self):
result = _encode_attributes(
{
"a": 1, # int
"b": 3.14, # float
"c": False, # bool
"hello": "world", # str
"greet": ["hola", "bonjour"], # Sequence[str]
"data": [1, 2], # Sequence[int]
"data_granular": [1.4, 2.4], # Sequence[float]
}
)
self.assertEqual(
result,
[
PB2KeyValue(key="a", value=PB2AnyValue(int_value=1)),
PB2KeyValue(key="b", value=PB2AnyValue(double_value=3.14)),
PB2KeyValue(key="c", value=PB2AnyValue(bool_value=False)),
PB2KeyValue(
key="hello", value=PB2AnyValue(string_value="world")
),
PB2KeyValue(
key="greet",
value=PB2AnyValue(
array_value=PB2ArrayValue(
values=[
PB2AnyValue(string_value="hola"),
PB2AnyValue(string_value="bonjour"),
]
)
),
),
PB2KeyValue(
key="data",
value=PB2AnyValue(
array_value=PB2ArrayValue(
values=[
PB2AnyValue(int_value=1),
PB2AnyValue(int_value=2),
]
)
),
),
PB2KeyValue(
key="data_granular",
value=PB2AnyValue(
array_value=PB2ArrayValue(
values=[
PB2AnyValue(double_value=1.4),
PB2AnyValue(double_value=2.4),
]
)
),
),
],
)

def test_encode_attributes_error_logs_key(self):
with self.assertLogs(level=ERROR) as error:
result = _encode_attributes({"a": 1, "bad_key": None, "b": 2})

self.assertEqual(len(error.records), 1)
self.assertEqual(error.records[0].msg, f"Failed to encode key %s: %s")
self.assertEqual(error.records[0].args[0], "bad_key")
self.assertIsInstance(error.records[0].args[1], Exception)
self.assertEqual(
result,
[
PB2KeyValue(key="a", value=PB2AnyValue(int_value=1)),
PB2KeyValue(key="b", value=PB2AnyValue(int_value=2)),
],
)