Hi Guys,
Does posible to create custom report using audit features beside predefine GUI report in SEC
This thread was automatically locked due to age.
HI,
Well you should use the reporting interface to guarantee the queries will keep running ok in future console versions:
Documentation here:
http://www.sophos.com/en-us/medialibrary/PDFs/documentation/sec_52_sriugeng.pdf
vEventsDataControlData is the view that contains the specific data control data
If you look on page 8 of the above document at the graphic, you can just join the vComputerHostData view on the vEventsDataControlData view on the computerid to get the 2.
So something as simple as:
select * from [Sophos Reporting Interface].[vComputerHostData] as c
left join [Sophos Reporting Interface].[vEventsDataControlData] as d on d.computerid = c.computerid
might be a start and alow you to choose a few columns you might want in the report.
Regards,
Jak
HI,
Well you should use the reporting interface to guarantee the queries will keep running ok in future console versions:
Documentation here:
http://www.sophos.com/en-us/medialibrary/PDFs/documentation/sec_52_sriugeng.pdf
vEventsDataControlData is the view that contains the specific data control data
If you look on page 8 of the above document at the graphic, you can just join the vComputerHostData view on the vEventsDataControlData view on the computerid to get the 2.
So something as simple as:
select * from [Sophos Reporting Interface].[vComputerHostData] as c
left join [Sophos Reporting Interface].[vEventsDataControlData] as d on d.computerid = c.computerid
might be a start and alow you to choose a few columns you might want in the report.
Regards,
Jak