├── .deployment ├── .gitignore ├── README.md ├── SECURITY.md ├── SQLDatabaseAudit.omsview ├── azuredeploy.json ├── deploy.cmd ├── media ├── 10_webjobs_logs_2.png ├── 1_storage_access_keys.png ├── 2_oms_settings.png ├── 3_oms_connected_resources.png ├── 4_view_designer_tile.png ├── 5_view_designer.png ├── 6_sql_database_audit_tile.png ├── 7_sql_database_audit_report.png └── 9_webjobs_logs.png └── src └── XEL2OMS ├── App.config ├── HttpException.cs ├── Microsoft.SqlServer.XE.Core.dll ├── Microsoft.SqlServer.XE.Core.pdb ├── Microsoft.SqlServer.XEvent.Linq.dll ├── Microsoft.SqlServer.XEvent.Linq.pdb ├── OmsIngestionApi.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SQLAuditLog.cs ├── XEL2OMS.csproj ├── XEL2OMS.sln └── packages.config /.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command=deploy.cmd -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SQLDatabaseAudit.omsview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/SQLDatabaseAudit.omsview -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /deploy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/deploy.cmd -------------------------------------------------------------------------------- /media/10_webjobs_logs_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/media/10_webjobs_logs_2.png -------------------------------------------------------------------------------- /media/1_storage_access_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/media/1_storage_access_keys.png -------------------------------------------------------------------------------- /media/2_oms_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/media/2_oms_settings.png -------------------------------------------------------------------------------- /media/3_oms_connected_resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/media/3_oms_connected_resources.png -------------------------------------------------------------------------------- /media/4_view_designer_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/media/4_view_designer_tile.png -------------------------------------------------------------------------------- /media/5_view_designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/media/5_view_designer.png -------------------------------------------------------------------------------- /media/6_sql_database_audit_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/media/6_sql_database_audit_tile.png -------------------------------------------------------------------------------- /media/7_sql_database_audit_report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/media/7_sql_database_audit_report.png -------------------------------------------------------------------------------- /media/9_webjobs_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/media/9_webjobs_logs.png -------------------------------------------------------------------------------- /src/XEL2OMS/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/App.config -------------------------------------------------------------------------------- /src/XEL2OMS/HttpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/HttpException.cs -------------------------------------------------------------------------------- /src/XEL2OMS/Microsoft.SqlServer.XE.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/Microsoft.SqlServer.XE.Core.dll -------------------------------------------------------------------------------- /src/XEL2OMS/Microsoft.SqlServer.XE.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/Microsoft.SqlServer.XE.Core.pdb -------------------------------------------------------------------------------- /src/XEL2OMS/Microsoft.SqlServer.XEvent.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/Microsoft.SqlServer.XEvent.Linq.dll -------------------------------------------------------------------------------- /src/XEL2OMS/Microsoft.SqlServer.XEvent.Linq.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/Microsoft.SqlServer.XEvent.Linq.pdb -------------------------------------------------------------------------------- /src/XEL2OMS/OmsIngestionApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/OmsIngestionApi.cs -------------------------------------------------------------------------------- /src/XEL2OMS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/Program.cs -------------------------------------------------------------------------------- /src/XEL2OMS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/XEL2OMS/SQLAuditLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/SQLAuditLog.cs -------------------------------------------------------------------------------- /src/XEL2OMS/XEL2OMS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/XEL2OMS.csproj -------------------------------------------------------------------------------- /src/XEL2OMS/XEL2OMS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/XEL2OMS.sln -------------------------------------------------------------------------------- /src/XEL2OMS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Azure-SQL-DB-auditing-OMS-integration/HEAD/src/XEL2OMS/packages.config --------------------------------------------------------------------------------