File tree Expand file tree Collapse file tree
src/recorders/postinstall Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ impl SystemRecorder {
4343 self . record_kubelet_logs ( ) . boxed ( ) ,
4444 self . record_network_logs ( ) . boxed ( ) ,
4545 self . record_containerd_logs ( ) . boxed ( ) ,
46+ self . record_oxenstored_logs ( ) . boxed ( ) ,
4647 self . record_grub_cfg ( ) . boxed ( ) ,
4748 self . record_kernel_cfg ( ) . boxed ( ) ,
4849 self . record_xen_capabilities ( ) . boxed ( ) ,
@@ -277,6 +278,16 @@ impl SystemRecorder {
277278 self . run_tool ( "journalctl -u containerd" ) . await
278279 }
279280
281+ /// Records the `oxenstored` journalctl log.
282+ ///
283+ /// Manual equivalent:
284+ /// ```sh
285+ /// journalctl -u oxenstored
286+ /// ```
287+ pub async fn record_oxenstored_logs ( & self ) -> CheckResult {
288+ self . run_tool ( "journalctl -u oxenstored" ) . await
289+ }
290+
280291 /// Records the `kubelet` journalctl log.
281292 ///
282293 /// Manual equivalent:
You can’t perform that action at this time.
0 commit comments