Hi,
I think video export logs are showing in audit logs previously in 2021R1 After 2022 we cant see it now?
Is there any way to get video export in audit logs?
Any other place though MIP SDK we can get video export logs ?
Hi,
I think video export logs are showing in audit logs previously in 2021R1 After 2022 we cant see it now?
Is there any way to get video export in audit logs?
Any other place though MIP SDK we can get video export logs ?
It will only show up if XProtect is configured to show it, I have a hunch that it might not be a difference in version but in setup that is the cause for you not seeing it.
In Management Client, Tools → Options, pick the Server Logs tab, configure logging: Make sure logging is enabled and that “Enable user access logging” is set.
I am using following code to export video in my application. But i am not seeing any video export audit log after export
item = VideoOS.Platform.Configuration.Instance.GetItem(new Guid(cameraId), Kind.Camera);
_exporter = new MKVExporter { Filename = videoExport.fileName };
_exporter.Init();
_exporter.Path = String.IsNullOrEmpty(videoExport.path) ? fullPath : videoExport.path;
_exporter.CameraList.Add(item);
if (item != null)
{
if (includeRelatedDevices)
{
audioSources.AddRange(item.GetRelated()
.Where(x => x.FQID.Kind == Kind.Microphone || x.FQID.Kind == Kind.Speaker));
}
}
_exporter.AudioList.AddRange(audioSources);
log.Info("Before StartExport");
if (_exporter.StartExport(videoExportTimeBegin, videoExportTimeEnd))
{
log.Info("ExportingVideo..");
return Request.CreateResponse(HttpStatusCode.OK, "Video Exported");
}
Milestone version 24 r1