Riccardo Magliocchetti
Riccardo Magliocchetti
Got some feedback about api key documentation reference here https://github.com/elastic/apm-agent-python/blob/693318c3bb28e53e85d96352136b280e522a592d/docs/reference/configuration.md?plain=1#L265 - I think we may want to remove the tech preview warning since for some platforms it's the only way...
Sometimes we have this warning when running tests. I checked that this happens also when running just this test alone. ``` tests/client/client_tests.py::test_send_remote_failover_sync_non_transport_exception_error /home/rm/src/apm-agent-python/venv313/lib/python3.13/site-packages/_pytest/unraisableexception.py:78: PytestUnraisableExceptionWarning: Exception ignored in: Traceback (most recent...
This was from unrelated code change: ``` _____________________________ test_interval_timer _____________________________ def test_interval_timer(): func = mock.Mock() timer = IntervalTimer(function=func, interval=0.1, args=(1,), kwargs={"a": "b"}) timer.start() time.sleep(0.25) try: > assert func.call_count == 2...
While it is optional it makes sense to send it when we send the `parent_id`.
In the `for` desugaring paragraph (https://rust-exercises.com/100-exercises/06_ticket_management/04_iterators#for-desugaring) it says that `for` get desugared into a `loop` but then it says that *loop is another looping construct, on top of for and...
I would like to add some e2e tests for a python client and it would be handy being able to pass a default config via an option to the cli...
# Description Make it easier for distributions to override the processors set up by the sdk configurator by specifying a list of span processors, a list of log record processors...
It looks like the workflow we are using for the contrib workflow is hardcoded to the main branch: https://github.com/open-telemetry/opentelemetry-python/blob/main/.github/workflows/contrib.yml#L19 This is a problem if the release branch contains different instrumentations...
## Plan | PR/issue | impact | alternatives | notes | |---|----|----|-----| | https://github.com/open-telemetry/opentelemetry-python/pull/4676 | Removal of sdk LogData (no substitute) and LogRecord (now ReadableLogRecord and ReadWriteLogRecord). Change of typing...