lib: include extraction time in Crash Log METADATA - #105
Merged
Conversation
jlrivasp
force-pushed
the
dev/filename_time
branch
4 times, most recently
from
September 8, 2026 13:17
98b4373 to
1b16eb2
Compare
This patch includes the extraction time in the Crash Log `METADATA` when
the Crash Log source executes its extraction flow.
Each Crash Log extraction source should add explicit code to read and
assign the extraction time in their own extraction path.
The time is expressed in local time of the system; a new API returns the
current instant:
```
use intel_crashlog::metadata::Time;
if let Some(time) = Time::now() {
println!("{}", time)
}
```
Some Crash Log sources, call directly the `Time::now()` API, for
getting the current instance
Signed-off-by: Rivas Paz, Jose L <jose.l.rivas.paz@intel.com>
jlrivasp
force-pushed
the
dev/filename_time
branch
from
September 10, 2026 06:51
1b16eb2 to
1901caa
Compare
Member
|
Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 patch includes the extraction time in the Crash Log
METADATAwhen the Crash Log source executes its extraction flow.Some Crash Log sources (e.g. Event Log) already assign a
METADATAtime during extraction, hence this flow is a fall back for the sources that didn't include that.The time is expressed in local time of the system; a new API returns the current instant: