feat: set entity timestamp (at source) if not provided #36
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to the
netboxlabs/diode/sdk/ingester.py
file, test coverage improvements intests/test_ingester.py
, and an update to the.github/CODEOWNERS
file. The most important changes include adding a check forNone
timestamps, updating the code owners, and adding new test cases for entity instantiation.Codebase improvements:
netboxlabs/diode/sdk/ingester.py
: Added a check to handleNone
timestamps by setting the current time if no timestamp is provided.Test coverage improvements:
tests/test_ingester.py
: Added import fortimestamp_pb2
fromgoogle.protobuf
.tests/test_ingester.py
: Added a test casetest_entity_instantiation_with_no_timestamp_provided
to ensure that an entity is instantiated correctly when no timestamp is provided.tests/test_ingester.py
: Added a test casetest_entity_instantiation_with_timestamp_provided
to validate entity instantiation with a provided timestamp.Code ownership:
.github/CODEOWNERS
: Updated the code owners to include@ltucker
along with existing owners@leoparente
and@mfiedorowicz
.